:root {
  --black: #05070a;
  --charcoal: #111827;
  --navy: #062a66;
  --blue: #0057c8;
  --bright-blue: #0787ff;
  --red: #d90416;
  --deep-red: #8d0008;
  --gold: #d7a633;
  --light-gold: #ffe08a;
  --white: #ffffff;
  --concrete: #f4f6f8;
  --cool: #e9f3ff;
  --muted: #626c78;
  --shadow: 0 24px 70px rgba(0,0,0,.22);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--concrete);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 60px);
  background: linear-gradient(90deg, #05070a 0%, #061e4f 52%, #05070a 100%);
  color: var(--white);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--white), var(--red));
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--blue), #00184a 56%, var(--red));
  color: var(--white);
  font-weight: 1000;
  letter-spacing: -.04em;
  border: 2px solid rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 2px rgba(215,166,51,.85), 0 10px 22px rgba(0,0,0,.28);
}
.brand strong { display: block; font-size: 1rem; letter-spacing: -.02em; text-transform: uppercase; }
.brand small { display: block; color: #dcecff; font-size: .78rem; font-weight: 800; }
.nav { display: flex; gap: 18px; font-size: .92rem; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; }
.nav a, .header-phone { text-decoration: none; color: #f7fbff; }
.nav a:hover, .header-phone:hover { color: var(--light-gold); }
.header-phone {
  font-weight: 1000;
  white-space: nowrap;
  background: var(--white);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.15);
}
.section-pad { padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 78px); }
.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(4,13,33,.91) 0%, rgba(6,42,102,.88) 44%, rgba(217,4,22,.16) 100%),
    radial-gradient(circle at 84% 11%, rgba(215,166,51,.32), transparent 34%),
    url('texture.svg');
  background-size: cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.28), transparent 42%);
  pointer-events: none;
}
.hero > * { position: relative; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 1000;
  color: var(--gold);
  font-size: .78rem;
  margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.04; margin: 0 0 18px; letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); max-width: 980px; text-transform: uppercase; text-shadow: 0 5px 20px rgba(0,0,0,.42); }
h2 { font-size: clamp(2rem, 4.2vw, 4.2rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.35rem); max-width: 800px; color: #eaf4ff; font-weight: 650; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 24px; border-radius: 999px; text-decoration: none;
  font-weight: 1000; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn-primary { background: linear-gradient(180deg, #ff2232, var(--red)); color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: rgba(255,255,255,.8); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  font-weight: 1000;
  color: var(--white);
}
.hero-card, .panel, .contact-card {
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
}
.hero-card { color: var(--charcoal); border-top: 8px solid var(--red); }
.hero-card h2 { color: var(--navy); text-transform: uppercase; }
.surface-sample { height: 250px; border-radius: 22px; margin-bottom: 24px; background: linear-gradient(135deg, rgba(0,87,200,.95), rgba(217,4,22,.42)), url('texture.svg'); background-size: cover; }
.hero-card ul, .feature-list { padding-left: 20px; margin: 16px 0 0; }
.section-heading { max-width: 920px; margin: 0 auto 34px; text-align: center; }
.section-heading.narrow { max-width: 780px; }
.section-heading h2 { color: var(--navy); text-transform: uppercase; }
.grid { display: grid; gap: 22px; }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.service-card, .mini-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 50px rgba(4,13,33,.10);
  border: 1px solid rgba(6,42,102,.12);
  border-top: 6px solid var(--blue);
}
.service-card h3, .mini-card h3 { color: var(--navy); text-transform: uppercase; }
.service-card.highlight {
  background: linear-gradient(145deg, var(--navy), #020b22 70%);
  color: var(--white);
  border-top-color: var(--red);
}
.service-card.highlight h3 { color: var(--white); }
.service-card.highlight p { color: #d8ebff; }
.icon { display: inline-block; color: var(--red); font-size: 2rem; margin-bottom: 14px; }
.service-card.highlight .icon { color: var(--gold); }
.service-card p, .mini-card p, .panel p { color: var(--muted); margin-bottom: 0; }
.split { display: grid; grid-template-columns: 1fr .85fr; gap: 34px; align-items: start; }
.dark {
  background: linear-gradient(135deg, #03070f 0%, #061f52 68%, #010205 100%);
  color: var(--white);
  border-top: 8px solid var(--red);
  border-bottom: 8px solid var(--blue);
}
.dark h2 { color: var(--white); text-transform: uppercase; }
.dark p { color: #e2efff; }
.dark .eyebrow { color: var(--gold); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.check-grid span {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 1000;
}
.panel { background: #f7fbff; color: var(--charcoal); border-top: 8px solid var(--gold); }
.panel h3 { color: var(--navy); text-transform: uppercase; }
.panel p, .panel li { color: #344055; }
.x100 { background: linear-gradient(180deg, #ffffff, #e8f3ff); }
.cta-strip {
  margin-top: 26px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--navy), var(--blue) 56%, var(--red));
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-strip h3 { color: var(--white); text-transform: uppercase; }
.cta-strip p { color: #eef6ff; margin: 0; }
.cta-strip .btn-primary { background: var(--gold); color: var(--black); }
.steps { counter-reset: step; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 0; margin: 0; }
.steps li { background: var(--white); padding: 28px; border-radius: 22px; box-shadow: 0 16px 50px rgba(0,0,0,.07); border-top: 6px solid var(--red); }
.areas {
  background: linear-gradient(135deg, rgba(3,7,15,.94), rgba(6,42,102,.88)), url('texture.svg');
  color: var(--white);
  border-top: 8px solid var(--gold);
}
.areas h2 { color: var(--white); text-transform: uppercase; }
.areas p { color: #e0efff; }
.contact { background: linear-gradient(180deg, #f7fbff, #ffffff); }
.contact-card { max-width: 940px; margin: auto; text-align: center; border-top: 8px solid var(--red); }
.contact-actions { justify-content: center; }
.small { font-size: .92rem; color: var(--muted); }
.footer {
  background: linear-gradient(90deg, #02050c, #061e4f 58%, #02050c);
  color: #d8e9ff;
  text-align: center;
  padding: 30px 20px;
  border-top: 5px solid var(--red);
}
.footer p { margin: 5px 0; }
.footer a { color: var(--white); }
.photo-feature { padding: 0; overflow: hidden; }
.photo-feature img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}
.photo-feature-copy { padding: 28px; }
.portfolio { background: #ffffff; }
.portfolio .section-heading p:not(.eyebrow) { color: var(--muted); margin: 0 auto; max-width: 780px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(0,0,0,.13);
  border: 1px solid rgba(6,42,102,.16);
  position: relative;
}
.photo-card::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--gold));
}
.photo-card.large { grid-column: span 2; grid-row: span 2; }
.photo-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  display: block;
}
.photo-card.large img { height: 548px; }
.photo-card figcaption {
  padding: 14px 16px 16px;
  font-weight: 1000;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .02em;
}
@media (max-width: 980px) {
  .nav { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .three, .four, .steps { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card.large { grid-column: span 2; }
}
@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .header-phone { background: var(--white); color: var(--black); padding: 10px 14px; border-radius: 999px; }
  .three, .four, .steps, .check-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 3rem; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card.large { grid-column: span 1; grid-row: span 1; }
  .photo-card.large img, .photo-card img { height: 260px; }
}
