/* ════════════════════════════════════════════════════════════
   HARDIMAN RITTER — Master Stylesheet
   Global Trade · Logistics · Strategy · v3.0
   ════════════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --gold-primary: #4EA6E6;
  --gold-champagne: #A8D9FA;
  --gold-warm: #F3F7FB;
  --gold-dark: #276B99;
  --black-deep: #030B14;
  --black-mid: #07111C;
  --black-card: #0B1824;
  --black-hover: #102334;
  --line-subtle: rgba(78, 166, 230, 0.20);
  --line-medium: rgba(78, 166, 230, 0.42);
  --text-muted: rgba(227, 239, 248, 0.78);
  --text-body: rgba(227, 239, 248, 0.92);

  /* Fonts */
  --font-display: 'Iowan Old Style', Baskerville, Georgia, 'Times New Roman', serif;
  --font-body: 'Avenir Next', 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing */
  --nav-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black-deep);
  color: var(--gold-warm);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 16px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 10px 16px;
  background: var(--gold-primary);
  color: var(--black-deep);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

::selection {
  background: var(--gold-primary);
  color: var(--black-deep);
}

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(3, 11, 20, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--line-subtle);
  display: flex;
  align-items: center;
  padding: 0 50px;
  transition: all 0.4s ease;
}

.nav-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--gold-warm);
}

.brand-lockup {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "name"
    "signature"
    "descriptor";
  row-gap: 4px;
  align-items: center;
  width: max-content;
}

.brand-name {
  grid-area: name;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.26em;
  color: var(--gold-warm);
  white-space: nowrap;
}

.brand-signature {
  grid-area: signature;
  height: 1px;
  background: var(--gold-primary);
  width: 100%;
}

.brand-descriptor {
  grid-area: descriptor;
  font-size: 6.5px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold-champagne);
  white-space: nowrap;
  text-align: center;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
  padding: 4px;
  border: 0.5px solid var(--gold-primary);
}

.nav-monogram {
  width: 36px;
  height: 36px;
  border: 0.5px solid var(--gold-primary);
  display: grid;
  place-items: center;
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
}

.hero-assurance {
  width: min(100%, 390px);
  margin-left: auto;
  border-top: 1px solid var(--line-medium);
  background: rgba(3, 11, 20, 0.58);
  backdrop-filter: blur(12px);
}

.hero-assurance > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 0.5px solid var(--line-subtle);
  opacity: 0;
  transform: translateX(18px);
  animation: assuranceIn 0.7s ease forwards;
}

.hero-assurance > div:nth-child(1) { animation-delay: 0.35s; }
.hero-assurance > div:nth-child(2) { animation-delay: 0.45s; }
.hero-assurance > div:nth-child(3) { animation-delay: 0.55s; }

.hero-assurance span {
  color: var(--gold-primary);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.hero-assurance strong {
  color: var(--gold-warm);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-economics-label {
  display: block !important;
  padding: 22px !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  background: rgba(78, 166, 230, 0.08);
}

.hero-economics-label span {
  display: block;
  margin-bottom: 8px;
  font-size: 8px;
  letter-spacing: 0.34em;
}

.hero-economics-label strong {
  display: block;
  font-size: 22px;
}

.nav-menu {
  display: flex;
  gap: 34px;
  align-items: center;
  list-style: none;
}

.nav-menu a {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--text-body);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.5px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-warm);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border: 0.5px solid var(--gold-primary);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-primary);
  color: var(--black-deep);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--gold-warm);
  margin: 6px 0;
  transition: all 0.3s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-champagne);
  outline-offset: 4px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 50px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
              var(--black-deep);
  z-index: -1;
}

.hero-map .hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 11, 20, 0.98) 0%, rgba(3, 11, 20, 0.86) 36%, rgba(3, 11, 20, 0.34) 68%, rgba(3, 11, 20, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 11, 20, 0.10) 55%, rgba(3, 11, 20, 0.95) 100%),
    url('../img/hero-topographic-map.jpg') center center / cover no-repeat;
  animation: mapDrift 18s ease-in-out infinite alternate;
}

.hero-map .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 43%, rgba(168, 217, 250, 0.38) 0 2px, rgba(78, 166, 230, 0.18) 3px, transparent 34px);
  animation: routePulse 3.6s ease-out infinite;
}

