/* ── FONTS ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dm-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lato-700.woff2') format('woff2');
}

/* ── CSS VARIABLES ── */
:root {
  /* Colors — Primary */
  --navy:          #0C1A2E;
  --navy-deep:     #0D2146;
  --navy-mid:      #0F3460;
  --blue-steel:    #1D3557;
  --blue-atlantic: #1B4F8A;
  --green:         #00B050;
  --green-dark:    #007A38;
  --white:         #FFFFFF;
  --off-white:     #F5F6F4;

  /* Colors — Secondary */
  --stone:         #E8E4DC;
  --slate:         #3D4D5C;
  --mist:          #EDF0F2;
  --pale-green:    #E8F4EE;

  /* Borders */
  --border-light:  rgba(12, 26, 46, 0.10);
  --border-dark:   rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-display:  'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Sizes */
  --container:     1280px;
  --nav-h:         68px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-sm:   0.25s;
  --duration-md:   0.45s;
  --duration-lg:   0.65s;
}

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

body {
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED ── */
.label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 20px;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--navy);
  margin-bottom: 0;
}

section {
  padding: 120px 64px;
  border-bottom: 1px solid var(--mist);
}

/* ── NAV ── */
nav {
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  height: 28px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
nav.nav-expanded .nav-logo {
  height: 40px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  color: rgba(12,26,46,0.75);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color var(--duration-sm);
}
.nav-link:hover { color: var(--navy); }

/* Type 5 — Nav CTA */
.nav-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  border: 1px solid rgba(12,26,46,0.25);
  background: transparent;
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--duration-sm), color var(--duration-sm);
}
.nav-btn:hover { background: var(--navy); color: var(--white); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: max(580px, calc(100svh - var(--nav-h)));
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  display: flex;
  align-items: center;
  padding: 48px 32px 48px 64px;
  border-bottom: none;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  width: 100%;
  min-height: max(500px, calc(100svh - var(--nav-h) - 96px));
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  position: relative;
}

/* Image container */
.hero-image {
  width: 100%;
  flex: 1;
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.hero-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}
.hero-mask-block {
  position: absolute;
  background: var(--navy);
  border-radius: 4px;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease;
}
.hero-mask-block.unmasked {
  transform: scale(0);
  opacity: 0;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-deep);
  background-image: url('../assets/images/hero-bg-3.jpeg');
  background-size: cover;
  background-position: center center;
  animation: none;
}

@keyframes hero-pan {
  from { background-position: right center; }
  to   { background-position: left center; }
}

.hero-illustration {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 24px;
}
#hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 0;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 12px; margin-top: 32px; }

/* Square CTA buttons — arrow top-right, label bottom-left */
.hero-btn-p,
.hero-btn-g {
  width: 202px;
  height: 101px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--duration-sm), border-color var(--duration-sm);
}
.hero-btn-p {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-btn-p:hover { background: var(--navy-mid); border-color: rgba(255,255,255,0.08); }
.hero-btn-g {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-btn-g:hover { background: var(--navy-mid); border-color: rgba(255,255,255,0.08); }

.btn-arrow {
  align-self: flex-end;
  font-size: 20px;
  line-height: 1;
  color: var(--green);
  font-family: var(--font-body);
  font-variant-emoji: text;
}
.btn-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.55;
}



/* ── ABOUT ── */
#about {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  z-index: 3;
}

/* Corner pulse — grows from bottom-left, clipped by the section */
.corner-radar {
  position: absolute;
  bottom: -120px;
  left: -120px;
  pointer-events: none;
  z-index: 0;
}
.corner-ring {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  border: 2px solid rgba(0,176,80,0.75);
  box-shadow: 0 0 12px rgba(0,176,80,0.2);
  opacity: 0;
  transform-origin: 0% 100%;
  animation: corner-pulse 6s ease-out infinite;
}
.corner-ring:nth-child(1) { animation-delay: 0s; }
.corner-ring:nth-child(2) { animation-delay: 1.5s; }
.corner-ring:nth-child(3) { animation-delay: 3s; }
.corner-ring:nth-child(4) { animation-delay: 4.5s; }
@keyframes corner-pulse {
  0%   { transform: scale(0.05); opacity: 1; }
  100% { transform: scale(1);    opacity: 0; }
}

