/* ACR North — home page
   Compiled from the Claude Design component "ACR North Home.dc.html".
   Values below are carried over verbatim from the design's inline styles. */

:root {
  --accent: #f5b81c;
  --blue: #1657c4;
  --blue-dark: #0e3f96;
  --blue-link: #6ba0f0;
  --navy: #0a1424;
  --navy-deep: #070e1c;
  --card-dark: #0c0e14;
  --ink: #10151f;
  --slate: #51607a;
  --slate-mid: #3a4658;
  --hairline: #e5e9f0;
  --hairline-soft: #dde3ec;
  --surface: #f4f6fa;
  --hero-overlay: 0.62;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Switzer', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}
img { max-width: 100%; }
::selection { background: var(--blue); color: #fff; }

@keyframes acrFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes acrBob  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

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

.page { overflow-x: hidden; position: relative; }
.break { word-break: break-all; }

/* ── Shared ────────────────────────────────────────────────────────────── */

.btn-accent {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  transition: filter .2s ease;
}
.btn-accent:hover { filter: brightness(.93); }

.btn-lg {
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 30px;
}

.btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  backdrop-filter: blur(2px);
  display: inline-flex;
  align-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 13px 22px;
  text-decoration: none;
  transition: background .2s ease;
}
.btn-blue:hover { background: var(--blue-dark); }

.btn-outline {
  margin-top: clamp(32px, 3.6vw, 48px);
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  transition: border-color .2s ease;
}
.btn-outline:hover { border-color: var(--blue); }
.btn-outline-text { padding: 15px 26px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.btn-outline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  border-left: 1.5px solid var(--ink);
  color: var(--ink);
}
.arrow-ne { display: inline-block; transform: rotate(-45deg); }

.tag-blue {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 3px;
}

.h2-dark {
  margin: 26px 0 0;
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
.h2-light {
  margin: 22px 0 0;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 820px;
}

.rule { height: 1px; background: var(--hairline); margin: clamp(30px, 3.4vw, 44px) 0; }
.rule-soft { height: 1px; background: var(--hairline-soft); margin: 20px 0 22px; }
.rule-light { height: 1px; background: rgba(255, 255, 255, .18); margin: 20px 0; }

.link-dark { color: var(--slate-mid); text-decoration: none; font-weight: 600; }
.link-dark:hover { color: var(--blue); }

.link-light {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: color .2s ease;
}
.link-light:hover { color: var(--blue-link); }

/* ── Header ────────────────────────────────────────────────────────────── */

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
#site-header.is-scrolled,
#site-header.is-menu-open {
  background: rgba(10, 20, 36, .97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: rgba(255, 255, 255, .1);
}

.header-inner {
  margin: 0 auto;
  padding: 14px clamp(20px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-left { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo { height: clamp(76px, 11.7vw, 135px); width: auto; display: block; }

.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav-item { position: relative; }
.nav-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .01em;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: border-color .2s ease;
}
.nav-link:hover { border-bottom-color: var(--accent); }
.nav-link.is-active { border-bottom-color: var(--accent); }
.nav-chevron { margin-left: 6px; vertical-align: -1px; }

.nav-drop { position: absolute; top: 100%; left: -16px; padding-top: 8px; z-index: 70; display: none; }
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop { display: block; }
.nav-drop-inner {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  min-width: 225px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.nav-drop-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 20px;
  display: block;
  transition: background .18s ease, color .18s ease;
}
.nav-drop-link:hover { background: rgba(245, 184, 28, .1); color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-cta { flex: 0 0 auto; }

.burger {
  display: none;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 4px;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #fff;
  transition: border-color .2s ease, color .2s ease;
}
.burger:hover { border-color: var(--accent); color: var(--accent); }
.burger .icon-close { display: none; }
.burger[aria-expanded="true"] .icon-open { display: none; }
.burger[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 4px clamp(20px, 3vw, 44px) 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.mobile-nav.is-open { display: flex; }
.mobile-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16.5px;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-link:hover { color: var(--accent); }
.mobile-sub {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 2px 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.mobile-sub:hover { color: var(--accent); }
.mobile-cta {
  margin-top: 18px;
  justify-content: center;
  font-size: 14.5px;
  padding: 15px 24px;
}

@media (max-width: 939px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}

/* Tablets. The Services dropdown opens on :hover / :focus-within, which a touch
   device cannot drive - on an iPad in landscape the viewport is wide enough for
   the desktop nav, so its four sub-pages would be unreachable. Any pointer that
   cannot hover gets the burger menu instead, which lists them. */
@media (hover: none) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 539px) {
  .header-cta-number { display: none; }
  .header-cta { padding: 13px 15px; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: clamp(560px, 58vw, 880px);
  display: flex;
  flex-direction: column;
  background: var(--navy);
}
.hero-media {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-img.is-active { opacity: 1; }

.hero-scrim-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 24, .66), rgba(14, 18, 26, .3) 42%, rgba(16, 18, 22, .06) 68%, transparent);
  opacity: var(--hero-overlay);
}
.hero-scrim-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 16, .22), transparent 20%, transparent 58%, rgba(8, 10, 14, .6));
}

.hero-body {
  position: relative;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: clamp(150px, 15vw, 220px) clamp(20px, 5vw, 52px) clamp(56px, 16vw, 300px);
}
.hero-copy { max-width: 1040px; animation: acrFade .8s ease both; }

.eyebrow-pair { display: inline-flex; align-items: center; gap: 0; margin-bottom: 20px; }
.eyebrow-blue {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 9px 15px;
}
.eyebrow-accent {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 15px;
}

.hero-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.022em;
  color: #fff;
  text-transform: uppercase;
}
.hero-lede {
  margin: 26px 0 0;
  max-width: 540px;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .66);
}
.scroll-label { font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.scroll-line {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .5);
  animation: acrBob 1.9s ease-in-out infinite;
}