.hero-map .hero-inner {
  grid-template-columns: minmax(0, 760px) 1fr;
}

.hero-map .hero-content {
  position: relative;
  z-index: 2;
}

.hero-map .hero-visual {
  display: flex;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.05s ease forwards;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 0.5px;
  background: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--gold-warm);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.12s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-primary);
  font-weight: 400;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 48px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gold-primary);
  color: var(--black-deep);
  text-decoration: none;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 0.5px solid var(--gold-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold-primary);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  color: var(--gold-warm);
  text-decoration: none;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
  border: 0.5px solid var(--line-medium);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.9s 0.25s ease forwards;
}

.hero-visual-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border: 0.5px solid var(--line-medium);
  padding: 60px;
  position: relative;
}

.hero-visual-frame::before,
.hero-visual-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-primary);
}

.hero-visual-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.hero-visual-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.hero-visual-frame svg {
  width: 100%;
  height: 100%;
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 80px;
  padding: 24px 0;
  border-top: 0.5px solid var(--line-subtle);
  width: 90%;
  max-width: 1400px;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-warm);
  letter-spacing: 0.04em;
}

.hero-stat-lbl {
  font-size: 8px;
  letter-spacing: 0.45em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

/* ═══════════ SECTIONS ═══════════ */
.section {
  padding: 120px 50px;
  position: relative;
}

.section-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 0.5px;
  background: var(--gold-primary);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  color: var(--gold-warm);
  margin-bottom: 24px;
  max-width: 900px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-primary);
}

.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 64px;
  max-width: 720px;
}

/* ═══════════ FEATURE GRID ═══════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-subtle);
  border: 0.5px solid var(--line-subtle);
}

.feature-grid.tower-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.platform-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--black-mid);
  padding: 48px 40px;
  transition: background 0.4s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--black-hover);
}

.feature-card:hover::before {
  left: 12px;
  right: 12px;
  opacity: 1;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(78, 166, 230, 0.07) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  transform: translateX(100%);
}

/* ═══════════ EDITORIAL IMAGE SECTIONS ═══════════ */
.editorial-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background: var(--black-mid);
  border-top: 0.5px solid var(--line-subtle);
  border-bottom: 0.5px solid var(--line-subtle);
}

.editorial-section.reverse {
  grid-template-columns: 1fr 1.35fr;
}

.editorial-section.reverse .editorial-image {
  order: 2;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(3, 11, 20, 0.62) 100%);
  pointer-events: none;
}

.editorial-section.reverse .editorial-image::after {
  background: linear-gradient(270deg, transparent 55%, rgba(3, 11, 20, 0.62) 100%);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.86) contrast(1.04);
}

.editorial-panel {
  padding: clamp(64px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-panel .section-sub {
  margin-bottom: 34px;
}

.editorial-index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold-primary);
  letter-spacing: 0.35em;
  margin-bottom: 28px;
}

/* ═══════════ DECISION OUTPUTS ═══════════ */
.outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--line-subtle);
  background: var(--line-subtle);
  gap: 1px;
  margin-top: 64px;
}

.outcome-item {
  background: var(--black-mid);
  padding: 30px 26px;
}

.outcome-label {
  font-size: 10px;
  color: var(--gold-primary);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.outcome-value {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold-warm);
  line-height: 1.35;
}

.assurance-note {
  margin-top: 48px;
  padding: 28px 32px;
  border-left: 2px solid var(--gold-primary);
  background: rgba(78, 166, 230, 0.06);
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.75;
}

.team-bio {
  max-width: 300px;
  margin: 14px auto 0;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.75;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.legal-links a {
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.legal-links a:hover { color: var(--gold-primary); }

.feature-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-warm);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.feature-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ═══════════ DOUBLE LINE SIGNATURE ═══════════ */
.double-line {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 80px;
}

.double-line span {
  height: 0.5px;
  display: block;
}

.double-line span:first-child {
  background: var(--gold-primary);
}

.double-line span:last-child {
  background: var(--gold-champagne);
}

/* ═══════════ CTA SECTION ═══════════ */
.cta-section {
  padding: 140px 50px;
  text-align: center;
  background: radial-gradient(ellipse at center, var(--black-card) 0%, var(--black-deep) 80%);
  border-top: 0.5px solid var(--line-subtle);
  border-bottom: 0.5px solid var(--line-subtle);
  position: relative;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--gold-warm);
  max-width: 900px;
  margin: 0 auto 32px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-primary);
}

