:root {
  --navy-1000: #03172d;
  --navy-950: #06213d;
  --navy-900: #0a2d52;
  --navy-800: #153f69;
  --blue-600: #3e6f99;
  --blue-100: #e8f0f6;
  --blue-50: #f4f8fb;
  --gold-500: #d8a85f;
  --gold-400: #e3bb7c;
  --ink: #122236;
  --muted: #627282;
  --line: #dce4ea;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 20px 50px rgba(3, 23, 45, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -100px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--navy-950);
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3,23,45,.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227,187,124,.75);
  border-radius: 8px;
  padding: 7px;
  color: var(--white);
}
.brand-mark svg { fill: currentColor; }
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .08em;
  font-size: 1.02rem;
  line-height: 1.05;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: #b9cadd;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .19em;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #e7eef4;
  font-size: .91rem;
  font-weight: 650;
}
.primary-nav > a:not(.btn):hover { color: var(--gold-400); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: white;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--navy-900);
  border-radius: 8px;
  background: var(--navy-900);
  color: white;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(3,23,45,.18);
}
.btn-sm {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .85rem;
}
.btn-gold {
  border-color: var(--gold-500);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-1000);
}
.btn-gold:hover { background: var(--gold-400); }
.btn-ghost {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/corporate-building.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(.8) contrast(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,23,45,.98) 0%, rgba(3,23,45,.93) 40%, rgba(3,23,45,.66) 62%, rgba(3,23,45,.25) 100%),
    linear-gradient(180deg, rgba(3,23,45,.18), rgba(3,23,45,.52));
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  gap: 70px;
  align-items: center;
  padding: 78px 0;
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--blue-600);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.eyebrow.light { color: #c9dbea; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.8vw, 5.7rem);
  line-height: .99;
  letter-spacing: -.042em;
  font-weight: 700;
}
.hero h1 span { color: var(--gold-400); }
.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #dbe5ee;
  font-size: 1.07rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}
.hero-badge {
  align-self: end;
  margin-bottom: 42px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold-500);
  background: rgba(3,23,45,.62);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.badge-label {
  display: block;
  margin-bottom: 5px;
  color: #b9ccdc;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .15em;
}
.hero-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}
.hero-badge p {
  margin: 4px 0 0;
  color: #d0dce5;
  font-size: .86rem;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid > div {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}
.trust-grid strong {
  display: block;
  color: var(--navy-950);
  font-size: .92rem;
}
.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 2px;
}

.section { padding: 94px 0; }
.section-heading {
  max-width: 720px;
  margin-bottom: 43px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading.compact { max-width: 620px; }
.section-heading h2,
.split-copy h2,
.about-grid h2,
.quote-copy h2 {
  margin: 0 0 15px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: 1.07;
  letter-spacing: -.03em;
}
.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.services-section { background: var(--blue-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: 0 12px 28px rgba(3,23,45,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(3,23,45,.1);
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}
.service-body { padding: 22px 20px 24px; }
.service-body h3 {
  margin: 0 0 7px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}
.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: white;
}
.split-image { min-height: 650px; }
.split-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}
.split-copy {
  display: flex;
  align-items: center;
  padding: 76px max(40px, calc((100vw - var(--container))/2)) 76px 70px;
}
.split-copy > div { max-width: 610px; }
.lead {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.03rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 25px;
}
.feature-grid > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}
.feature-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  color: white;
  font-weight: 900;
}
.feature-grid h3 {
  margin: 0 0 4px;
  color: var(--navy-950);
  font-size: .93rem;
}
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
}

.about-section {
  background: var(--navy-950);
  color: white;
}
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 95px;
}
.about-grid h2 { color: white; }
.about-grid > div:last-child > p {
  margin-top: 0;
  color: #d0dce6;
  font-size: 1.03rem;
}
.address-block {
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.address-block span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-400);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .16em;
}
.address-block strong {
  font-size: .95rem;
  font-weight: 650;
}

.quote-section { background: white; }
.quote-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 75px;
  align-items: start;
}
.quote-copy { padding-top: 34px; }
.quote-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}
.quote-info {
  display: grid;
  gap: 20px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.quote-info span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-600);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.quote-info a,
.quote-info strong {
  color: var(--navy-950);
  font-size: 1rem;
}
.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--blue-50);
  box-shadow: 0 20px 48px rgba(3,23,45,.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 6px;
  color: #30465a;
  font-size: .79rem;
  font-weight: 750;
}
.field label span { color: #768593; font-weight: 500; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cad6df;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  padding: 12px;
  outline: none;
}
input, select { min-height: 47px; }
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(62,111,153,.12);
}
.privacy-note {
  margin: 2px 0 14px;
  padding: 9px 11px;
  border-left: 3px solid #a7bac9;
  background: white;
  color: #6c7a86;
  font-size: .72rem;
  line-height: 1.5;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 17px;
  color: #5c6c7a;
  font-size: .76rem;
}
.consent input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
}
.hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-section {
  padding-top: 70px;
  background: var(--blue-50);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
  gap: 16px;
}
.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
a.contact-card:hover { border-color: #aebfcd; }
.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-600);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.contact-card strong {
  color: var(--navy-950);
  font-size: .96rem;
}

.site-footer {
  padding: 55px 0 24px;
  background: var(--navy-1000);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr .7fr;
  gap: 65px;
  padding-bottom: 37px;
}
.brand-footer { color: white; }
.footer-grid > div:first-child > p {
  max-width: 290px;
  margin: 14px 0 0;
  color: #aebfd0;
  font-size: .83rem;
}
.footer-contact,
.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
  color: #c3d0dc;
  font-size: .79rem;
}
.footer-contact > span:first-child,
.footer-links > span:first-child {
  margin-bottom: 3px;
  color: var(--gold-400);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.footer-bottom {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #8299ac;
  font-size: .68rem;
}
.footer-bottom p { margin: 0; }
.legal { text-align: right; }

@media (max-width: 1030px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .split-image, .split-image img { min-height: 500px; }
  .split-copy { padding: 70px max(30px, calc((100vw - var(--container))/2)); }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: var(--navy-950);
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a { padding: 10px 8px; }
  .primary-nav .btn { margin-top: 5px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(3,23,45,.97), rgba(3,23,45,.78));
  }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div:last-child { border-bottom: 0; }
  .about-grid,
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .quote-copy { padding-top: 0; }
}

@media (max-width: 660px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 70px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .51rem; }

  .hero { min-height: 590px; }
  .hero-grid { min-height: 590px; padding: 62px 0; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .section { padding: 70px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card img { aspect-ratio: 2.1 / 1; }
  .feature-grid,
  .form-row,
  .contact-grid,
  .footer-grid,
  .footer-bottom { grid-template-columns: 1fr; }

  .split-image, .split-image img { min-height: 370px; }
  .split-copy { padding: 60px 22px; }
  .about-grid { gap: 27px; }
  .form-card { padding: 22px; }
  .legal { text-align: left; }
}
