:root {
  --navy-950: #031426;
  --navy-900: #071d36;
  --navy-800: #0b3157;
  --navy-700: #14527e;
  --steel-400: #7ea5c3;
  --steel-200: #c8d9e6;
  --paper: #f5f8fb;
  --white: #ffffff;
  --ink: #152b40;
  --muted: #65798c;
  --line: #d9e4ec;
  --shadow: 0 24px 60px rgba(3, 20, 38, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(7,29,54,.10);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  width: 92px;
  flex: 0 0 92px;
}
.brand img {
  width: 92px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--navy-900);
}
.main-nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--navy-700);
  border-color: var(--navy-700);
}
.menu-button {
  display: none;
  width: 46px;
  height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 85% 15%, rgba(126,165,195,.24), transparent 28%), linear-gradient(135deg, var(--navy-950), var(--navy-800) 64%, var(--navy-700));
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding-block: 72px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 14px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--navy-700); }
.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(3.3rem, 6.5vw, 6rem); }
.hero-description {
  max-width: 680px;
  margin: 26px 0 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  min-height: 52px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.button-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.08);
}
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 14px 28px rgba(7,29,54,.20);
}
.hero-logo { justify-self: end; width: min(100%, 500px); }
.logo-frame {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 80px rgba(0,0,0,.30);
}
.logo-frame img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.section { padding: 96px 0; }
.section-heading { margin-bottom: 40px; }
.section h2 { color: var(--navy-900); font-size: clamp(2.45rem, 4.5vw, 4rem); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  min-height: 230px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(7,29,54,.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7,29,54,.055);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  font-weight: 900;
}
.service-card h3 {
  max-width: 520px;
  margin: 44px 0 0;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.18;
}
.service-card-wide {
  grid-column: 1 / -1;
  min-height: 178px;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #fff, #eef5f9);
}
.service-card-wide h3 { margin: 0; }

.location { padding-top: 0; }
.location-panel {
  padding: 44px 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(7,29,54,.07);
}
.location-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.location-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.location-copy h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }

.contact {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.contact-layout {
  min-height: 300px;
  padding-block: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact h2 { color: var(--white); font-size: clamp(2.65rem, 5vw, 4.6rem); }
.contact p:last-child { margin: 12px 0 0; color: rgba(255,255,255,.72); }

.site-footer {
  padding: 30px 0;
  color: rgba(255,255,255,.72);
  background: #020f1c;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-inner p { margin: 0; }
.footer-inner strong,
.footer-inner a { color: var(--white); }

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 16px 34px rgba(3,20,38,.34);
  font-weight: 800;
}
.floating-call svg { width: 20px; fill: currentColor; }

@media (max-width: 900px) {
  .js-ready .menu-button { display: block; }
  .js-ready .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .js-ready .main-nav.open { display: flex; }
  .js-ready .main-nav a { padding: 13px 5px; }
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-logo { justify-self: start; }
  .location-panel { grid-template-columns: auto 1fr; }
  .location-panel .button { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 82px; }
  .brand,
  .brand img { width: 78px; }
  .brand { flex-basis: 78px; }
  .brand img { height: 62px; }
  .main-nav { gap: 16px; flex-wrap: wrap; justify-content: flex-end; font-size: .92rem; }
  .js-ready .main-nav { top: 76px; left: 14px; right: 14px; }
  .hero-layout { min-height: auto; padding-block: 58px 66px; }
  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3rem);
    overflow-wrap: break-word;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .logo-frame { padding: 9px; border-radius: 26px; }
  .logo-frame img { border-radius: 19px; }
  .section { padding: 76px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 205px; padding: 27px; }
  .service-card-wide { grid-column: auto; min-height: 205px; flex-direction: column; align-items: flex-start; }
  .service-card-wide h3 { margin-top: 44px; }
  .location-panel { padding: 32px 26px; grid-template-columns: 1fr; }
  .location-panel .button { grid-column: auto; width: 100%; }
  .contact-layout { min-height: 280px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .contact-layout .button { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .floating-call { width: 54px; padding: 0; justify-content: center; }
  .floating-call span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