.cta-text {
  font-size: 16px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--black-mid);
  padding: 80px 50px 32px;
  border-top: 0.5px solid var(--line-subtle);
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 0.5px solid var(--line-subtle);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-lockup-footer {
  row-gap: 8px;
}

.brand-lockup-footer .brand-name {
  font-size: 20px;
  letter-spacing: 0.3em;
}

.brand-lockup-footer .brand-descriptor {
  font-size: 7px;
  letter-spacing: 0.34em;
}

/* Premium editorial lockup (G) — footer and executive applications */
.brand-lockup-premium {
  row-gap: 10px;
}

.brand-lockup-premium .brand-name {
  display: grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 16px;
  font-size: inherit;
  letter-spacing: 0;
}

.brand-lockup-premium .brand-word-hardiman {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.12em;
}

.brand-lockup-premium .brand-word-ritter {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}

.brand-lockup-premium .brand-divider {
  width: 1px;
  height: 34px;
  background: var(--gold-primary);
}

.brand-lockup-premium .brand-signature {
  display: none;
}

.brand-lockup-premium .brand-descriptor {
  font-size: 7px;
  letter-spacing: 0.3em;
}

.footer-brand-logo svg {
  width: 56px;
  height: 56px;
}

.footer-monogram {
  width: 56px;
  height: 56px;
  border: 0.5px solid var(--gold-primary);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--gold-warm);
  text-indent: 0.32em;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 12px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 360px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-motto {
  color: var(--gold-primary);
}

.footer-domain {
  margin-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 8px;
  letter-spacing: 0.42em;
}

/* ═══════════ SPECIAL SITUATIONS ═══════════ */
.project-logistics-band {
  margin-top: 1px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  border: 0.5px solid var(--line-medium);
  background: linear-gradient(100deg, rgba(78, 166, 230, 0.09), rgba(78, 166, 230, 0.025));
  transition: border-color 0.35s ease, background-color 0.35s ease;
}

.project-logistics-band:hover {
  border-color: var(--gold-primary);
  background: rgba(78, 166, 230, 0.08);
}

.project-logistics-index,
.service-detail-kicker {
  font-size: 8px;
  letter-spacing: 0.36em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.project-logistics-band h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 300;
  color: var(--gold-warm);
  margin-bottom: 5px;
}

.project-logistics-band p {
  color: var(--text-body);
  font-size: 12.5px;
  line-height: 1.7;
}

