/* Global Location Advisory — Static site stylesheet */

:root {
  --navy: #061b33;
  --navy-dark: #031326;
  --navy-soft: #0b2748;
  --silver: #d8d4ca;
  --silver-soft: #f7f7f4;
  --text: #071b33;
  --muted: #5d6470;
  --white: #ffffff;
  --line: #d8d4ca;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--silver-soft);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 27, 51, 0.96);
  border-bottom: 1px solid rgba(216, 212, 202, 0.22);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 172px;
  height: auto;
}

.nav {
  display: flex;
  gap: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(32, 75, 116, 0.7), transparent 34%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 45%, #08213d);
  color: var(--white);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  padding: 92px 0;
}

.hero-logo {
  width: 470px;
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #7b776f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--white);
  color: var(--navy);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.hero-card {
  align-self: end;
  margin-bottom: 24px;
  padding: 38px;
  border: 1px solid rgba(216, 212, 202, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.card-kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.75;
}

.hero-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.65;
}

.arc {
  position: absolute;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.arc-one {
  width: 820px;
  height: 320px;
  right: -70px;
  top: 145px;
  transform: rotate(-8deg);
}

.arc-two {
  width: 760px;
  height: 260px;
  right: 10px;
  top: 255px;
  transform: rotate(11deg);
}

.arc-three {
  width: 620px;
  height: 220px;
  right: 180px;
  top: 375px;
  transform: rotate(-18deg);
}

.node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f1e8d5;
  box-shadow: 0 0 18px rgba(241, 232, 213, 0.9);
}

.node-one { right: 440px; top: 245px; }
.node-two { right: 250px; top: 310px; }
.node-three { right: 560px; top: 430px; }
.node-four { right: 125px; top: 470px; }

.section {
  padding: 96px 0;
}

.section.light {
  background: var(--silver-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

.section h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.info-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(6, 27, 51, 0.06);
}

.service-card {
  padding: 28px;
}

.service-card h3,
.info-block h3,
.approach-grid h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.info-panel {
  padding: 34px;
}

.info-block + .info-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.info-block h3 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section.navy {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.section.navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(37, 82, 128, 0.55), transparent 28%),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.section.navy .container {
  position: relative;
  z-index: 2;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.approach-grid article {
  padding: 30px;
  border: 1px solid rgba(216, 212, 202, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.approach-grid h3 {
  color: var(--white);
}

.approach-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-section {
  background: var(--silver-soft);
}

.contact-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 46px;
}

.contact-card .button.primary {
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(216, 212, 202, 0.15);
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-logo {
    width: 390px;
  }

  .hero-card {
    align-self: auto;
    margin-bottom: 0;
  }

  .service-grid,
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    display: block;
  }

  .contact-card .button {
    margin-top: 24px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-logo {
    width: 148px;
  }

  .hero-inner {
    padding: 64px 0;
  }

  .hero-logo {
    width: 310px;
  }

  h1 {
    font-size: 42px;
  }

  .section {
    padding: 70px 0;
  }

  .service-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .service-card,
  .info-panel,
  .contact-card {
    border-radius: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
