:root {
  --navy: #1a2744;
  --red: #c8102e;
  --red-hot: #e01838;
  --off: #f6f4ef;
  --ink: #121820;
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Nunito Sans", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); background: var(--off); color: var(--ink); line-height: 1.55; }
a { color: inherit; text-decoration: none; }
.skip { position: absolute; left: -9999px; }
.wrap { width: min(1100px, calc(100% - 2.25rem)); margin-inline: auto; }
.hdr {
  background: var(--navy);
  color: #fff;
  position: sticky; top: 0; z-index: 30;
  border-bottom: 4px solid var(--red);
}
.bar {
  display: flex; align-items: center; gap: 1.25rem;
  padding: .85rem 0;
}
.brand {
  font-family: var(--display);
  font-size: .95rem;
  line-height: 1.05;
  letter-spacing: .02em;
  margin-right: auto;
}
.brand em { font-style: normal; color: var(--red-hot); }
nav { display: none; gap: 1.1rem; font-weight: 700; font-size: .9rem; }
.call-btn {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  padding: .55rem .9rem;
  border-radius: 2px;
}
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}
.slash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 42%, var(--red) 42%, var(--red) 48%, transparent 48%),
    linear-gradient(115deg, transparent 62%, rgba(255,255,255,.06) 62%, rgba(255,255,255,.06) 68%, transparent 68%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.flag {
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .72rem;
  color: #9db0d0;
  margin: 0 0 1rem;
}
h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 1.15rem;
  letter-spacing: -.01em;
}
h1 span { color: var(--red-hot); }
.lede { max-width: 40ch; color: #c5d0e4; margin: 0 0 1.75rem; font-size: 1.05rem; }
.btn {
  display: inline-flex;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  padding: .95rem 1.35rem;
  border-radius: 2px;
  font-size: 1rem;
}
.btn:hover { background: var(--red-hot); }
.btn.light { background: #fff; color: var(--navy); }
.services { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.services h2, .area h2, .cta h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0 0 1.35rem;
}
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.item { padding: 1.5rem 1.35rem; border-radius: 4px; min-height: 160px; }
.item h3 { font-family: var(--display); font-size: 1.35rem; margin: 0 0 .55rem; }
.item p { margin: 0; font-size: .95rem; }
.item.red { background: var(--red); color: #fff; }
.item.navy { background: var(--navy); color: #fff; }
.item.white { background: #fff; border: 3px solid var(--navy); }
.item.stripe {
  background: repeating-linear-gradient(-45deg, #fff, #fff 10px, #f0ece4 10px, #f0ece4 20px);
  border: 3px solid var(--red);
}
.banner {
  background: var(--red);
  color: #fff;
  padding: 1.1rem 0;
}
.banner-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem;
  font-weight: 800;
}
.banner a { text-decoration: underline; text-underline-offset: 3px; }
.area { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.area p { color: #445066; max-width: 48ch; font-size: 1.05rem; line-height: 1.7; }
.cta {
  background: var(--navy);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  border-top: 4px solid var(--red);
}
footer {
  background: #10182a;
  color: #8a97b0;
  padding: 1.2rem 0;
  font-size: .9rem;
}
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
footer a { color: #fff; font-weight: 700; }
@media (min-width: 780px) { nav { display: flex; } }
@media (max-width: 700px) { .menu { grid-template-columns: 1fr; } }