.project-logistics-band > span:last-child {
  color: var(--gold-champagne);
  font-size: 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.service-detail-featured {
  margin: 28px 0;
  padding: 72px 56px;
  border: 0.5px solid var(--line-medium);
  background: linear-gradient(120deg, rgba(78, 166, 230, 0.075), rgba(78, 166, 230, 0.012));
}

.service-detail-kicker { margin-bottom: 14px; }

.service-boundary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--line-subtle);
  color: var(--text-muted) !important;
  font-size: 11px !important;
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mapDrift {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@keyframes routePulse {
  0% { opacity: 0.25; transform: scale(0.98); }
  45% { opacity: 0.9; }
  100% { opacity: 0; transform: scale(1.025); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes assuranceIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes detailRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] .architecture-step,
[data-reveal] .outcome-item {
  opacity: 0;
}

[data-reveal].visible .architecture-step,
[data-reveal].visible .outcome-item {
  animation: detailRise 0.6s ease forwards;
}

[data-reveal].visible .architecture-step:nth-child(2),
[data-reveal].visible .outcome-item:nth-child(2) { animation-delay: 0.08s; }
[data-reveal].visible .architecture-step:nth-child(3),
[data-reveal].visible .outcome-item:nth-child(3) { animation-delay: 0.16s; }
[data-reveal].visible .architecture-step:nth-child(4),
[data-reveal].visible .outcome-item:nth-child(4) { animation-delay: 0.24s; }
[data-reveal].visible .architecture-step:nth-child(5) { animation-delay: 0.32s; }

/* ═══════════ INTERNAL PAGE HEADER ═══════════ */
.page-header {
  padding: 200px 50px 100px;
  position: relative;
  border-bottom: 0.5px solid var(--line-subtle);
  text-align: center;
}

.page-header.page-header-map {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  text-align: left;
  background-image:
    linear-gradient(90deg, rgba(3, 11, 20, 0.96) 0%, rgba(3, 11, 20, 0.74) 48%, rgba(3, 11, 20, 0.30) 100%),
    linear-gradient(180deg, rgba(3, 11, 20, 0.18) 45%, rgba(3, 11, 20, 0.96) 100%),
    var(--page-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-header-services {
  background-image: linear-gradient(90deg, rgba(3, 11, 20, 0.96), rgba(3, 11, 20, 0.70) 50%, rgba(3, 11, 20, 0.25)), linear-gradient(180deg, rgba(3, 11, 20, 0.12) 45%, rgba(3, 11, 20, 0.94)), url('../img/services-control-room.jpg') !important;
}

.page-header-about {
  background-image: linear-gradient(90deg, rgba(3, 11, 20, 0.97), rgba(3, 11, 20, 0.72) 50%, rgba(3, 11, 20, 0.28)), linear-gradient(180deg, rgba(3, 11, 20, 0.10) 45%, rgba(3, 11, 20, 0.94)), url('../img/global-routes.jpg') !important;
}

.page-header-work {
  background-image: linear-gradient(90deg, rgba(3, 11, 20, 0.96), rgba(3, 11, 20, 0.66) 50%, rgba(3, 11, 20, 0.20)), linear-gradient(180deg, rgba(3, 11, 20, 0.10) 45%, rgba(3, 11, 20, 0.94)), url('../img/work-air-cargo.jpg') !important;
}

.page-header-contact {
  background-image: linear-gradient(90deg, rgba(3, 11, 20, 0.96), rgba(3, 11, 20, 0.64) 50%, rgba(3, 11, 20, 0.18)), linear-gradient(180deg, rgba(3, 11, 20, 0.10) 45%, rgba(3, 11, 20, 0.94)), url('../img/contact-harbor-office.jpg') !important;
}

.page-header-insights {
  background-image:
    linear-gradient(90deg, rgba(3, 11, 20, 0.98), rgba(3, 11, 20, 0.74) 58%, rgba(3, 11, 20, 0.92)),
    linear-gradient(rgba(78, 166, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 166, 230, 0.08) 1px, transparent 1px) !important;
  background-size: auto, 44px 44px, 44px 44px !important;
}

.page-header.page-header-map .page-header-inner {
  width: 100%;
}

.page-header.page-header-map .page-header-title,
.page-header.page-header-map .page-header-sub {
  margin-left: 0;
}

.page-header.page-header-map .page-header-label {
  opacity: 0;
  animation: fadeUp 0.9s 0.15s ease forwards;
}

.page-header.page-header-map .page-header-title {
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
}

.page-header.page-header-map .page-header-sub {
  opacity: 0;
  animation: fadeUp 1s 0.48s ease forwards;
}

.page-header-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.page-header-label {
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  color: var(--gold-warm);
  margin-bottom: 24px;
}

.page-header-title em {
  font-style: italic;
  color: var(--gold-primary);
}

.page-header-sub {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto;
}

.legal-copy {
  color: var(--text-body);
  font-size: 15.5px;
  line-height: 1.85;
}

.legal-copy p + p {
  margin-top: 22px;
}

.legal-copy strong {
  color: var(--gold-warm);
  font-weight: 500;
}

.legal-copy a {
  color: var(--gold-champagne);
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
}

.usp-economics {
  background:
    linear-gradient(135deg, rgba(78, 166, 230, 0.05), transparent 48%),
    var(--black-mid);
}

.usp-statement {
  margin-top: 1px;
  padding: 34px 40px;
  border: 0.5px solid var(--line-subtle);
  background: rgba(3, 11, 20, 0.55);
  display: grid;
  grid-template-columns: 0.8fr 2fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.usp-statement span {
  color: var(--gold-primary);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.usp-statement strong {
  color: var(--gold-warm);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.usp-statement p {
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.7;
}

/* ═══════════ ABOUT PAGE ═══════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.principle-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.principle {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 0.5px solid var(--line-subtle);
}

.principle:first-child { border-top: 0.5px solid var(--gold-primary); }

.principle-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-primary);
}

.principle-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-warm);
  margin-bottom: 12px;
  font-weight: 400;
}

.principle-content p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.8;
}

/* ═══════════ TEAM ═══════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-grid.founders-grid {
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: start;
}

.partner-card {
  min-height: 310px;
  padding: 42px;
  background: linear-gradient(145deg, rgba(78, 166, 230, 0.06), rgba(78, 166, 230, 0.015));
  border: 0.5px solid var(--line-subtle);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 42px;
  width: 42px;
  height: 1px;
  background: var(--gold-primary);
}

.partner-index {
  position: absolute;
  top: 31px;
  right: 34px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--text-muted);
}

.team-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-warm);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.team-role {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.partner-card .team-bio {
  max-width: 330px;
  margin-top: 28px;
}

.team-focus {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-primary);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ═══════════ SERVICES PAGE ═══════════ */
.service-detail {
  padding: 80px 0;
  border-bottom: 0.5px solid var(--line-subtle);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-num {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-primary);
  letter-spacing: 0.5em;
  margin-bottom: 12px;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-warm);
  letter-spacing: 0.02em;
  font-weight: 300;
}

.service-detail-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-warm);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.service-detail-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 24px;
}

.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.service-detail-content li {
  font-size: 14.5px;
  color: var(--text-body);
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.service-detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 0.5px;
  background: var(--gold-primary);
}

.service-output {
  margin-top: 32px;
  padding: 20px 22px;
  border-left: 2px solid var(--gold-primary);
  background: rgba(78, 166, 230, 0.055);
  color: var(--text-body);
  font-size: 12.5px;
  line-height: 1.75;
}

.service-output span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-primary);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* ═══════════ CONTACT ═══════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  padding: 24px 0;
  border-bottom: 0.5px solid var(--line-subtle);
}

.contact-item:first-child { border-top: 0.5px solid var(--gold-primary); }

.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-item-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-warm);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: block;
}