/* Content sits above the rings */
#about .label,
#about h2,
#about .about-grid { position: relative; z-index: 1; }
#about p { line-height: 1.75; color: var(--slate); }
#about p.label { color: var(--green); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 { margin-bottom: 40px; }
.about-text p { font-size: 16px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--navy);
  border-top: 3px solid var(--green);
}
.stat-cell {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--duration-sm);
  text-align: center;
}
.stat-cell:nth-child(2n) { border-right: none; }
.stat-cell:nth-child(3),
.stat-cell:nth-child(4) { border-bottom: none; }
.stat-cell:hover { background: rgba(255,255,255,0.04); }

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0;
}
.stat-num::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  margin: 18px auto 14px;
  opacity: 0.7;
}
.stat-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
}

/* ── ABOUT COLLAGE ── */
.about-collage {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.collage-main {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  height: clamp(240px, 30vw, 380px);
}
.collage-cell--a { grid-row: 1 / 3; }
.collage-strip {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 8px;
  height: clamp(110px, 13vw, 170px);
}
.collage-cell {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  flex: 1;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.collage-cell.collage-revealed {
  clip-path: inset(0 0 0% 0);
}
.collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collage-cell:hover img {
  transform: scale(1.06);
}
.collage-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--green);
  background: linear-gradient(to top, rgba(0,176,80,0.12) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.collage-cell:hover::after {
  opacity: 1;
}

/* ── STRATEGY ── */
.strategy-header {
  margin-left: 50%;
  margin-bottom: 48px;
}
#strategy {
  background-color: var(--mist);
  background-image:
    linear-gradient(rgba(12,26,46,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,26,46,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  position: relative;
  z-index: 2;
  margin-top: -24px;
  padding-top: 144px;
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.asset-card:nth-child(2) { margin-top: 40px; }
.asset-card:nth-child(3) { margin-top: 80px; }
.asset-card {
  background: var(--white);
  padding: 52px 40px 48px;
  border-top: 2px solid var(--mist);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration-sm), transform var(--duration-md), box-shadow var(--duration-md);
}
.asset-card:hover {
  border-top-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12,26,46,0.08);
  z-index: 1;
}

.asset-icon {
  display: block;
  width: 48%;
  height: auto;
  margin: 0 auto 32px;
}
.asset-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.asset-card p { font-size: 16px; line-height: 1.7; color: var(--slate); }

/* ACQUISITION CRITERIA */
.acq-criteria {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--mist);
}
.criteria-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
}
.criteria-item {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
  border-top: 2px solid var(--green);
  transition: background var(--duration-sm);
}
.criteria-item:hover { background: var(--off-white); }
.criteria-icon {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── INDUSTRIES ── */
.industries-disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: var(--slate);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

#industries {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 3;
  margin-top: -24px;
  padding-top: 144px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background-color: var(--navy);
  padding: 0;
  border-top: none;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.industry-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.industry-card:hover .industry-bg { transform: scale(1.06); }
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  border-radius: inherit;
  z-index: 1;
}
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--green);
  background: linear-gradient(to top, rgba(0,176,80,0.12) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.industry-card:hover::after {
  opacity: 1;
}
.industry-name {
  position: relative;
  z-index: 3;
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1.25;
  padding: 28px 28px 32px;
}

/* ── PORTFOLIO ── */
#portfolio { background: var(--white); }
.port-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.port-left {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  z-index: 2;
}
.port-left h2 { white-space: nowrap; }
.port-left p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate);
  margin-top: 24px;
}
.port-left p.label { color: var(--green); margin-top: 0; }

/* Type 3 — Text + Arrow Link */
.port-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--duration-sm);
}
.port-cta:hover { color: var(--navy-mid); }

/* MAP */
.map-container { position: relative; z-index: 1; }
.map-legend {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--mist);
  z-index: 5;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}