.hero-bar { flex: 0 0 auto; background: var(--navy); border-top: 1px solid rgba(255, 255, 255, .08); }
.hero-bar-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px clamp(20px, 5vw, 52px);
}
.hero-bar-note { display: flex; align-items: center; gap: 13px; color: #fff; }
.hero-bar-note span:last-child { font-weight: 600; font-size: 14.5px; letter-spacing: .01em; }
.dot-accent { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.hero-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color .2s ease;
}
.hero-bar-phone:hover { color: var(--accent); }
.hero-bar-phone-label {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* ── Capability strip ──────────────────────────────────────────────────── */

.cap-strip {
  background: #fff;
  border-bottom: 1px solid #e9edf3;
  padding: clamp(30px, 4vw, 46px) clamp(20px, 5vw, 52px);
}
.cap-strip-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.cap { display: flex; flex-direction: column; align-items: center; }
.cap-label {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  letter-spacing: -.01em;
  color: var(--ink);
  text-transform: uppercase;
}
/* The strip wraps to two rows on a tablet; space-between would leave the last
   item flush left on its own. */
@media (max-width: 939px) { .cap-strip-inner { justify-content: center; } }
@media (max-width: 639px) { .cap-strip { display: none; } }

/* ── About ─────────────────────────────────────────────────────────────── */

.about {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 52px);
  background: #fff;
  scroll-margin-top: 80px;
}
.about-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 84px);
  align-items: flex-start;
}
.about-copy { flex: 1.8 1 560px; min-width: 300px; }
.about-lede {
  margin: 28px 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
  color: var(--slate);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(26px, 3vw, 44px);
}
.about-grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 16px;
}
.about-grid-head h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: -.01em;
  color: var(--ink);
}
.chip-blue {
  width: 14px;
  height: 14px;
  background: var(--blue);
  display: block;
  flex: 0 0 auto;
  clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
}
.about-grid p { margin: 18px 0 0; font-size: 15px; line-height: 1.65; color: var(--slate); }