.managed-by {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.anchor-offset {
  position: relative;
  top: calc(-1 * var(--nav-height));
  visibility: hidden;
}

.contact-form {
  background: var(--black-mid);
  padding: 48px;
  border: 0.5px solid var(--line-subtle);
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--line-medium);
  padding: 12px 0;
  color: var(--gold-warm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-primary) 50%), linear-gradient(135deg, var(--gold-primary) 50%, transparent 50%);
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-select option {
  background: var(--black-mid);
  color: var(--gold-warm);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ═══════════ INSTITUTIONAL DOCUMENT SECTIONS ═══════════ */
.document-section {
  padding: 120px 50px;
  background: linear-gradient(145deg, #07111c 0%, #0a1723 55%, #07111c 100%);
  color: var(--gold-warm);
  border-top: 0.5px solid var(--line-subtle);
  border-bottom: 0.5px solid var(--line-subtle);
}

.document-section .section-title,
.document-section .outcome-value {
  color: var(--gold-warm);
}

.document-section .section-title em { color: var(--gold-primary); }

.document-section .section-label,
.document-section .outcome-label {
  color: var(--gold-primary);
}

.document-section .section-sub,
.document-section .article-body,
.document-section .architecture-step p {
  color: var(--text-body);
}

.document-section .outcome-strip {
  border-color: var(--line-subtle);
  background: var(--line-subtle);
}

.document-section .outcome-item { background: var(--black-card); }

.mandate-architecture {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
  border: 0.5px solid var(--line-subtle);
  background: var(--line-subtle);
  gap: 1px;
}

.architecture-step {
  min-height: 235px;
  padding: 30px 24px;
  background: var(--black-card);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.architecture-step:hover { transform: translateY(-5px); background: var(--black-hover); }

.architecture-step span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold-primary);
  font-size: 9px;
  letter-spacing: 0.32em;
}

.architecture-step strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold-warm);
}

.architecture-step p {
  font-size: 12px;
  line-height: 1.75;
}

.entity-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border: 0.5px solid var(--line-subtle);
}

.entity-row {
  min-height: 140px;
  padding: 28px 24px;
  border-right: 0.5px solid var(--line-subtle);
  background: var(--black-card);
  transition: background-color 0.3s ease;
}

.entity-row:hover { background: var(--black-hover); }

.entity-row:last-child { border-right: none; }

.entity-row span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-primary);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.entity-row strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gold-warm);
}

.governance-grid,
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border: 0.5px solid var(--line-subtle);
  background: var(--line-subtle);
  gap: 1px;
}

.boundary-grid { grid-template-columns: repeat(4, 1fr); }