.legend-dot-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-atlantic);
  flex-shrink: 0;
}
.legend-star-marker {
  font-size: 16px;
  color: var(--green);
  line-height: 1;
}

/* TENANT REVOLVER */
.tenant-revolver {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--mist);
}
.tenant-revolver-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 20px;
  text-align: center;
}
.tenant-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.tenant-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-tenants 22s linear infinite;
}
.tenant-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  flex-shrink: 0;
}
.tenant-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.tenant-item--lg img {
  max-height: 140%;
  transform: scale(1.4);
}
@keyframes scroll-tenants {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TEAM ── */
#team {
  background: var(--navy);
  border-bottom: none;
  text-align: center;
  border-radius: 24px 24px 0 0;
  padding-top: 70px;
  padding-bottom: 70px;
}
#team h2 { color: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  border-top: 2px solid var(--mist);
  transition: border-color var(--duration-sm), transform var(--duration-md), box-shadow var(--duration-md);
}
.team-card:hover {
  border-top-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12,26,46,0.08);
}
.team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--mist);
  margin-bottom: 24px;
}
.team-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-role {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 20px;
}
.team-div { background: var(--mist); width: 32px; height: 1px; margin-bottom: 16px; }
.view-bio-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--mist);
  background: transparent;
  cursor: pointer;
  color: var(--slate);
  transition: border-color var(--duration-sm), color var(--duration-sm);
}
.view-bio-btn:hover { border-color: var(--navy); color: var(--navy); }

/* ── BIO MODAL ── */
.bio-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,26,46,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-md);
}
.bio-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.bio-modal {
  background: var(--white);
  padding: 56px 52px;
  max-width: 560px;
  width: calc(100% - 48px);
  position: relative;
  border-top: 3px solid var(--green);
  transform: translateY(16px);
  transition: transform var(--duration-md);
}
.bio-modal-overlay.open .bio-modal { transform: translateY(0); }
.bio-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--slate);
  cursor: pointer;
  line-height: 1;
}
.bio-modal-close:hover { color: var(--navy); }
.bio-modal-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--mist);
  margin-bottom: 24px;
}
.bio-modal-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.bio-modal-role {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 20px;
}
.bio-modal-div { background: var(--mist); width: 32px; height: 1px; margin-bottom: 24px; }
.bio-modal-text { font-size: 15px; line-height: 1.75; color: var(--slate); }
.bio-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--mist);
}
.bio-nav-btn {
  background: none;
  border: 1px solid var(--mist);
  padding: 9px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  cursor: pointer;
  transition: border-color var(--duration-sm), color var(--duration-sm);
}
.bio-nav-btn:hover { border-color: var(--navy); color: var(--navy); }
.bio-modal-counter {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green);
}

/* ── CONTACT ── */
.contact-acq-note {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 56px;
}
#contact p.label {
  color: var(--green);
  font-size: 15px;
  letter-spacing: 0.2em;
}
#contact {
  background: var(--navy-deep);
  border-bottom: none;
  padding: 80px 64px 80px 184px;
}
#contact h2 { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  margin-top: 36px;
  align-items: start;
}
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.c-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.c-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
#contact p { font-size: 14px; color: rgba(255,255,255,0.92); line-height: 1.65; }
.form-field {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  height: 48px;
  width: 100%;
  margin-bottom: 12px;
  padding: 0 16px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  display: block;
  transition: border-color 0.2s ease;
}
.form-field::placeholder { color: rgba(12,26,46,0.35); }
.form-field:focus { border-color: var(--green); }
.form-field.textarea { height: 120px; padding: 14px 16px; resize: none; line-height: 1.6; }
.contact-form { display: block; }
.role-picker { margin-bottom: 20px; }
.role-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0;
  margin-bottom: 10px;
}
.role-bubbles { display: flex; gap: 8px; flex-wrap: wrap; }
.role-bubbles input[type="radio"] { display: none; }
.role-bubbles label {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  user-select: none;
}
.role-bubbles label:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.role-bubbles input[type="radio"]:checked + label {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.form-btn {
  background: var(--blue-atlantic);
  color: var(--white);
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background var(--duration-sm);
  border: none;
  border-radius: 6px;
}
.form-btn:hover { background: var(--navy-mid); }

/* ── MAP HQ PULSE ── */
.state-active {
  transition: fill 0.18s ease;
  cursor: default;
}
.state-active:hover { fill: #2A5FA4; }

.hq-ring {
  transform-box: fill-box;
  transform-origin: center;
  fill: none;
  stroke: #00B050;
  stroke-width: 2;
  animation: hq-radiate 2.4s ease-out infinite;
}
.hq-ring--delay { animation-delay: 1.2s; }
@keyframes hq-radiate {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 64px;
}
.foot-logo {
  height: 24px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.foot-links { display: flex; gap: 24px; }
.foot-link {
  font-family: var(--font-body);
  font-size: 11px;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--duration-sm);
}
.foot-link:hover { color: var(--white); }
.foot-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}
.foot-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.foot-legal { display: flex; gap: 16px; }
.foot-legal-link {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--duration-sm);
}
.foot-legal-link:hover { color: var(--white); }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green);
  border: none;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}
