:root {
  --blue: #1665af;
  --blue-dark: #0b3157;
  --red: #d81e15;
  --ink: #12202c;
  --muted: #5b6874;
  --paper: #f4f6f8;
  --white: #fff;
  --max: 1180px;
  --shadow: 0 20px 60px rgba(11, 49, 87, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: #fff;
}
a {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  max-width: 950px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}
h3 {
  font-size: 1.3rem;
}
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  position: relative;
  z-index: 20;
  background: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  background: var(--blue);
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  transform: skew(-7deg);
  border-bottom: 5px solid var(--red);
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}
.brand small {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  margin-top: 4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
}
nav a:not(.button):hover,
nav a.active:not(.button) {
  color: var(--blue);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  padding: 15px 24px;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(216, 30, 21, 0.2);
}
.button:hover {
  filter: brightness(0.92);
}
.button.small {
  padding: 10px 18px;
}
.button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}
.button.white {
  background: white;
  color: var(--blue-dark);
}
.hero {
  min-height: 740px;
  background: var(--blue-dark);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.58;
}
.media-placeholder,
.photo-placeholder {
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #7d8993, #263e51);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  letter-spacing: 0.1em;
  text-align: center;
}
.media-placeholder:after {
  content: "▶";
  order: -1;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.media-placeholder small {
  letter-spacing: 0;
  opacity: 0.8;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 33, 55, 0.88), rgba(8, 33, 55, 0.25)),
    linear-gradient(0deg, rgba(8, 33, 55, 0.65), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}
.hero-content h1 {
  margin-bottom: 22px;
}
.hero-content > p:not(.eyebrow) {
  font-size: 1.25rem;
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--blue);
}
.eyebrow.light {
  color: #9fcdf4;
}
.section {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
}
.section-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 45px;
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head > p {
  color: var(--muted);
  font-size: 1.08rem;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9e0e6;
  border: 1px solid #d9e0e6;
}
.service {
  background: #fff;
  padding: 38px;
  text-decoration: none;
  min-height: 250px;
  transition: 0.2s;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  z-index: 1;
}
.service b,
.detail-list article > b {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.service p {
  color: var(--muted);
}
.service span,
.text-link {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}
.service.featured {
  grid-column: span 2;
  background: var(--blue);
  color: white;
}
.service.featured p,
.service.featured span {
  color: white;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.blue,
.blue {
  background: var(--blue-dark);
  color: white;
}
.split .photo-placeholder {
  min-height: 520px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.values article {
  border-top: 3px solid var(--blue);
  padding-top: 24px;
}
.values strong {
  color: var(--red);
}
.cta {
  background: var(--blue);
  color: white;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.cta h2 {
  margin-bottom: 10px;
}
.cta p {
  margin-bottom: 0;
}
.page-hero {
  background: var(--paper);
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid #dfe5ea;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}
.page-hero > p:last-child {
  font-size: 1.2rem;
  max-width: 760px;
  color: var(--muted);
}
.page-hero.compact {
  padding-bottom: 75px;
}
.detail-list {
  padding-top: 55px;
}
.detail-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  padding: 55px 0;
  border-bottom: 1px solid #dfe5ea;
  scroll-margin-top: 30px;
}
.detail-list article div {
  max-width: 850px;
}
.detail-list h2 {
  font-size: 2.3rem;
}
.detail-list p,
.detail-list li {
  color: var(--muted);
}
.notice {
  margin: 0 auto 100px;
  width: min(var(--max), calc(100% - 48px));
  background: #fff5d9;
  border-left: 4px solid #e1ad16;
  padding: 24px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  margin-top: 50px;
}
.timeline strong {
  font-size: 2rem;
  color: #9fcdf4;
}
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.gallery .photo-placeholder {
  min-height: 330px;
}
.lead {
  font-size: 1.2rem;
  margin-top: 40px;
}
.narrow {
  max-width: 800px;
}
.cards {
  display: grid;
  gap: 20px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.cards article {
  background: var(--paper);
  padding: 38px;
}
.placeholder-box {
  border: 2px dashed #9eabb6;
  background: #f8fafb;
  padding: 30px;
  margin-top: 45px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}
.hint,
.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-weight: 700;
  margin-bottom: 18px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #bcc7d0;
  background: white;
  padding: 14px;
  font: inherit;
  border-radius: 2px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(22, 101, 175, 0.2);
  border-color: var(--blue);
}
.check {
  display: flex;
  gap: 10px;
  font-weight: 400;
}
.check input {
  width: auto;
  margin-top: 6px;
}
.honeypot {
  position: absolute;
  left: -10000px;
}
.legal {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0;
}
.legal h1 {
  font-size: 3.5rem;
}
blockquote {
  margin: 35px 0 0;
  padding: 20px 25px;
  border-left: 4px solid var(--red);
  font-size: 1.25rem;
  background: var(--paper);
}
blockquote small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 10px;
}
footer {
  background: #081f33;
  color: #d9e5ee;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.7fr;
  gap: 50px;
}
.inverse .brand-mark {
  background: white;
  color: var(--blue);
}
footer a {
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 45px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: #aebdca;
}
body > footer > .footer-bottom:first-child {
  margin-top: 0;
}
.photo-placeholder span {
  font-size: 0.8rem;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }
  .nav-toggle {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    padding: 25px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  nav.open {
    display: flex;
  }
  .hero {
    min-height: 680px;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 45px;
  }
  .cards.three,
  .timeline {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery > div:first-child {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .hero {
    min-height: 640px;
  }
  .hero-content {
    padding: 70px 0;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service.featured {
    grid-column: auto;
  }
  .values,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .detail-list article {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery > div:first-child {
    grid-column: auto;
  }
  .brand strong {
    font-size: 1.05rem;
  }
  .brand small {
    font-size: 0.55rem;
  }
}