.governance-card,
.boundary-card {
  min-height: 260px;
  padding: 32px 28px;
  background: var(--black-mid);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.governance-card:hover,
.boundary-card:hover {
  transform: translateY(-5px);
  background: var(--black-hover);
}

.document-section .boundary-grid {
  border-color: var(--line-subtle);
  background: var(--line-subtle);
}

.document-section .boundary-card { background: var(--black-card); }

.governance-card > span,
.boundary-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold-primary);
  font-size: 9px;
  letter-spacing: 0.3em;
}

.document-section .boundary-card > span { color: var(--gold-primary); }

.governance-card h3,
.boundary-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--gold-warm);
}

.document-section .boundary-card h3 { color: var(--gold-warm); }

.governance-card p,
.boundary-card p {
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.8;
}

.document-section .boundary-card p { color: var(--text-body); }

.perspectives-preview .btn-secondary { margin-top: 30px; }

/* ═══════════ PERSPECTIVES ═══════════ */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border: 0.5px solid var(--line-subtle);
  background: var(--line-subtle);
  gap: 1px;
}

.insight-card {
  min-height: 360px;
  padding: 38px 34px;
  background: var(--black-mid);
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background-color 0.25s ease, transform 0.3s ease;
}

.insight-card:hover { background: var(--black-hover); transform: translateY(-5px); }

.insight-card > span,
.article-meta {
  color: var(--gold-primary);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 54px 0 20px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
}

.insight-card p {
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.8;
}