#back-to-top svg { width: 18px; height: 18px; }
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--green-dark); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hiding {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
}
.cookie-text {
  flex: 1;
}
.cookie-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.cookie-text p {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 20px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, opacity 0.2s;
}
.cookie-btn--reject {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
}
.cookie-btn--reject:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.cookie-btn--accept {
  background: var(--green);
  color: var(--white);
}
.cookie-btn--accept:hover { background: var(--green-dark); }

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0 20px; height: 56px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 20px 32px;
    border-bottom: 1px solid var(--mist);
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(12,26,46,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 16px; padding: 10px 0; border-bottom: 1px solid var(--mist); }
  .nav-link:last-child { border-bottom: none; }
  .nav-btn { display: none; }
  .nav-hamburger { display: flex; }

  /* SECTIONS */
  section { padding: 64px 20px; }

  /* HERO */
  #hero { min-height: 100svh; padding: 90px 20px 56px; align-items: flex-start; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .hero-left { justify-content: flex-start; }
  .hero-eyebrow { font-size: 14px; letter-spacing: 0.08em; }
  #hero h1 { font-size: 42px; line-height: 1.0; }
  .hero-illustration { max-width: 200px; margin-bottom: 20px; }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .hero-image { min-height: 260px; border-radius: 20px; }
  .hero-btn-p, .hero-btn-g { width: 140px; height: 70px; padding: 10px 16px; }
  .btn-label { font-size: 10px; }
  .btn-arrow { color: var(--green); }

  /* H2 */
  h2 { font-size: 28px; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-text h2 { margin-bottom: 20px; }
  .about-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .collage-main, .collage-strip { display: contents; }
  .collage-cell { height: 130px; }
  .collage-cell--a { grid-column: 1 / -1; height: 190px; grid-row: auto; }

  /* STRATEGY */
  .strategy-header { margin-left: 0; }
  #strategy { padding-top: 88px; }
  .asset-grid { grid-template-columns: 1fr; gap: 16px; }
  .asset-card:nth-child(2),
  .asset-card:nth-child(3) { margin-top: 0; }
  .criteria-strip { grid-template-columns: 1fr; }

  /* INDUSTRIES */
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  #industries { padding-top: 88px; }
  .industry-card { min-height: 160px; justify-content: center; }

  /* PORTFOLIO */
  .port-layout { grid-template-columns: 1fr; gap: 32px; }
  .port-left { position: static; z-index: auto; }
  .port-left h2 { white-space: normal; }
  .map-legend {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px;
    margin-top: 12px;
  }

  /* TEAM */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-card { padding: 28px 20px; }

  /* BIO MODAL */
  .bio-modal { padding: 40px 24px; }

  /* CONTACT */
  #contact { padding: 64px 20px; }
  .contact-acq-note { font-size: 42px; line-height: 1.0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* FOOTER */
  footer {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 20px;
  }
  .foot-links { flex-wrap: wrap; gap: 14px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* COOKIE BANNER */
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}
