:root {
  --blue: #062b68;
  --blue-2: #0a4f9f;
  --red: #c90016;
  --red-2: #e21b2d;
  --ink: #101827;
  --muted: #5c6675;
  --line: #d8dee8;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 14px 38px rgba(6, 43, 104, .14);
  --shadow-soft: 0 6px 18px rgba(6, 43, 104, .10);
  --font-body: "Archivo", Arial, Helvetica, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  z-index: 50;
}
.skip-link:focus { left: 10px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 4px 20px rgba(16, 24, 39, .08);
}
.top-strip {
  min-height: 32px;
  padding: 4px 5vw;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}
.top-strip .strip-cta {
  color: #fff;
  background: var(--red);
  padding: 7px 12px;
  margin: -4px 0;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: background .2s;
}
.top-strip .strip-cta:hover { background: var(--red-2); }
.social-links {
  margin-left: auto;
  display: flex;
  gap: 14px;
  font-size: 13px;
}
.social-links a { opacity: .85; transition: opacity .2s; }
.social-links a:hover { opacity: 1; }
.main-nav {
  min-height: 62px;
  padding: 6px 5vw;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand img { height: 52px; width: auto; }
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  padding: 9px 14px;
  cursor: pointer;
}
.nav-toggle::before {
  content: "☰";
  margin-right: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: right .22s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-call {
  color: #fff;
  background: var(--red);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.nav-call:hover { background: var(--red-2); transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-image: url("/assets/hero-team.jpg");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 20, 48, .88) 0%, rgba(4, 20, 48, .72) 38%, rgba(4, 20, 48, .30) 70%, rgba(4, 20, 48, .45) 100%),
    linear-gradient(0deg, rgba(4, 20, 48, .55), rgba(4, 20, 48, 0) 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 800;
}
.hero .eyebrow { color: #ff8f9b; }
.hero h1,
.hero h2,
.section h2,
.booking-section h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: .9;
  color: #fff;
  max-width: 780px;
  text-shadow: 0 4px 24px rgba(4, 20, 48, .5);
}
.hero h2 {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 40px);
  color: #ffd166;
}
.hero-lede {
  font-size: 20px;
  line-height: 1.55;
  max-width: 620px;
  color: #e8eefb;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button,
.request-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.primary,
.request-card button {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(201, 0, 22, .32);
}
.primary:hover,
.request-card button:hover {
  background: var(--red-2);
  transform: translateY(-2px);
}
.secondary {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(3px);
}
.secondary:hover { background: rgba(255, 255, 255, .24); transform: translateY(-2px); }
.trust-row {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}
.trust-row div {
  background: rgba(255, 255, 255, .94);
  border-left: 5px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}
.trust-row dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}
.trust-row dd {
  margin: 4px 0 0;
  color: var(--blue);
  font-size: 23px;
  font-weight: 800;
}

.request-card {
  background: rgba(255, 255, 255, .97);
  padding: 28px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border-top: 6px solid var(--red);
}
.request-card h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 30px;
  text-transform: uppercase;
}
.request-card p {
  color: var(--muted);
  line-height: 1.45;
}
.request-card form {
  display: grid;
  gap: 13px;
}
.request-card label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.request-card input,
.request-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.request-card input:focus,
.request-card textarea:focus {
  outline: none;
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(10, 79, 159, .15);
}
.request-card textarea { resize: vertical; }
.request-card .consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}
.request-card .consent input { width: auto; margin-top: 2px; }
.form-note { margin: 0; font-size: 13px; }

/* ---------- Quick links band ---------- */
.locations-band {
  background: linear-gradient(90deg, var(--red), var(--red-2));
  color: #fff;
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 800;
  text-transform: uppercase;
}
.locations-band p { margin: 0; letter-spacing: .05em; }
.locations-band div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.locations-band a {
  background: #fff;
  color: var(--blue);
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}
.locations-band a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(4, 20, 48, .25);
}

