:root {
  --ink: #102b3a;
  --navy: #123348;
  --navy-deep: #0b2838;
  --brand: #075b95;
  --brand-bright: #0b6aa9;
  --steel: #6c8da3;
  --ice: #f4f8fa;
  --ice-2: #eaf1f5;
  --line: #d7e2e8;
  --white: #ffffff;
  --muted: #5b7384;
  --muted-dark: #a9bdc9;
  --shadow: 0 24px 60px rgba(11, 40, 56, .12);
  --header-h: 80px;
  --shell: min(1280px, calc(100vw - 64px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: rgba(7, 91, 149, .2); }

.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 1000;
  transform: none;
  padding: 10px 14px;
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { top: 12px; }

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 130;
  height: 2px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #bacbd6, var(--brand));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(16,43,58,.06);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.98);
  border-color: rgba(16,43,58,.11);
  box-shadow: 0 10px 30px rgba(11,40,56,.06);
}
.header-shell {
  width: var(--shell);
  height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  width: 112px;
  flex: 0 0 112px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img { width: 100%; height: auto; display: block; }
.brand:hover img, .brand:focus-visible img { transform: translateY(-1px); }
.brand img { transition: transform .2s ease; }
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 21px;
}
.desktop-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: #4c6575;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .01em;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.availability-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .025em;
  white-space: nowrap;
}
.availability-chip > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(7,91,149,.09);
}

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .005em;
  text-decoration: none;
  transition: transform .22s var(--ease), background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--brand-bright);
  border-color: var(--brand-bright);
  box-shadow: 0 12px 28px rgba(7,91,149,.18);
}
.button-small { min-height: 42px; padding-inline: 15px; font-size: 12px; }
.button-full { width: 100%; }
.button-large { min-height: 58px; padding-inline: 26px; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(11,106,169,.38);
  outline-offset: 3px;
}

.menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button > span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .22s ease, top .22s ease;
}
.menu-button > span:first-child { top: 17px; }
.menu-button > span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] > span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] > span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  grid-template-rows: minmax(670px, auto) auto;
  background: #fff;
  overflow: clip;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 116px 56px 72px max(32px, calc((100vw - 1280px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image:
    linear-gradient(rgba(16,43,58,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,43,58,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-rule {
  position: absolute;
  top: 26px;
  left: max(32px, calc((100vw - 1280px) / 2));
  width: calc(100% - max(64px, calc((100vw - 1280px) / 2)));
  height: 5px;
  background: linear-gradient(90deg, #c9d4dc, #87a7bc 42%, var(--brand));
}
.eyebrow,
.section-index {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 21px 0 22px;
  max-width: 650px;
  font-size: clamp(50px, 4.3vw, 64px);
  line-height: .98;
  letter-spacing: -.048em;
  font-weight: 780;
}
.hero h1 span { display: block; }
.hero-lead {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.48;
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0 9px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { color: var(--brand); border-color: var(--brand); }
.hero-address {
  margin-top: 46px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: #5e7787;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .015em;
}
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  background: var(--ice-2);
}
.hero-visual figure {
  position: absolute;
  inset: 26px 0 0;
  margin: 0;
  overflow: hidden;
  background: #dce7ed;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transition: transform .8s var(--ease);
}
.hero-visual:hover img { transform: scale(1.015); }
.hero-visual figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.94);
  color: #435d6d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-visual figcaption span { color: var(--brand); }
.hero-image-tag {
  position: absolute;
  top: 58px;
  right: 0;
  padding: 13px 17px 12px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.015em;
}
.hero-image-tag small {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  opacity: .83;
  text-transform: uppercase;
}
.hero-kpis {
  grid-column: 1 / -1;
  position: relative;
  z-index: 4;
  width: var(--shell);
  margin: -38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow);
}
.hero-kpi {
  min-height: 118px;
  padding: 23px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ice-2);
  border-right: 1px solid rgba(16,43,58,.07);
}
.hero-kpi:last-child { border-right: 0; }
.hero-kpi strong {
  color: var(--brand);
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-kpi span {
  margin-top: 9px;
  color: #536d7c;
  font-size: 12px;
  font-weight: 700;
}
.hero-kpi-primary { background: var(--brand); }
.hero-kpi-primary strong,
.hero-kpi-primary span { color: #fff; }

/* Shared sections */
.section { position: relative; padding: 124px 0; }
.section-shell { width: var(--shell); margin: 0 auto; }
main section[id] { scroll-margin-top: calc(var(--header-h) + 24px); }
.section-head,
.partner-head {
  display: grid;
  grid-template-columns: minmax(160px, .32fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin-bottom: 50px;
}
.section-head h2,
.partner-head h2 {
  margin: 0;
  max-width: 930px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.043em;
  font-weight: 760;
  text-wrap: balance;
}
.section-lead {
  max-width: 800px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}
.source-note {
  margin: 17px 0 0;
  color: #617987;
  font-size: 12px;
  font-style: italic;
}

/* Overview */
.overview { padding-top: 150px; }
.overview-copy {
  display: grid;
  grid-template-columns: minmax(160px, .32fr) minmax(0,1fr);
  gap: 54px;
  margin-bottom: 36px;
}
.overview-copy p {
  grid-column: 2;
  max-width: 900px;
  margin: 0;
  font-size: 17px;
  line-height: 1.63;
}
.hall-split {
  min-height: 236px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hall-card {
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.hall-card-blue { background: linear-gradient(135deg, #075b95, #0b6aa9); }
.hall-card-dark { background: var(--navy); }
.hall-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
  opacity: .9;
}
.hall-card strong {
  margin-top: auto;
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
}
.hall-card p { margin: 12px 0 0; font-size: 12px; opacity: .82; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ice);
  border-bottom: 3px solid var(--brand);
}
.stat-grid article {
  min-height: 122px;
  padding: 24px 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.stat-grid article:nth-child(3n) { border-right: 0; }
.stat-grid strong {
  color: var(--brand);
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.stat-grid span { margin-top: 6px; color: #586f7f; font-size: 12px; font-weight: 700; }
.usage-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(160px, .32fr) minmax(0,1fr);
  gap: 54px;
  align-items: center;
}
.usage-label { color: var(--brand); font-size: 14px; font-weight: 850; }
.usage-tags { display: grid; grid-template-columns: repeat(4,1fr); background: #f6f9fa; }
.usage-tags span {
  min-height: 54px;
  padding: 13px 10px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid #fff;
  color: #274253;
  font-size: 12px;
  font-weight: 780;
}
.usage-tags span:last-child { border-right: 0; }

/* Technical */
.technical {
  overflow: clip;
  background: var(--navy-deep);
  color: #fff;
}
.technical-grid-bg,
.partner-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
}
.technical-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.55fr);
  gap: 72px;
  align-items: start;
}
.section-index-light { color: #7fc0e9; }
.technical-intro { position: sticky; top: calc(var(--header-h) + 36px); }
.technical-intro h2 {
  margin: 16px 0 20px;
  max-width: 470px;
  font-size: clamp(36px, 3.3vw, 47px);
  line-height: 1.03;
  letter-spacing: -.04em;
}
.technical-intro > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.6;
}
.technical-highlight {
  margin-top: 48px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 16px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,.18);
}
.technical-highlight span {
  color: #9db5c3;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.technical-highlight strong {
  grid-column: 2;
  grid-row: 1 / 3;
  color: #8bcaf3;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.04em;
}
.technical-highlight small { color: #829baa; font-size: 10px; }
.spec-panel { border-top: 2px solid #79b9e2; }
.spec-row {
  display: grid;
  grid-template-columns: minmax(165px, .54fr) minmax(0,1fr);
  gap: 28px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.spec-row > span {
  color: #95adbb;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.spec-row > strong {
  min-width: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.spec-row-negative > strong { color: #d5e1e8; }
.transparency-note {
  grid-column: 2;
  margin-top: 6px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.035);
}
.note-mark {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  border: 1px solid #6aa9d2;
  color: #a7d5f1;
  font-weight: 850;
}
.transparency-note p { margin: 1px 0 0; color: #afc1cb; font-size: 12px; line-height: 1.55; }
.transparency-note strong { color: #fff; }

/* Location */
.location { background: linear-gradient(180deg, #fff, #f8fafb); }
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr);
  gap: 48px;
  align-items: stretch;
}
.map-card { margin: 0; min-width: 0; }
.map-frame {
  padding: 16px;
  background: var(--ice);
  border: 1px solid var(--line);
}
.map-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .65s var(--ease);
}
.map-card:hover img { transform: scale(1.008); }
.map-card figcaption { padding: 9px 0 0; color: #627988; font-size: 11px; }
.location-copy { display: flex; flex-direction: column; min-width: 0; }
.distance-stack { border-top: 3px solid var(--brand); }
.distance-stack article {
  padding: 22px 4px 20px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 3px 14px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.distance-stack strong {
  grid-row: 1 / 3;
  color: var(--brand);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.03em;
}
.distance-stack span { font-size: 12px; font-weight: 850; }
.distance-stack small { color: #6d8392; font-size: 10px; text-align: right; }
.location-copy > p { margin: 31px 0 0; color: #526b7b; font-size: 15px; line-height: 1.68; }
.location-route {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
}
.location-route i { height: 1px; flex: 1; background: #9db4c2; }

/* Gallery */
.gallery { padding-bottom: 132px; }
.photo-story {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  align-items: stretch;
}
.photo { margin: 0; min-width: 0; }
.photo-wrap {
  overflow: hidden;
  background: var(--ice-2);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.photo:hover img { transform: scale(1.018); }
.photo-primary { grid-column: 1 / 10; }
.photo-primary .photo-wrap { aspect-ratio: 1.70 / 1; }
.photo-fact {
  grid-column: 10 / 13;
  margin: 0;
  min-height: 100%;
  padding: 29px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ice);
  color: var(--brand);
}
.photo-fact > span {
  margin-bottom: auto;
  color: #657d8c;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.photo-fact strong {
  display: block;
  font-size: clamp(45px, 4.1vw, 60px);
  line-height: .88;
  letter-spacing: -.05em;
}
.photo-fact em {
  margin: 6px 0 7px;
  color: #7490a1;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.photo-secondary { grid-column: 1 / 8; }
.photo-secondary .photo-wrap { aspect-ratio: 1.50 / 1; }
.photo-exterior { grid-column: 8 / 13; align-self: end; }
.photo-exterior .photo-wrap { aspect-ratio: 1.50 / 1; }
.photo figcaption {
  padding: 11px 2px 0;
  display: flex;
  gap: 16px;
  color: #5d7585;
  font-size: 11px;
  line-height: 1.5;
}
.photo figcaption span { color: var(--brand); font-weight: 850; }

/* Partner */
.partner {
  overflow: clip;
  background: var(--navy-deep);
  color: #fff;
}
.partner .section-shell { position: relative; }
.section-lead-dark { color: var(--muted-dark); }
.competency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.15);
  border-left: 1px solid rgba(255,255,255,.15);
}
.competency-grid article {
  min-height: 230px;
  padding: 28px 30px 31px;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.competency-no { color: #72afd7; font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.competency-grid h3 { margin: 38px 0 10px; font-size: 23px; line-height: 1.15; }
.competency-grid p { max-width: 520px; margin: 0; color: #adbfca; font-size: 14px; line-height: 1.6; }
.partner-callout {
  margin-top: 44px;
  padding: 31px 34px 31px 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  color: var(--ink);
  background: linear-gradient(90deg, var(--brand) 0 5px, #f4f8fa 5px 100%);
}
.callout-kicker { color: var(--brand); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.partner-callout h3 { margin: 5px 0 0; font-size: 27px; line-height: 1.12; letter-spacing: -.03em; }
.partner-callout p { margin: 0; color: #526a79; font-size: 14px; line-height: 1.6; }

/* Contact */
.contact { padding-bottom: 94px; }
.contact-head { margin-bottom: 40px; }
.condition-row { margin-bottom: 38px; display: grid; grid-template-columns: repeat(3,1fr); }
.condition-row article {
  min-height: 106px;
  padding: 21px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ice-2);
  border-right: 1px solid #fff;
}
.condition-row strong { color: var(--brand); font-size: 29px; line-height: 1; letter-spacing: -.03em; }
.condition-row span { margin-top: 9px; color: #5d7484; font-size: 11px; font-weight: 650; }
.condition-primary { background: var(--brand) !important; }
.condition-primary strong,
.condition-primary span { color: #fff; }
.contact-grid { min-height: 402px; display: grid; grid-template-columns: .92fr 1.08fr; }
.contact-context {
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-content: center;
  background: #f6f9fa;
}
.mini-label { color: var(--brand); font-size: 11px; font-weight: 850; letter-spacing: .065em; text-transform: uppercase; }
.contact-context address { margin-top: 16px; font-size: 19px; font-style: normal; font-weight: 760; line-height: 1.38; }
.contact-context ul { margin: 16px 0 0; padding: 0; display: grid; gap: 8px; list-style: none; }
.contact-context li { position: relative; padding-left: 14px; font-size: 14px; }
.contact-context li::before { content: ""; position: absolute; left: 0; top: .68em; width: 4px; height: 4px; background: var(--brand); }
.contact-card { padding: 38px; background: var(--navy); color: #fff; }
.contact-card-top { display: flex; justify-content: space-between; color: #82b0cd; font-size: 10px; font-weight: 850; letter-spacing: .065em; text-transform: uppercase; }
.contact-card h3 { margin: 38px 0 2px; font-size: 39px; line-height: 1.1; letter-spacing: -.04em; }
.contact-card > p { margin: 0; color: #a4b8c4; font-size: 14px; }
.contact-links { margin-top: 25px; border-top: 1px solid rgba(255,255,255,.13); }
.contact-links a {
  min-width: 0;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 82px minmax(0,1fr) 16px;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.13);
  text-decoration: none;
}
.contact-links span { color: #8ea7b6; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.contact-links strong { min-width: 0; font-size: 13px; overflow-wrap: anywhere; }
.contact-links i { color: #91c9ec; font-style: normal; transition: transform .2s ease; }
.contact-links a:hover i { transform: translate(2px,-2px); }
.final-cta {
  margin-top: 58px;
  padding-top: 38px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 48px;
  align-items: end;
  border-top: 1px solid var(--line);
}
.final-cta h3 {
  max-width: 860px;
  margin: 10px 0 13px;
  color: var(--brand);
  font-size: clamp(29px, 2.8vw, 40px);
  line-height: 1.13;
  letter-spacing: -.034em;
}
.final-cta p { max-width: 850px; margin: 0; color: #526b7b; font-size: 15px; line-height: 1.65; }
.contact-note { margin-top: 25px; }

/* Footer */
.site-footer { padding: 34px 0 42px; background: #fff; }
.footer-line { width: var(--shell); height: 5px; margin: 0 auto 30px; background: linear-gradient(90deg, #c7d3dc, #89a8bc 38%, var(--brand)); }
.footer-shell { width: var(--shell); margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: center; }
.footer-main { min-width: 0; display: flex; align-items: center; gap: 24px; }
.footer-brand { width: 112px; flex: 0 0 112px; display: inline-flex; align-items: center; }
.footer-brand img { width: 100%; height: auto; display: block; transition: transform .2s ease; }
.footer-brand:hover img, .footer-brand:focus-visible img { transform: translateY(-1px); }
.footer-copy { min-width: 0; }
.footer-shell p { margin: 0; color: #617988; font-size: 11px; line-height: 1.5; }
.footer-shell .footer-kicker { margin-bottom: 3px; color: var(--ink); font-size: 11px; font-weight: 850; letter-spacing: .035em; text-transform: uppercase; }
.footer-nav { display: flex; align-items: center; gap: 22px; }
.footer-nav a, .to-top { color: #526b7b; font-size: 11px; font-weight: 800; text-decoration: none; transition: color .2s ease; }
.footer-nav a:hover, .footer-nav a:focus-visible, .to-top:hover, .to-top:focus-visible { color: var(--brand); }
.to-top { color: var(--brand); white-space: nowrap; }

/* Content is never hidden by JavaScript. Motion is limited to hover and navigation states. */
.reveal { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --shell: min(1120px, calc(100vw - 44px)); }
  .desktop-nav { gap: 15px; }
  .desktop-nav a { font-size: 12px; }
  .availability-chip { display: none; }
  .hero { grid-template-columns: 49% 51%; }
  .hero-copy { padding-left: 22px; padding-right: 36px; }
  .hero-rule { left: 22px; width: calc(100% - 44px); }
  .hero h1 { font-size: clamp(48px, 5.2vw, 62px); }
  .section-head,
  .partner-head,
  .overview-copy,
  .usage-row { grid-template-columns: 170px 1fr; gap: 38px; }
  .technical-shell { gap: 48px; }
}

@media (max-width: 1080px) {
  :root { --header-h: 72px; --shell: min(920px, calc(100vw - 36px)); }
  .desktop-nav,
  .header-actions .button-small { display: none; }
  .menu-button { display: block; }
  .brand { width: 102px; flex-basis: 102px; }
  .header-actions { margin-left: auto; }
  .availability-chip { display: inline-flex; }
  .mobile-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: block;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(11,40,56,.12);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu-inner { width: var(--shell); margin: 0 auto; padding: 16px 0 20px; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a {
    padding: 13px 2px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #edf2f4;
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
  }
  .mobile-menu nav a span { color: var(--brand); width: 22px; font-size: 10px; font-weight: 850; }
  .mobile-menu .button { margin-top: 16px; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(500px, 56vw) auto;
  }
  .hero-copy {
    padding: 94px 18px 54px;
    background-size: 44px 44px;
  }
  .hero-rule { top: 20px; left: 18px; width: calc(100% - 36px); }
  .hero h1 { max-width: 820px; font-size: clamp(52px, 7.2vw, 70px); }
  .hero-lead { font-size: 19px; }
  .hero-address { margin-top: 36px; }
  .hero-visual figure { inset: 0; }
  .hero-image-tag { top: 24px; }
  .hero-kpis { width: calc(100% - 36px); margin-top: -30px; grid-template-columns: 1fr 1fr; }

  .section { padding: 98px 0; }
  .overview { padding-top: 120px; }
  .section-head,
  .partner-head { grid-template-columns: 1fr; gap: 17px; }
  .overview-copy { grid-template-columns: 1fr; }
  .overview-copy p { grid-column: 1; }
  .technical-shell { grid-template-columns: 1fr; }
  .technical-intro { position: static; }
  .technical-intro h2 { max-width: 760px; }
  .technical-intro > p { max-width: 680px; }
  .technical-highlight { max-width: 540px; }
  .transparency-note { grid-column: 1; }
  .location-grid { grid-template-columns: 1fr; }
  .location-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
  .location-copy > p { margin: 0; }
  .location-route { grid-column: 1 / -1; }
  .photo-story { gap: 24px; }
  .partner-callout { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-context { min-height: 270px; }
  .final-cta { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 28px); }
  .header-shell { width: calc(100vw - 28px); }
  .availability-chip { font-size: 10px; }

  .hero { grid-template-rows: auto 390px auto; }
  .hero-copy { padding: 82px 14px 46px; }
  .hero-rule { left: 14px; width: calc(100% - 28px); height: 4px; }
  .eyebrow,
  .section-index { font-size: 11px; letter-spacing: .065em; }
  .hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 11.1vw, 56px);
    line-height: .98;
  }
  .hero-lead { font-size: 17px; }
  .hero-ctas { margin-top: 29px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-address { margin-top: 30px; padding-top: 15px; }
  .hero-visual figcaption { padding: 8px 10px; gap: 10px; font-size: 9px; }
  .hero-image-tag { top: 18px; padding: 11px 13px; font-size: 14px; }
  .hero-kpis { width: calc(100% - 28px); grid-template-columns: 1fr 1fr; margin-top: -22px; }
  .hero-kpi { min-height: 99px; padding: 17px; }
  .hero-kpi strong { font-size: 23px; }
  .hero-kpi span { font-size: 10px; }

  .section { padding: 80px 0; }
  .overview { padding-top: 104px; }
  .section-head { margin-bottom: 32px; }
  .section-head h2,
  .partner-head h2 { font-size: clamp(35px, 9.8vw, 48px); }
  .section-lead { margin-top: 16px; font-size: 16px; line-height: 1.55; }
  .overview-copy { margin-bottom: 30px; }
  .overview-copy p { font-size: 16px; line-height: 1.62; }
  .hall-split { grid-template-columns: 1fr; }
  .hall-card { min-height: 175px; padding: 24px; }
  .hall-card strong { font-size: 46px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid article { min-height: 108px; padding: 18px; }
  .stat-grid article:nth-child(3n) { border-right: 1px solid #fff; }
  .stat-grid article:nth-child(2n) { border-right: 0; }
  .stat-grid strong { font-size: 22px; }
  .usage-row { grid-template-columns: 1fr; gap: 13px; }
  .usage-tags { grid-template-columns: 1fr 1fr; }
  .usage-tags span { min-height: 50px; border-bottom: 1px solid #fff; }

  .technical-shell { gap: 36px; }
  .technical-intro h2 { font-size: clamp(30px, 8.1vw, 38px); line-height: 1.05; }
  .technical-intro > p { font-size: 14px; }
  .technical-highlight { margin-top: 34px; }
  .technical-highlight strong { font-size: 42px; }
  .spec-row { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
  .spec-row > strong { font-size: 14px; }
  .transparency-note { padding: 17px; }

  .map-frame { padding: 9px; }
  .location-copy { grid-template-columns: 1fr; gap: 26px; }
  .location-route { grid-column: 1; }
  .distance-stack strong { font-size: 25px; }

  .photo-story { grid-template-columns: 1fr; grid-template-rows: auto; gap: 27px; }
  .photo-primary,
  .photo-fact,
  .photo-secondary,
  .photo-exterior { grid-column: 1; }
  .photo-primary .photo-wrap,
  .photo-secondary .photo-wrap,
  .photo-exterior .photo-wrap { aspect-ratio: 1.42 / 1; }
  .photo-fact {
    min-height: 165px;
    padding: 22px;
    display: grid;
    grid-template-columns: auto auto auto auto;
    align-items: end;
    gap: 8px;
  }
  .photo-fact > span { grid-column: 1 / -1; margin: 0 0 auto; }
  .photo-fact strong { font-size: 43px; }
  .photo-fact em { margin: 0 1px 6px; }
  .photo figcaption { font-size: 10px; gap: 12px; }

  .partner-head { margin-bottom: 34px; }
  .competency-grid { grid-template-columns: 1fr; }
  .competency-grid article { min-height: auto; padding: 24px 22px 27px; }
  .competency-grid h3 { margin-top: 22px; font-size: 21px; }
  .partner-callout { grid-template-columns: 1fr; gap: 18px; padding: 25px 22px 25px 28px; }
  .partner-callout h3 { font-size: 24px; }

  .condition-row { grid-template-columns: 1fr; }
  .condition-row article { min-height: 88px; border-right: 0; border-bottom: 1px solid #fff; }
  .contact-context { grid-template-columns: 1fr; padding: 28px 23px; }
  .contact-card { padding: 28px 23px; }
  .contact-card h3 { margin-top: 31px; font-size: 34px; }
  .contact-links a { grid-template-columns: 62px minmax(0,1fr) 14px; gap: 9px; }
  .contact-links strong { font-size: 12px; }
  .final-cta { margin-top: 44px; padding-top: 31px; gap: 25px; }
  .final-cta h3 { font-size: 29px; }
  .final-cta p { font-size: 14px; }
  .button-large { width: 100%; }

  .footer-shell { grid-template-columns: 1fr auto; gap: 24px; }
  .footer-main { grid-column: 1 / -1; }
  .footer-nav { justify-self: start; }
}

@media (max-width: 430px) {
  :root { --shell: calc(100vw - 24px); }
  .header-shell { width: calc(100vw - 24px); }
  .brand { width: 92px; flex-basis: 92px; }
  .availability-chip { display: none; }
  .hero { grid-template-rows: auto 342px auto; }
  .hero-copy { padding: 76px 12px 42px; }
  .hero-rule { left: 12px; width: calc(100% - 24px); }
  .hero h1 { font-size: clamp(38px, 10.7vw, 46px); letter-spacing: -.045em; }
  .hero-lead { font-size: 16px; }
  .hero-kpis { width: calc(100% - 24px); }
  .hero-kpi { min-height: 92px; padding: 14px; }
  .hero-kpi strong { font-size: 21px; }
  .hall-card strong { font-size: 42px; }
  .stat-grid strong { font-size: 20px; }
  .photo-fact strong { font-size: 39px; }
  .contact-context address { font-size: 18px; }
  .footer-shell { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .footer-main { align-items: flex-start; gap: 18px; }
  .footer-brand { width: 96px; flex-basis: 96px; }
  .footer-copy { padding-top: 2px; }
  .footer-nav { display: flex; flex-wrap: wrap; gap: 10px 18px; }
  .footer-nav a { min-height: 30px; display: inline-flex; align-items: center; }
  .to-top { justify-self: start; min-height: 30px; display: inline-flex; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-visual img,
  .photo img,
  .map-card img { transform: none !important; }
}