.about-media {
  flex: 1 1 440px;
  min-width: min(340px, 100%);
  max-width: 640px;
  margin-left: auto;
  position: relative;
  min-height: clamp(500px, 46vw, 640px);
  margin-top: clamp(48px, 4.4vw, 62px);
}
.about-img {
  position: absolute;
  right: 8%;
  top: 0;
  width: 92%;
  height: 86%;
  object-fit: cover;
  display: block;
}
.stat-pair {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 78%;
  height: 46%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stat {
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.stat-blue { background: var(--blue); }
.stat-accent { background: var(--accent); }
.stat-mark { width: 22px; height: 22px; border: 2.5px solid #fff; display: block; }
.stat-mark-diamond { transform: rotate(45deg); }
.stat-value {
  font-weight: 700;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}
.stat-label {
  margin-top: 12px;
  font-size: 13.5px;
  color: #fff;
  border-bottom: 1.5px solid #fff;
  display: inline-block;
  padding-bottom: 2px;
}

/* ── Services ──────────────────────────────────────────────────────────── */

.services {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 52px) clamp(80px, 10vw, 140px);
  scroll-margin-top: 70px;
  overflow: hidden;
  background: var(--navy);
}
.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.services-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 28, .72), rgba(10, 18, 34, .55) 28%, rgba(24, 42, 92, .78) 62%, rgba(31, 50, 105, .96) 86%, #1f3269);
}
.services-inner { position: relative; max-width: 1340px; margin: 0 auto; }
.services-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(44px, 5vw, 72px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.svc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  background: var(--card-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  border-radius: 10px;
  overflow: hidden;
}
.svc-media { padding: clamp(14px, 1.6vw, 22px); }
.svc-media img { display: block; width: 100%; height: 100%; min-height: 290px; object-fit: cover; }
.svc-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(26px, 3vw, 44px) clamp(22px, 2.6vw, 40px);
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
}
.svc-icon-mark { width: 18px; height: 18px; border: 2.5px solid #fff; display: block; }
.svc-body h3 {
  margin: 22px 0 0;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  color: #fff;
}
.svc-body p { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(255, 255, 255, .6); }

.tf-diamond    { transform: rotate(45deg); }
.tf-diamond-sm { transform: rotate(45deg) scale(.85); }
.tf-skew       { transform: skewX(-12deg); }

/* ── Capabilities ──────────────────────────────────────────────────────── */

.caps {
  background: #fff;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 52px);
  scroll-margin-top: 70px;
}
.caps-inner { max-width: 1340px; margin: 0 auto; }
.caps-head { margin-bottom: clamp(36px, 4vw, 56px); }
.caps-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-start; }
.caps-col { flex: 1 1 340px; min-width: 300px; display: flex; flex-direction: column; gap: 18px; }

.card { background: var(--surface); overflow: hidden; border-radius: 10px; }
.card-wide { flex: 1 1 380px; min-width: 300px; }
.card-sugar { margin-top: 18px; }
.card-pad { padding: clamp(24px, 3vw, 40px); }
.card h3 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  margin-bottom: 20px;
}
.card-icon-blue { background: var(--blue); }
.card-icon-accent { background: var(--accent); }
.card-icon-mark { width: 15px; height: 15px; border: 2.5px solid #fff; display: block; }
.card-icon-mark-dark { border-color: var(--navy); }

.bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.bullets-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 14px 48px;
}
.bullets li { display: flex; gap: 12px; align-items: flex-start; }
.bullets span:last-child { color: var(--slate-mid); line-height: 1.45; font-size: .99rem; }
.bullet {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
}

/* ── Location ──────────────────────────────────────────────────────────── */

.location {
  background: var(--surface);
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 52px) clamp(72px, 9vw, 120px);
  scroll-margin-top: 70px;
}
.location-inner { max-width: 1340px; margin: 0 auto; }
.location-head { margin-bottom: clamp(30px, 4vw, 48px); }

.map-wrap {
  position: relative;
  overflow: hidden;
  background: #dfe5ee;
  box-shadow: 0 24px 60px rgba(10, 26, 51, .12);
  height: clamp(420px, 58vh, 600px);
  border-radius: 10px;
}
.map-frame { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92); }

.map-badge {
  position: absolute;
  top: clamp(16px, 2.5vw, 26px);
  left: clamp(16px, 2.5vw, 26px);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  padding: 11px 16px;
  border-radius: 6px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -118%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(10, 26, 51, .3);
  padding: 8px 12px;
}
.map-pin-card img { height: 52px; width: auto; display: block; }
.map-pin-tip {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
  filter: drop-shadow(0 4px 6px rgba(10, 26, 51, .25));
}