.insight-card b {
  margin-top: auto;
  padding-top: 30px;
  color: var(--gold-primary);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.insight-article {
  padding: 120px 50px;
  scroll-margin-top: var(--nav-height);
}

.article-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.insight-article h2 {
  max-width: 900px;
  margin: 22px 0 30px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.08;
}

.insight-article h2 em { color: var(--gold-primary); }
.document-section.insight-article h2 em { color: var(--gold-primary); }

.article-lede {
  max-width: 830px;
  margin-bottom: 58px;
  color: var(--text-body);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.5;
}

.document-section .article-lede { color: var(--text-body); }

.article-body {
  max-width: 760px;
  margin-left: auto;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.95;
}

.article-body p + p { margin-top: 24px; }

.article-body h3 {
  margin: 50px 0 20px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.article-points {
  list-style: none;
  border-top: 1px solid currentColor;
}

.article-points li {
  padding: 15px 0 15px 24px;
  border-bottom: 1px solid rgba(78, 166, 230, 0.2);
  position: relative;
}

.article-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.document-section .article-points li::before { color: var(--gold-primary); }

.footer-disclosure {
  margin: 46px 0 24px;
  padding: 18px 0;
  border-top: 0.5px solid var(--line-subtle);
  border-bottom: 0.5px solid var(--line-subtle);
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.footer-address {
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 12px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-map .hero-inner { grid-template-columns: 1fr; }
  .hero-map .hero-content { max-width: 680px; }
  .hero-visual { order: -1; }
  .hero-map .hero-visual { order: 0; justify-content: flex-start; }
  .hero-assurance { margin-left: 0; }
  .feature-grid, .feature-grid.tower-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .two-col, .contact-grid, .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { display: none; }
  .editorial-section, .editorial-section.reverse { grid-template-columns: 1fr; }
  .editorial-section.reverse .editorial-image { order: 0; }
  .editorial-image { min-height: 440px; }
  .outcome-strip { grid-template-columns: repeat(2, 1fr); }
  .mandate-architecture { grid-template-columns: repeat(2, 1fr); }
  .entity-panel { grid-template-columns: repeat(2, 1fr); }
  .entity-row { border-bottom: 0.5px solid var(--line-subtle); }
  .governance-grid, .boundary-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 290px; }
  .project-logistics-band { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 1100px) {
  .nav { padding: 0 24px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: #030B14;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
    border-bottom: 0.5px solid var(--line-medium);
  }
  .nav-menu.mobile-open { display: flex; }
  .nav-menu li { border-bottom: 0.5px solid var(--line-subtle); }
  .nav-menu a { display: block; padding: 18px 4px; }
  .nav-menu a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  .hero, .section, .document-section, .insight-article, .page-header, .cta-section, .footer { padding-left: 24px; padding-right: 24px; }
  .page-header { padding-top: 140px; }
  .feature-grid, .feature-grid.tower-grid, .feature-grid.platform-grid { grid-template-columns: minmax(0, 1fr); }
  .feature-card { min-width: 0; }
  .team-grid, .team-grid.founders-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .contact-form { padding: 32px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .hero-map .hero-bg {
    background:
      linear-gradient(180deg, rgba(3, 11, 20, 0.58) 0%, rgba(3, 11, 20, 0.92) 58%, rgba(3, 11, 20, 1) 100%),
      url('../img/hero-topographic-map.jpg') 68% center / cover no-repeat;
  }
  .hero { min-height: auto; padding-top: 126px; padding-bottom: 72px; }
  .hero-visual { width: 100%; }
  .hero-assurance { width: 100%; }
  .editorial-image { min-height: 330px; }
  .editorial-panel { padding: 64px 24px; }
  .outcome-strip { grid-template-columns: 1fr; }
  .mandate-architecture, .entity-panel, .governance-grid, .boundary-grid { grid-template-columns: 1fr; }
  .entity-row { border-right: none; }
  .architecture-step { min-height: auto; }
  .architecture-step span { margin-bottom: 28px; }
  .insight-article { padding-top: 82px; padding-bottom: 82px; }
  .article-lede { font-size: 21px; }
  .brand-name { font-size: 13px; letter-spacing: 0.2em; }
  .brand-descriptor { font-size: 5.8px; letter-spacing: 0.2em; }
  .brand-lockup { grid-template-columns: 1fr; }
  .brand-lockup-footer .brand-name { font-size: 17px; }
  .brand-lockup-premium .brand-name { gap: 10px; }
  .brand-lockup-premium .brand-word-hardiman { font-size: 22px; }
  .brand-lockup-premium .brand-word-ritter { font-size: 17px; }
  .brand-lockup-premium .brand-divider { height: 28px; }
  .usp-statement { grid-template-columns: 1fr; padding: 28px 24px; }
  .project-logistics-band { padding: 28px 24px; }
  .service-detail-featured { padding: 48px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════ INSTITUTIONAL READABILITY ═══════════ */
.skip-link,
.hero-assurance span,
.hero-economics-label span,
.hero-stat-lbl,
.hero-label,
.section-label,
.outcome-label,
.page-header-label,
.usp-statement span,
.partner-index,
.team-role,
.team-focus,
.project-logistics-index,
.service-detail-kicker,
.service-output span,
.contact-item-label,
.architecture-step span,
.entity-row span,
.governance-card > span,
.boundary-card > span,
.insight-card > span,
.article-meta,
.insight-card b,
.footer-col h4,
.legal-links a,
.footer-bottom,
.footer-domain {
  font-size: 13px;
  letter-spacing: 0.22em;
}

.nav-menu a,
.nav-cta,
.btn-primary,
.btn-secondary {
  font-size: 12.5px;
  letter-spacing: 0.22em;
}

.feature-text,
.team-bio,
.assurance-note,
.principle-content p,
.service-detail-content p,
.service-detail-content li,
.service-output,
.project-logistics-band p,
.usp-statement p,
.architecture-step p,
.governance-card p,
.boundary-card p,
.insight-card p,
.article-body,
.legal-copy,
.footer-desc {
  font-size: 16px;
}

.managed-by,
.service-boundary,
.project-logistics-band > span:last-child,
.footer-disclosure,
.footer-address {
  font-size: 13px !important;
}

.footer-col a { font-size: 13.5px; }

@media (max-width: 768px) {
  .nav-menu a { font-size: 13px; }
  .btn-primary,
  .btn-secondary { font-size: 12.5px; }
}

/* ═══════════ ERROR PAGE ═══════════ */
.error-page {
  min-height: 100vh;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(90deg, rgba(3, 11, 20, 0.98), rgba(3, 11, 20, 0.58)),
    url('../img/hero-topographic-map.jpg') center / cover no-repeat;
}

.error-page > div:last-child { max-width: 820px; padding: 100px 0 40px; }
.error-page h1 { margin: 18px 0 24px; font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); line-height: 1.02; font-weight: 300; }
.error-page h1 em { color: var(--gold-primary); }
.error-page p { max-width: 620px; margin-bottom: 34px; color: var(--text-body); }

@media (max-width: 600px) {
  .error-page { padding: 28px 24px; }
}