/* ---------- Sections ---------- */
.section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 84px 0;
}
.about-section,
.media-section,
.booking-section {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 48px;
  align-items: center;
}
.section h2,
.booking-section h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}
.section p,
.booking-section p,
.section li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.about-points {
  margin: 6px 0 18px;
  padding-left: 22px;
}
.about-points li { margin-bottom: 6px; }
.text-link {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.text-link:hover { border-color: var(--red); }
.about-proof img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.service-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-grid img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-grid article:hover img { transform: scale(1.045); }
.service-grid h3,
.offer-grid h3 {
  margin: 20px 22px 8px;
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 26px;
  text-transform: uppercase;
}
.service-grid p,
.offer-grid p {
  margin: 0 22px 24px;
  font-size: 15.5px;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(105deg, var(--blue) 0%, var(--blue-2) 100%);
  color: #fff;
  padding: 40px 5vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stats-band div {
  border-left: 5px solid var(--red);
  padding-left: 16px;
}
.stats-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}
.stats-band span { color: #cdd9ec; }

/* ---------- Media / video ---------- */
.media-section {
  width: 100%;
  margin: 0;
  padding: 84px 5vw;
  background: var(--soft);
}
.media-section .button { margin-top: 20px; }
.video-card a {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.video-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .35s ease;
}
.video-card a:hover img { transform: scale(1.04); }
.video-card span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: rgba(201, 0, 22, .94);
  color: #fff;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(4, 20, 48, .4);
  transition: transform .2s;
}
.video-card a:hover span { transform: translate(-50%, -50%) scale(1.06); }

/* ---------- Reviews ---------- */
.reviews-section {
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  background: linear-gradient(150deg, var(--blue) 0%, #041a3e 100%);
  color: #fff;
  text-align: center;
}
.reviews-section .eyebrow { color: #ff8f9b; }
.reviews-section h2 { color: #fff; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto 34px;
  text-align: left;
}
.review-grid blockquote {
  margin: 0;
  background: #fff;
  color: var(--ink);
  padding: 26px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.review-grid .stars {
  margin: 0 0 10px;
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 3px;
}
.review-grid p { color: var(--ink); margin-top: 0; }
.review-grid cite {
  color: var(--muted);
  font-weight: 800;
  font-style: normal;
}
.reviews-meta {
  margin: 12px 0 0;
  color: #dbe7fb;
  font-size: 16px;
  font-weight: 700;
}
.reviews-meta .stars {
  color: #f5a623;
  letter-spacing: 3px;
  margin-right: 6px;
}
.review-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
}
.ghost:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

/* ---------- Service areas ---------- */
.service-areas {
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  background: var(--soft);
}
.service-areas .section-copy {
  max-width: 840px;
  margin: 0 auto 30px;
  text-align: center;
}
.service-areas ul {
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.service-areas li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--blue);
  padding: 13px 14px;
  font-weight: 800;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.service-areas li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* ---------- Booking ---------- */
.booking-section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 84px 0;
}
.booking-section ul { padding-left: 20px; }
.booking-section .button {
  justify-self: end;
  min-width: 220px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #071d42;
  color: #fff;
  padding: 54px 5vw 26px;
}
.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-grid img {
  width: 180px;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.footer-grid h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
}
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: #dbe7fb;
  transition: color .2s;
}
.footer-grid a:hover { color: #fff; }
.footer-grid p { color: #dbe7fb; }
.copyright {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: #cdd9ec;
  font-size: 13px;
}

/* ---------- Mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  box-shadow: 0 -6px 20px rgba(4, 20, 48, .25);
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
}
.mobile-cta-bar .cta-call { background: var(--red); }
.mobile-cta-bar .cta-book { background: var(--blue); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .top-strip,
  .main-nav { gap: 12px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(4, 20, 48, .18);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 5vw;
    border-bottom: 1px solid var(--soft);
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .main-nav { position: relative; }
  .nav-call { margin-left: 0; }
  .hero-content,
  .about-section,
  .media-section,
  .booking-section {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 0; }
  .request-card { max-width: 560px; }
  .service-grid,
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-areas ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-section .button { justify-self: start; }
}

@media (max-width: 640px) {
  .strip-extra { display: none; }
  .top-strip {
    justify-content: space-between;
    gap: 10px;
  }
  .brand img { height: 44px; }
  .nav-call { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 52px; }
  .hero { min-height: auto; }
  .hero-content { padding: 44px 0 56px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 20, 48, .82), rgba(4, 20, 48, .55) 58%, rgba(4, 20, 48, .8));
  }
  .hero h1 { font-size: 54px; }
  .hero h2 { font-size: 26px; }
  .hero-lede { font-size: 17px; }
  .trust-row,
  .service-grid,
  .review-grid,
  .stats-band,
  .footer-grid,
  .service-areas ul {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section,
  .media-section,
  .reviews-section,
  .service-areas,
  .booking-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