.map-card {
  position: absolute;
  top: clamp(16px, 2.5vw, 26px);
  right: clamp(16px, 2.5vw, 26px);
  max-width: 330px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(10, 26, 51, .2);
}
.map-card-top { height: 6px; background: var(--accent); }
.map-card-body { padding: 26px 26px 28px; }
.map-card-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.map-card-rows { display: flex; flex-direction: column; gap: 15px; margin-bottom: 22px; }
.map-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.map-card-value { font-size: 15px; line-height: 1.45; color: var(--slate-mid); display: block; }

.map-legend {
  position: absolute;
  bottom: clamp(16px, 2.5vw, 26px);
  right: clamp(16px, 2.5vw, 26px);
  background: #fff;
  box-shadow: 0 14px 34px rgba(10, 26, 51, .18);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.map-legend div { display: flex; align-items: center; gap: 9px; }
.map-legend span:last-child { font-size: 12.5px; font-weight: 600; color: var(--slate-mid); }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; }
.legend-dot-blue { background: var(--blue); }
.legend-dot-accent { background: var(--accent); }

@media (max-width: 900px) {
  .map-card { position: static; max-width: none; margin-top: 18px; }
  .map-wrap { height: auto; }
  .map-frame { height: clamp(340px, 46vh, 460px); }
  .map-pin, .map-legend { display: none; }
}

/* ── Contact ───────────────────────────────────────────────────────────── */

.contact {
  background: var(--navy);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 52px);
  scroll-margin-top: 70px;
}
.contact-inner { max-width: 1340px; margin: 0 auto; }
.contact-head {
  border-top: 1.5px solid rgba(255, 255, 255, .22);
  padding-top: 20px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.contact-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-head h2 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  letter-spacing: -.018em;
  color: #fff;
  max-width: 760px;
  line-height: 1.06;
}
.contact-cols { display: flex; flex-wrap: wrap; gap: clamp(40px, 6vw, 80px); }
.contact-details { flex: 1 1 340px; }
.contact-lede {
  margin: 0 0 34px;
  font-size: 1.1rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, .76);
  max-width: 440px;
}
.contact-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  text-decoration: none;
  transition: padding-left .2s ease;
}
a.contact-row:hover { padding-left: 8px; }
.contact-row-static { flex-direction: column; align-items: flex-start; gap: 4px; }
.contact-row-text { display: flex; flex-direction: column; gap: 4px; }
.contact-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.contact-row-value { font-size: 1.18rem; font-weight: 700; color: #fff; }
.contact-row-arrow { color: var(--accent); font-size: 20px; }

#contact-form-col { flex: 1 1 400px; }
@media (min-width: 1180px) { #contact-form-col { margin-top: clamp(-96px, -7vw, -70px); } }

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: clamp(26px, 3vw, 42px);
}
.form-row { display: flex; flex-wrap: wrap; gap: 16px; }
.field { flex: 1 1 160px; display: flex; flex-direction: column; gap: 7px; }
.field-block { flex: 1 1 100%; }
.field-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--slate);
}
.form input, .form textarea {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #d4dbe6;
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form textarea { resize: vertical; }
.form input:focus, .form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 87, 196, .14);
}
.btn-submit {
  margin-top: 4px;
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  justify-content: center;
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .66);
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 52px) 34px;
}
.footer-inner { max-width: 1340px; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { flex: 1 1 320px; max-width: 430px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; }
.footer-logo { height: 64px; width: auto; display: block; }
.footer-tagline {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
  color: #fff;
  max-width: 380px;
}
.footer-cols { display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 64px); }
.footer-col-title {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.footer-link { color: rgba(255, 255, 255, .62); text-decoration: none; font-size: 14.5px; }
.footer-link:hover { color: var(--accent); }
.footer-address { color: rgba(255, 255, 255, .62); }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-ack {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  max-width: 680px;
  line-height: 1.6;
}
.footer-meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-meta p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .45); }
.footer-credit { color: rgba(255, 255, 255, .62); text-decoration: underline; }
.footer-credit:hover { color: var(--accent); }

@media (max-width: 560px) {
  .footer-meta { align-items: flex-start; }
}
