/* ============================================================
   American Gridwork Partners — shared site stylesheet
   Modeled on the visual language of global-infra.com
   Brand palette derived from AGP / GRID / EA / Ground to Grid logos
   ============================================================ */

:root {
  /* Institutional PE navy palette — Global Infrastructure Partners-inspired */
  --navy:        #0d1b2a;   /* deep institutional navy (primary) */
  --navy-2:      #14263d;   /* mid navy */
  --navy-deep:   #061119;   /* near-black navy (hero, footer) */
  --olive:       #7d8b6e;   /* sage olive — used sparingly as accent */
  --olive-soft:  #a8b27d;   /* lighter sage */
  --gold:        #c9a13a;   /* institutional gold */
  --gold-soft:   #d9b85f;   /* lighter gold */
  --cream:       #f4f1e8;   /* warm cream paper */
  --cream-2:     #faf8f1;   /* lightest cream */
  --paper:       #ffffff;
  --ink:         #0d1b2a;   /* dark navy text */
  --muted:       #5a6878;   /* cool grey-blue muted */
  --line:        #e3dfd1;   /* cream-grey rule */
  --line-dark:   rgba(255,255,255,0.14);
  --maxw:        1200px;
  --radius:      4px;       /* tighter corners for institutional feel */
  --shadow-sm:   0 1px 2px rgba(13,27,42,0.06);
  --shadow-md:   0 8px 24px rgba(13,27,42,0.14);
  --shadow-lg:   0 24px 60px rgba(13,27,42,0.22);
  --serif:       "Spectral", "Source Serif Pro", "Georgia", serif;
  --sans:        "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .container, .container-wide { padding: 0 20px; }
}

/* ============================================================
   TOP NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,31,61,0.95);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  color: #fff;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 15px;
  color: #fff;
}
/* Logo wordmark is built into the image — hide the inline text label so it doesn't duplicate.
   The image's alt attr serves as graceful fallback if the asset is missing. */
.site-header .brand img {
  height: 40px;
  width: auto;
  max-width: 280px;
  display: block;
  /* Light filter so the cream-bg logo reads cleanly on the dark navy nav */
  filter: brightness(1.05) contrast(1.02);
}
.site-header .brand span { display: none; }
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0; padding: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-header nav a {
  color: rgba(255,255,255,0.78);
  transition: color 0.15s ease;
  display: inline-block;
}
.site-header nav a:hover,
.site-header nav a.active { color: #fff; }

/* Portfolio dropdown menu */
.site-header nav .has-dropdown {
  position: relative;
}
.site-header nav .has-dropdown > a::after {
  content: "▾";
  font-size: 9px;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.6;
}
.site-header nav .dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 60;
  list-style: none;
  margin: 0;
  display: block;
}
.site-header nav .dropdown li {
  display: block;
  padding: 0;
}
.site-header nav .dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  transition: all 0.15s ease;
  border-left: 2px solid transparent;
}
.site-header nav .dropdown a:hover {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
  color: #fff;
}
.site-header nav .has-dropdown:hover .dropdown,
.site-header nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .cta {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.site-header .cta:hover { background: #fff; color: var(--navy); border-color: #fff; }
.mobile-toggle { display: none; }

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  min-height: 100vh;     /* full-viewport hero, GIP-style */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  /* Full-bleed construction photo (overhead excavator + digital overlay) */
  background-image: url('site/hero-construction.jpg'), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  filter: contrast(1.05) saturate(0.85);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    /* Sterling-style cyan/blue circuit-light glow */
    radial-gradient(900px 500px at 65% 55%, rgba(120,200,230,0.25), transparent 60%),
    radial-gradient(1200px 600px at 18% -8%, rgba(138,154,60,0.18), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(201,161,58,0.18), transparent 60%),
    /* Darker scrim so title block stays legible without killing the photo */
    linear-gradient(180deg, rgba(9,20,40,0.55) 0%, rgba(15,31,61,0.45) 50%, rgba(22,40,75,0.65) 100%);
  z-index: 1;
}
.hero .hero-inner {
  position: relative;
  z-index: 3;
  padding: 120px 0 140px;
}
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-soft);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  max-width: 18ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--olive-soft);
}
.hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 64ch;
  margin: 0 0 14px;
}
.hero .sub {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  max-width: 64ch;
  margin: 18px 0 0;
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
  padding: 96px 0;
}
.section.tight { padding: 64px 0; }
.section.cream { background: var(--cream); }
.section.navy { background: var(--navy); color: #fff; }

.section .eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 16px;
}
.section.navy .eyebrow { color: var(--olive-soft); }
.section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  max-width: 26ch;
}
.section .section-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 48px;
}
.section.navy .section-lede { color: rgba(255,255,255,0.74); }

/* ============================================================
   PORTFOLIO BOXES (3 featured)
   ============================================================ */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .portfolio { grid-template-columns: 1fr; } }

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}
.portfolio-card .logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  margin-bottom: 24px;
}
.portfolio-card .logo-frame img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
}
.portfolio-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--navy);
}
.portfolio-card .tagline {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 24px;
}
.portfolio-card .cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.portfolio-card .cta-row .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.portfolio-card:hover .cta-row .arrow { transform: translateX(4px); }

/* Hover overlay reveals long description */
.portfolio-card .overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.portfolio-card:hover .overlay,
.portfolio-card:focus-within .overlay { opacity: 1; }
.portfolio-card .overlay h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--olive-soft);
}
.portfolio-card .overlay p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
  margin: 0 0 20px;
}
.portfolio-card .overlay .cta-row { color: #fff; }

/* On touch devices, show overlay on tap (active) */
@media (hover: none) {
  .portfolio-card .overlay { display: none; }
}

/* ============================================================
   STAT PILLARS (Why Southeast)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.pillar .pillar-head {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 4px;
  margin: -24px -22px 18px;
  text-align: center;
}
.pillar ul {
  list-style: none;
  padding: 0; margin: 0;
}
.pillar li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.pillar li:first-child { border-top: 0; padding-top: 0; }

/* Tailwinds bottom callouts */
.tailwinds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .tailwinds { grid-template-columns: 1fr; } }
.tailwind h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--olive);
}
.tailwind p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   CAPABILITIES GRID (Ground to Grid services)
   ============================================================ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cap-grid { grid-template-columns: 1fr; } }
.cap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  border-radius: 4px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s ease;
}
.cap:hover {
  border-left-color: var(--gold);
  background: var(--cream);
  transform: translateX(2px);
}
.section.navy .cap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--olive-soft);
  color: #fff;
}
.section.navy .cap:hover {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--gold);
}

/* ============================================================
   NEWS
   ============================================================ */
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .news-list { grid-template-columns: 1fr; } }
.news-item {
  display: block;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: opacity 0.2s ease;
}
.news-list .news-item:hover { opacity: 0.7; }
.news-item .date {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.news-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--navy);
}
.news-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 920px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.team-member .photo {
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-member h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--navy);
}
.team-member .role {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn.secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.secondary:hover { background: var(--navy); color: #fff; }
.btn.on-dark { background: #fff; color: var(--navy); }
.btn.on-dark:hover { background: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 820px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 6px 0; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-brand img {
  height: 56px;
  width: auto;
  max-width: 320px;
  display: block;
  margin-bottom: 18px;
  /* Logo is on dark navy footer; ensure cream/sage version reads well */
  filter: brightness(1.05) contrast(1.02);
}
.site-footer .footer-brand p { max-width: 38ch; }
.site-footer .legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 520px) { .site-footer .legal { flex-direction: column; gap: 8px; } }

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(138,154,60,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  z-index: 0;
}
.page-header > * { position: relative; z-index: 1; }
.page-header .page-logo {
  height: 88px;
  margin-bottom: 32px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  max-width: 22ch;
}
.page-header .lede {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin: 0;
}

/* ============================================================
   ACCESSIBILITY / MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--olive-soft); outline-offset: 2px; }

/* ============================================================
   POWER / WATER / DATA pillar buttons (homepage)
   Bolder, simpler than the portfolio cards
   ============================================================ */
.pillar-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 920px) { .pillar-buttons { grid-template-columns: 1fr; } }

.pillar-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: 36px 32px;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.pillar-btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(138,154,60,0.18) 0%, rgba(15,31,61,0.6) 60%, transparent 100%);
  z-index: 0;
  transition: opacity 0.4s ease;
}
.pillar-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-btn:hover::before { opacity: 1.4; }
.pillar-btn > * { position: relative; z-index: 1; }

.pillar-btn .pillar-label {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-soft);
  margin-bottom: 16px;
}
.pillar-btn .pillar-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.pillar-btn .pillar-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
}
.pillar-btn .pillar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.pillar-btn .pillar-cta .arrow { transition: transform 0.25s ease; }
.pillar-btn:hover .pillar-cta .arrow { transform: translateX(4px); }

/* ============================================================
   VIDEO LAUNCH MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(9,20,40,0.92);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; animation: fadein 0.3s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.video-modal .video-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal .video-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 12px;
  letter-spacing: 0.04em;
}
.video-modal .video-close:hover { color: var(--olive-soft); }

/* ============================================================
   DPA MANDATE 3-column (POWER page)
   ============================================================ */
.mandate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 980px) { .mandate-grid { grid-template-columns: 1fr; } }

.mandate-col h3 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--olive);
  display: inline-block;
}
.section.navy .mandate-col h3 {
  color: var(--olive-soft);
  border-color: var(--olive-soft);
}
.mandate-col p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 14px;
}
.section.navy .mandate-col p { color: rgba(255,255,255,0.86); }
.mandate-col .target-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.mandate-col .target-list li {
  font-size: 14px;
  line-height: 1.55;
  padding: 4px 0 4px 14px;
  position: relative;
  color: var(--ink);
}
.section.navy .mandate-col .target-list li { color: rgba(255,255,255,0.86); }
.mandate-col .target-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--olive);
}

.exec-stack {
  background: var(--cream);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}
.section.navy .exec-stack {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.exec-stack .demand-row {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  margin-bottom: 14px;
}
.exec-stack .demand-tile {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 8px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--navy);
}
.section.navy .exec-stack .demand-tile {
  background: var(--navy);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.exec-stack .arrow-down { color: var(--muted); margin: 4px 0; }
.exec-stack .row-bar {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.section.navy .exec-stack .row-bar {
  background: var(--navy);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.exec-stack .bottleneck {
  background: #b14938;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px;
  border-radius: 4px;
  margin: 8px 0;
}
.exec-stack .own-layer {
  border: 2px solid var(--olive);
  border-radius: 4px;
  padding: 12px;
  background: #fff;
}
.section.navy .exec-stack .own-layer { background: rgba(0,0,0,0.18); }
.exec-stack .own-layer .own-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 6px;
}
.exec-stack .own-layer .own-list {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.section.navy .exec-stack .own-layer .own-list { color: #fff; }

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 18px 0;
}
.focus-tile {
  background: #fff;
  border-left: 3px solid var(--olive);
  padding: 14px 16px;
  border-radius: 4px;
}
.section.navy .focus-tile {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--olive-soft);
}
.focus-tile h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--olive);
  margin: 0 0 4px;
}
.section.navy .focus-tile h4 { color: var(--olive-soft); }
.focus-tile p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.section.navy .focus-tile p { color: rgba(255,255,255,0.7); }

/* WH quote block */
.wh-quote {
  background: var(--cream);
  border-left: 3px solid var(--olive);
  padding: 18px 20px;
  margin: 24px 0;
  border-radius: 4px;
}
.section.navy .wh-quote {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--olive-soft);
}
.wh-quote p {
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.55;
}
.section.navy .wh-quote p { color: rgba(255,255,255,0.92); }
.wh-quote .src {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.section.navy .wh-quote .src { color: rgba(255,255,255,0.6); }

/* Big stats row */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .big-stats { grid-template-columns: repeat(2, 1fr); } }
.big-stat {
  background: var(--cream);
  border-top: 4px solid var(--olive);
  padding: 36px 24px 32px;
}
.section.navy .big-stat {
  background: rgba(255,255,255,0.05);
  border-top-color: var(--olive-soft);
}
.big-stat .num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  color: var(--olive);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section.navy .big-stat .num { color: var(--olive-soft); }
.big-stat .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.section.navy .big-stat .label { color: rgba(255,255,255,0.86); }

/* PMT featured strip */
.featured-portco {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) { .featured-portco { grid-template-columns: 1fr; padding: 28px; } }
.featured-portco .portco-logo {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.featured-portco .portco-logo img { max-width: 100%; max-height: 80px; }
.featured-portco h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--navy);
}
.featured-portco p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

/* Thought-leadership big button */
.thought-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--olive);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  border: 1px solid var(--olive);
}
.thought-button:hover {
  background: #6f7b30;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.thought-button .pdf-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   BIO CARDS (team page)
   ============================================================ */
.bio-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) {
  .bio { grid-template-columns: 1fr; gap: 24px; }
}
.bio .bio-photo {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bio .bio-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.bio h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--navy);
}
.bio .bio-role {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 18px;
}
.bio p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}

/* ============================================================
   NEWS / THOUGHT LEADERSHIP cards on dedicated page
   ============================================================ */
.press-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.press-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.2s ease;
}
.press-item:hover { opacity: 0.7; }
@media (max-width: 720px) {
  .press-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}
.press-item .meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.press-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
  color: var(--navy);
}
.press-item .read {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  white-space: nowrap;
}

.thought-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--cream);
  border-radius: 8px;
  padding: 40px;
  align-items: center;
}
@media (max-width: 820px) { .thought-card { grid-template-columns: 1fr; padding: 28px; } }
.thought-card .meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 12px;
}
.thought-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--navy);
}
.thought-card .summary {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.6;
}
.thought-card .doc-preview {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thought-card .doc-preview::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(138,154,60,0.2), transparent 60%);
}
.thought-card .doc-preview > * { position: relative; z-index: 1; }
.thought-card .doc-preview .doc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-soft);
  font-weight: 600;
  margin-bottom: 12px;
}
.thought-card .doc-preview .doc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

/* ============================================================
   INVESTOR PORTAL — login + locked tiles
   ============================================================ */
.login-wrap {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.login-wrap h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--navy);
}
.login-wrap .login-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px;
}
.login-wrap .field { margin-bottom: 16px; }
.login-wrap label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.login-wrap input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border 0.15s ease;
}
.login-wrap input:focus {
  outline: 0;
  border-color: var(--navy);
}
.login-wrap button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.login-wrap button[type="submit"]:hover { background: var(--navy-2); }
.login-wrap .login-error {
  display: none;
  background: #fce4e0;
  color: #8a3022;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 16px;
}
.login-wrap .login-error.show { display: block; }
.login-wrap .help-row {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.locked-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 48px auto 0;
}
@media (max-width: 720px) { .locked-grid { grid-template-columns: 1fr; } }
.locked-tile {
  background: var(--navy);
  border-radius: 8px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.locked-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(138,154,60,0.2), transparent 60%);
}
.locked-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.locked-tile .tile-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.locked-tile .tile-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-soft);
  font-weight: 600;
}
.locked-tile h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
}
.locked-tile .lock-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 16px;
  z-index: 2;
}
.locked-tile .meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* PMT-specific small feature row */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .feature-row { grid-template-columns: 1fr; } }
.feature-row .feature h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 8px;
}
.feature-row .feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   STERLING-STYLE HERO OVERLAY — tech-grid lines on photo
   ============================================================ */
.hero .hero-tech-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    /* Vertical/horizontal grid of fine cyan lines — circuit feel */
    linear-gradient(to right, rgba(140,210,235,0.20) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140,210,235,0.15) 1px, transparent 1px),
    /* Sparse glowing nodes */
    radial-gradient(circle at 22% 68%, rgba(140,210,235,0.45) 1.5px, transparent 3px),
    radial-gradient(circle at 72% 32%, rgba(140,210,235,0.45) 1.5px, transparent 3px),
    radial-gradient(circle at 12% 30%, rgba(140,210,235,0.35) 1px, transparent 2.5px),
    radial-gradient(circle at 88% 80%, rgba(140,210,235,0.35) 1px, transparent 2.5px);
  background-size: 70px 70px, 70px 70px, 220px 220px, 280px 280px, 340px 340px, 380px 380px;
  mix-blend-mode: screen;
}
/* Diagonal arrow / signal sweep — adds Sterling-like dynamism */
.hero .hero-tech-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, transparent 38%, rgba(140,210,235,0.08) 50%, transparent 62%);
  mix-blend-mode: screen;
}

.hero-title-block {
  background: rgba(42,58,42,0.88);
  border-left: 4px solid var(--gold);
  padding: 32px 40px 36px;
  display: inline-block;
  max-width: 660px;
  position: relative;
  z-index: 4;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-title-block .hero-eyebrow-line {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 16px;
}
.hero-title-block h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.05;
}
.hero-title-block h1 .accent { color: var(--gold); }

/* GIP-style centered hero headline — replaces the Sterling title block */
.hero-headline-block {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  padding: 0 32px;
  text-align: center;
}
.hero-headline-block .hero-eyebrow-line {
  width: 64px; height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.hero-headline-block .hero-eyebrow-text {
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 28px;
  display: inline-block;
  padding: 10px 22px;
  background: rgba(13, 27, 42, 0.55);
  border: 1px solid rgba(201, 161, 58, 0.6);
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-headline-block h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: #fff;
}
.hero-headline-block h1 em {
  font-style: italic;
  color: var(--gold);
}

/* ============================================================
   Hero — interactive "Investing in [...]" rotating word
   ============================================================ */
.hero-headline-block h1.hero-title-rotator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1.04;
  margin: 0 0 28px;
}
.hero-headline-block h1.hero-title-rotator .hero-static {
  display: block;
  color: #fff;
  font-style: normal;
  letter-spacing: -0.02em;
}
.hero-headline-block h1.hero-title-rotator .hero-rotator {
  position: relative;
  display: inline-block;
  min-height: 1.1em;
  width: 100%;
  text-align: center;
}
.hero-headline-block h1.hero-title-rotator .hero-word {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  white-space: nowrap;
}
.hero-headline-block h1.hero-title-rotator .hero-word.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 720px) {
  .hero-headline-block h1.hero-title-rotator .hero-word { white-space: normal; }
}

/* Dot pager — lets the user click any of the rotating words */
.hero-rotator-dots {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  position: relative;
  z-index: 5;
}
.hero-rotator-dots .hr-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.22);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  appearance: none;
}
.hero-rotator-dots .hr-dot:hover {
  background: rgba(255,255,255,0.55);
}
.hero-rotator-dots .hr-dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
}
.hero-headline-block .hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin: 0 auto;
}

/* Hero sub — spread variant: full-width, smaller, flowing across the top.
   Readability-tuned: stronger text color, subtle dark scrim + text-shadow so the
   copy holds up against busy hero photography. */
.hero-headline-block .hero-sub.hero-sub-spread {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.96);
  max-width: 1100px;
  margin: 36px auto 0;
  letter-spacing: 0.01em;
  padding: 18px 28px;
  background: rgba(13, 27, 42, 0.55);
  backdrop-filter: blur(6px) saturate(1.05);
  -webkit-backdrop-filter: blur(6px) saturate(1.05);
  border-radius: 4px;
  border-top: 1px solid rgba(201, 161, 58, 0.25);
  border-bottom: 1px solid rgba(201, 161, 58, 0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  font-weight: 400;
}
@media (max-width: 720px) {
  .hero-headline-block .hero-sub.hero-sub-spread {
    font-size: 13px;
    padding: 14px 20px;
  }
}

/* "The Portfolio" big titlebar over the dark pillars */
.gip-pillars-titlebar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 0;
}
@media (max-width: 720px) { .gip-pillars-titlebar { padding: 56px 24px 0; } }
.gip-pillars-bigtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px;
}

/* Southeast detail — old narrative restored beneath state tiles + map */
.se-detail {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.se-detail-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.16;
  color: var(--navy);
  margin: 0 0 18px;
  max-width: 28ch;
}

/* Team teaser + horizontal scroll of every member */
.team-teaser-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .team-teaser-grid { grid-template-columns: 1fr; gap: 36px; } }
.team-teaser-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 18px;
}
.team-scroll-wrap {
  position: relative;
}
.team-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 8px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.team-scroll::-webkit-scrollbar { display: none; }
.team-member-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.team-member-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(13,27,42,0.10);
}
.tmc-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #e9e5d8 0%, #ddd5c4 100%);
  position: relative;
  overflow: hidden;
}
.tmc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tmc-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tmc-photo.placeholder::before {
  content: "Photo coming";
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,27,42,0.45);
  font-weight: 700;
}
.tmc-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--navy);
  padding: 14px 16px 4px;
}
.tmc-role {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 0 16px 16px;
  line-height: 1.4;
}
.team-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(13,27,42,0.10);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.team-scroll-btn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.team-scroll-btn.prev { left: -16px; }
.team-scroll-btn.next { right: -16px; }
@media (max-width: 720px) {
  .team-scroll-btn { display: none; }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: scrollHint 2.4s ease-in-out infinite;
}
.hero-scroll-indicator::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* Three-pillar tile grid below the hero — GIP-style "What we do" */
.gip-pillars {
  background: var(--navy-deep);
  color: #fff;
  border-top: 1px solid var(--line-dark);
}
.gip-pillars-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 32px;
}
@media (max-width: 720px) { .gip-pillars-head { padding: 56px 24px 24px; } }
.gip-pillars-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.gip-pillars-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  max-width: 22ch;
}
.gip-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 820px) { .gip-pillars-grid { grid-template-columns: 1fr; } }
.gip-pillar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 48px;
  border-right: 1px solid var(--line-dark);
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 360px;
  transition: background 0.3s ease;
  overflow: hidden;
}
.gip-pillar:last-child { border-right: 0; }
@media (max-width: 820px) {
  .gip-pillar { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .gip-pillar:last-child { border-bottom: 0; }
}
.gip-pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(201,161,58,0.12));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gip-pillar:hover {
  background: rgba(255,255,255,0.03);
}
.gip-pillar:hover::after { opacity: 1; }
.gip-pillar .gp-num {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}
.gip-pillar .gp-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 18px;
}
.gip-pillar .gp-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  margin: 0 0 32px;
}
.gip-pillar .gp-cta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.gip-pillar .gp-cta .arrow { transition: transform 0.3s ease; }
.gip-pillar:hover .gp-cta .arrow { transform: translateX(4px); }

/* Sterling-style portfolio links inside the hero title block — clean text-only */
.hero-portfolio-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-portfolio-links a {
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.hero-portfolio-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.hero-portfolio-links .sep {
  color: rgba(255,255,255,0.32);
  font-weight: 400;
}

/* ============================================================
   OUR THESIS — full section
   ============================================================ */
.thesis-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .thesis-grid { grid-template-columns: 1fr; gap: 40px; }
}

.thesis-text {
  background: var(--paper);
  border-left: 4px solid var(--olive);
  border-radius: 4px;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.thesis-text h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.thesis-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.thesis-text p em {
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
}
.thesis-text .thesis-callout {
  font-weight: 700;
  color: var(--navy);
  border-left: 3px solid var(--olive);
  padding-left: 14px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.55;
}

.thesis-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 540px) { .thesis-stats-row { grid-template-columns: 1fr; } }
.thesis-stat {
  background: var(--cream);
  border-radius: 4px;
  padding: 22px 18px;
  border-top: 3px solid var(--olive);
}
.thesis-stat:nth-child(2) { border-top-color: var(--olive-soft); }
.thesis-stat:nth-child(3) { border-top-color: var(--gold); }
.thesis-stat .num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 36px;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.thesis-stat:nth-child(3) .num { color: var(--gold); }
.thesis-stat .label {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 500;
}

/* Market quote cards (Satya / Dan Ives) */
.market-quote {
  background: var(--paper);
  border-radius: 4px;
  padding: 0;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.market-quote .mq-head {
  background: var(--olive);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
}
.market-quote .mq-body {
  padding: 20px 22px;
}
.market-quote .mq-source-logo {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.market-quote blockquote {
  margin: 0 0 10px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gold);
  font-weight: 500;
}
.market-quote .mq-attribution {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

/* Bar chart — Infrastructure Spend by Sector */
.bar-chart {
  margin-top: 24px;
  padding: 24px;
  background: var(--cream-2);
  border-radius: 4px;
}
.bar-chart .chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.bar-chart .chart-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.bar-chart .bar-row {
  display: grid;
  grid-template-columns: 130px 1fr 60px;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.bar-chart .bar-label {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.bar-chart .bar-track {
  background: rgba(125,139,110,0.12);
  border-radius: 2px;
  height: 22px;
  overflow: hidden;
}
.bar-chart .bar-fill {
  height: 100%;
  background: var(--olive);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.bar-chart .bar-row:nth-child(odd) .bar-fill { background: var(--olive); }
.bar-chart .bar-row:nth-child(even) .bar-fill { background: var(--olive-soft); }
.bar-chart .bar-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.thesis-source {
  margin-top: 32px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ============================================================
   WHITE HOUSE DPA BANNER (top of homepage, below hero)
   ============================================================ */
.dpa-banner {
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  border-top: 3px solid var(--gold);
  padding: 18px 0;
}
.dpa-banner .dpa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dpa-banner .dpa-text {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  line-height: 1.4;
}
.dpa-banner .dpa-pill {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.dpa-banner .dpa-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--olive-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.dpa-banner .dpa-link:hover {
  color: #fff;
  border-color: var(--gold);
}

/* ============================================================
   SOUTHEAST FOCUS — interactive SVG map
   ============================================================ */
.southeast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .southeast-grid { grid-template-columns: 1fr; } }

.southeast-map {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.southeast-map .region-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.southeast-map .map-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 12px;
}
.southeast-map .map-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--navy-deep);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, -110%);
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}
.southeast-map .map-tooltip.show { opacity: 1; }
.southeast-map .map-tooltip strong {
  color: var(--olive-soft);
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.southeast-map .map-title {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
}

.southeast-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 16px;
}
.southeast-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 18px;
}
.southeast-text .grid-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.southeast-text .grid-bullets li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}
.southeast-text .grid-bullets li:first-child { border-top: 0; }
.southeast-text .grid-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 16px; height: 3px;
  background: var(--olive);
}

/* ============================================================
   STRATEGIC INVESTMENT CRITERIA
   ============================================================ */
.criteria-section { background: var(--cream-2); }

.criteria-section {
  background: var(--cream);
}
.criteria-primary {
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.primary-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 48px;
}
.primary-bar {
  position: relative;
  padding: 22px 28px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
}
.primary-bar::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
}
.primary-bar:nth-child(1) { background: linear-gradient(90deg, rgba(58,77,58,0.10), rgba(255,255,255,0.6) 60%); }
.primary-bar:nth-child(1)::before { background: var(--navy); }
.primary-bar:nth-child(1) { color: var(--navy); }

.primary-bar:nth-child(2) { background: linear-gradient(90deg, rgba(74,94,66,0.10), rgba(255,255,255,0.6) 60%); }
.primary-bar:nth-child(2)::before { background: var(--navy-2); }
.primary-bar:nth-child(2) { color: var(--navy-2); }

.primary-bar:nth-child(3) { background: linear-gradient(90deg, rgba(125,139,110,0.12), rgba(255,255,255,0.6) 60%); }
.primary-bar:nth-child(3)::before { background: var(--olive); }
.primary-bar:nth-child(3) { color: var(--olive); }

.primary-bar:nth-child(4) { background: linear-gradient(90deg, rgba(184,168,71,0.14), rgba(255,255,255,0.6) 60%); }
.primary-bar:nth-child(4)::before { background: var(--gold); }
.primary-bar:nth-child(4) { color: var(--gold); }

.criteria-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .criteria-secondary-grid { grid-template-columns: 1fr; } }

.criteria-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--olive);
  border-radius: 4px;
  padding: 20px 22px;
}
.criteria-card:nth-child(2) { border-top-color: var(--navy); }
.criteria-card:nth-child(3) { border-top-color: var(--olive-soft); }
.criteria-card:nth-child(4) { border-top-color: var(--gold); }
.criteria-card:nth-child(5) { border-top-color: var(--olive); }
.criteria-card:nth-child(6) { border-top-color: var(--navy-2); }
.criteria-card h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.criteria-card p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   SECTORS WE ARE TARGETING — 9 verticals
   ============================================================ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 820px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sectors-grid { grid-template-columns: 1fr; } }

.sector-tile {
  background: var(--cream);
  border-left: 4px solid var(--olive);
  border-radius: 4px;
  padding: 22px 22px 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.3;
  transition: all 0.2s ease;
  cursor: default;
}
.sector-tile:hover {
  transform: translateX(2px);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.sector-tile .sector-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--olive);
  font-size: 18px;
}
/* Vary the left border colors across the 9 tiles */
.sector-tile:nth-child(1) { border-left-color: var(--navy); }
.sector-tile:nth-child(2) { border-left-color: var(--gold); }
.sector-tile:nth-child(3) { border-left-color: var(--navy-2); }
.sector-tile:nth-child(4) { border-left-color: var(--olive); }
.sector-tile:nth-child(5) { border-left-color: var(--olive-soft); }
.sector-tile:nth-child(6) { border-left-color: var(--olive); }
.sector-tile:nth-child(7) { border-left-color: var(--gold); }
.sector-tile:nth-child(8) { border-left-color: var(--olive-soft); }
.sector-tile:nth-child(9) { border-left-color: var(--navy); }

/* ============================================================
   4TH INDUSTRIAL REVOLUTION — animated stepped timeline
   ============================================================ */
.revolution-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
  margin: 48px 0 32px;
}
@media (max-width: 720px) { .revolution-timeline { grid-template-columns: repeat(2, 1fr); } }

.rev-box {
  position: relative;
  border-radius: 4px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.rev-box.in-view {
  opacity: 1;
  transform: translateY(0);
}
.rev-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.rev-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}
.rev-box .rev-icon {
  font-size: 22px;
  opacity: 0.85;
  margin-bottom: 12px;
}
.rev-box .rev-num {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 0.85;
}
.rev-box .rev-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}
.rev-box .rev-sub {
  font-size: 12px;
  opacity: 0.8;
  font-style: italic;
  line-height: 1.4;
}
.rev-box:nth-child(1) {
  background: var(--gold);
  height: 180px;
  transition-delay: 0.05s;
}
.rev-box:nth-child(2) {
  background: var(--olive-soft);
  height: 220px;
  transition-delay: 0.18s;
}
.rev-box:nth-child(3) {
  background: var(--olive);
  height: 260px;
  transition-delay: 0.32s;
}
.rev-box:nth-child(4) {
  background: var(--navy);
  height: 300px;
  transition-delay: 0.48s;
  position: relative;
}
.rev-box:nth-child(4)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(184,168,71,0.25), transparent 60%),
    radial-gradient(80% 80% at 0% 100%, rgba(168,178,125,0.20), transparent 60%);
  animation: gentlePulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gentlePulse {
  0%,100% { opacity: 0.6; }
  50%     { opacity: 1; }
}

.rev-axis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 720px) { .rev-axis { grid-template-columns: repeat(2, 1fr); } }
.rev-axis .axis-tick {
  text-align: center;
  position: relative;
  padding-top: 18px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.rev-axis .axis-tick::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--olive);
  transform: translate(-50%, -50%);
}
.rev-axis .axis-tick:last-child::before {
  background: var(--navy);
  width: 13px; height: 13px;
}
.rev-axis .axis-tick:last-child {
  color: var(--navy);
  font-weight: 700;
}

/* ============================================================
   POWER PAGE — automation photo grid
   ============================================================ */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 720px) { .photo-grid-3 { grid-template-columns: 1fr; } }

.photo-tile {
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
}
.photo-tile.tall { aspect-ratio: 3/4; }
.photo-tile .photo-caption {
  position: relative;
  z-index: 2;
  padding: 16px 20px;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(42,58,42,0.85) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}
.photo-tile .photo-placeholder {
  /* Hidden by default — photos render directly. To debug missing images, set display: flex */
  display: none;
}

/* ============================================================
   FIBER STATS BARE — large numbers, no background image
   ============================================================ */
.fiber-stats-bare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--olive);
}
@media (max-width: 980px) { .fiber-stats-bare { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fiber-stats-bare { grid-template-columns: 1fr; } }
.fiber-stat-bare {
  text-align: left;
}
.fiber-stat-bare .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--olive);
}
.fiber-stat-bare:nth-child(1) .num { color: var(--gold); }
.fiber-stat-bare:nth-child(2) .num { color: var(--olive); }
.fiber-stat-bare:nth-child(3) .num { color: var(--navy); }
.fiber-stat-bare:nth-child(4) .num { color: var(--olive-soft); }
.fiber-stat-bare .label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  max-width: 32ch;
}

/* ============================================================
   FIBER STATS OVERLAY (legacy — kept for back-compat)
   ============================================================ */
.fiber-overlay {
  position: relative;
  background: var(--navy-deep);
  background-image: url('site/fiber-construction.jpg'), url('https://images.unsplash.com/photo-1606918801925-e2c914c4b503?w=2400&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  padding: 96px 48px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fiber-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,40,0.85) 0%, rgba(42,58,42,0.78) 100%);
}
.fiber-overlay .fiber-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 920px) { .fiber-overlay .fiber-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fiber-overlay .fiber-stats { grid-template-columns: 1fr; } }
.fiber-overlay .fiber-stat .num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.fiber-overlay .fiber-stat:nth-child(2) .num { color: var(--olive-soft); }
.fiber-overlay .fiber-stat:nth-child(3) .num { color: #fff; }
.fiber-overlay .fiber-stat:nth-child(4) .num { color: var(--olive-soft); }
.fiber-overlay .fiber-stat .label {
  font-size: 14px;
  color: rgba(255,255,255,0.86);
  line-height: 1.45;
  font-weight: 500;
}

/* ============================================================
   PORTFOLIO COMPANY (Water section — PMT)
   ============================================================ */
.portco-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) { .portco-card { padding: 28px; } }

.portco-header {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .portco-header { grid-template-columns: 1fr; } }
.portco-header .portco-logo-frame {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.portco-header .portco-logo-frame img { max-width: 100%; max-height: 80px; }
.portco-header h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.portco-header .portco-meta {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.portco-header .portco-meta a {
  color: var(--olive);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border 0.15s ease;
}
.portco-header .portco-meta a:hover { border-bottom-color: var(--olive); }

.portco-bio {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 24px;
}

.portco-fit {
  background: var(--cream);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.portco-fit h4 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  margin: 0 0 14px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.portco-fit ul {
  list-style: none;
  padding: 0; margin: 0;
}
.portco-fit ul li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 12px;
  padding-left: 0;
}
.portco-fit ul li:last-child { margin-bottom: 0; }
.portco-fit ul li strong {
  color: var(--navy);
  font-weight: 700;
}

/* PMT areas of focus — table-style rows */
.areas-of-focus {
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.areas-of-focus h4 {
  background: var(--olive);
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px;
  margin: 0;
  border-radius: 4px 4px 0 0;
}
.areas-of-focus .area-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 14px 16px;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
@media (max-width: 720px) { .areas-of-focus .area-row { grid-template-columns: 1fr; gap: 4px; padding: 14px; } }
.areas-of-focus .area-row:last-child { border-bottom: 0; }
.areas-of-focus .area-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.areas-of-focus .area-desc {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

/* PMT exec leadership row */
.exec-team {
  margin-top: 32px;
}
.exec-team h4 {
  background: var(--cream);
  border-top: 1px solid var(--olive);
  border-bottom: 1px solid var(--olive);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  padding: 10px;
  margin: 0 0 24px;
}
.exec-team .exec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .exec-team .exec-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .exec-team .exec-row { grid-template-columns: 1fr; } }
.exec-team .exec {
  text-align: center;
}
.exec-team .exec .photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
}
.exec-team .exec .photo img { width: 100%; height: 100%; object-fit: cover; }
.exec-team .exec h5 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin: 0 0 4px;
}
.exec-team .exec .title {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* "Coming soon" portfolio card — improved design */
.portco-coming {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.portco-coming:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive);
}
.portco-coming::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--gold) 100%);
}
.portco-coming .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(125,139,110,0.12);
  color: var(--olive);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(125,139,110,0.3);
}
.portco-coming .pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.portco-coming .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.portco-coming .meta-row .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.portco-coming .meta-row .meta-item::before {
  content: "•";
  color: var(--olive);
  margin-right: 2px;
}
.portco-coming .meta-row .meta-item:first-child::before { display: none; }
.portco-coming h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 14px;
}
.portco-coming p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.portco-coming .reveal-soon {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Target contractor categories (Power page "What We're Targeting") */
.target-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .target-cards { grid-template-columns: 1fr; } }

.target-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.target-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--olive) 100%);
}
.target-card:nth-child(2)::before { background: linear-gradient(180deg, var(--olive) 0%, var(--olive-soft) 100%); }
.target-card:nth-child(3)::before { background: linear-gradient(180deg, var(--olive-soft) 0%, var(--gold) 100%); }
.target-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive);
}
.target-card .target-num {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--olive);
  margin-bottom: 18px;
  font-weight: 500;
  font-style: italic;
}
.target-card:nth-child(2) .target-num { color: var(--olive-soft); }
.target-card:nth-child(3) .target-num { color: var(--gold); }
.target-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.target-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   PORTFOLIO OVERVIEW — 2-up summary cards (Grid Infrastructure)
   ============================================================ */
.portco-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 820px) { .portco-overview { grid-template-columns: 1fr; } }

.portco-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.portco-summary::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.portco-summary.acquired::before { background: var(--navy); }
.portco-summary.coming::before { background: linear-gradient(90deg, var(--olive) 0%, var(--gold) 100%); }
.portco-summary.acquired:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.portco-summary.coming { background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%); }

.portco-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(58,77,58,0.08);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(58,77,58,0.2);
  margin-bottom: 24px;
}
.portco-summary-pill.coming-pill {
  background: rgba(125,139,110,0.12);
  color: var(--olive);
  border-color: rgba(125,139,110,0.3);
}
.portco-summary-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy);
}
.portco-summary-pill.coming-pill .dot {
  background: var(--olive);
  animation: pulseDot 2s ease-in-out infinite;
}

.portco-summary-logo {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  margin-bottom: 22px;
}
.portco-summary-logo img {
  max-height: 80px;
  max-width: 75%;
  object-fit: contain;
}
.portco-summary-logo.placeholder span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.portco-summary h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 14px;
}
.portco-summary p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 24px;
  flex: 1;
}

.portco-summary-cta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.portco-summary.coming .portco-summary-cta { color: var(--olive); }
.portco-summary .arrow {
  transition: transform 0.25s ease;
}
.portco-summary:hover .arrow { transform: translateY(2px); }

/* Anchor acquisition tag (sits above PMT card) */
.portfolio-anchor {
  margin-bottom: -1px;
}
.portfolio-anchor-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin-bottom: 12px;
}
.anchor-pill {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px 4px 0 0;
}
.anchor-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

/* Divider between anchor and acquisitions in process */
.anchor-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 56px 0 28px;
}
.anchor-divider::before,
.anchor-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.anchor-divider span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
}

/* Beacon TN inline link next to Grant on team page */
.bio-extra {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--olive);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border 0.2s ease, color 0.2s ease;
}
.bio-extra:hover { color: var(--navy); border-color: var(--olive); }
.bio-extra .ext { font-size: 11px; opacity: 0.7; }

/* ============================================================
   "ANSWERING THE CALL" — institutional quote section
   ============================================================ */
.call-section {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.call-section .container { position: relative; z-index: 1; }
.call-section h2 {
  color: #fff;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 16px;
  display: inline-block;
  margin-bottom: 48px;
  max-width: none;
}
.call-section .eyebrow { color: var(--olive-soft); }

.call-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}
@media (max-width: 820px) { .call-quotes { grid-template-columns: 1fr; gap: 36px; } }

.call-quote {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: #fff;
  font-style: italic;
}
.call-quote.right { grid-column: 2; }
@media (max-width: 820px) { .call-quote.right { grid-column: 1; } }
.call-quote.olive {
  color: var(--olive-soft);
}
.call-quote .attribution {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  margin-top: 12px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.86);
}
.call-quote.right .attribution {
  font-style: italic;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-top: 18px;
  line-height: 1.25;
}
.call-quote.olive .attribution {
  color: var(--olive-soft);
}

/* ============================================================
   ADVISORS row (team page)
   ============================================================ */
.advisors-section {
  background: var(--cream);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px dashed var(--line);
}
.advisors-section h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  text-align: center;
  margin: 0 0 28px;
}
.advisors-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .advisors-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .advisors-row { grid-template-columns: 1fr; } }
.advisor {
  text-align: center;
}
.advisor .photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  filter: grayscale(0.2);
}
.advisor .photo img { width: 100%; height: 100%; object-fit: cover; }
.advisor h5 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin: 0 0 4px;
}
.advisor .role {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.advisor .yrs {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   PMT founder quote callouts
   ============================================================ */
.founder-quote {
  background: var(--navy-deep);
  color: #fff;
  padding: 28px 32px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  margin: 32px 0;
  position: relative;
}
.founder-quote::before {
  content: """;
  position: absolute;
  left: 24px;
  top: -8px;
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.founder-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--olive-soft);
  margin: 12px 0 0;
  padding-left: 32px;
}
.founder-quote .quote-attr {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  letter-spacing: 0.02em;
  padding-left: 32px;
}
.founder-quote .quote-attr small {
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  display: block;
  font-size: 12px;
}

/* Lime-yellow alt variation (matches the second Phil quote) */
.founder-quote.lime {
  background: #c0d62a;
  color: #16203a;
  border-left-color: var(--navy-deep);
}
.founder-quote.lime::before { color: var(--navy-deep); }
.founder-quote.lime p { color: var(--navy-deep); font-weight: 700; font-style: normal; }
.founder-quote.lime .quote-attr { color: var(--navy-deep); }
.founder-quote.lime .quote-attr small { color: rgba(22,32,58,0.7); }

/* ============================================================
   FIBER PAGE EXPANSION (DATA page additions)
   ============================================================ */

/* "Enabling NextGen Data Connectivity" headline block */
.fiber-headline {
  background: var(--cream-2);
  padding: 64px 48px;
  border-radius: 6px;
  text-align: center;
  margin: 0 0 32px;
}
.fiber-headline h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: none;
}
.fiber-headline h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #2c5a9e;
}
.fiber-headline .sub {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

/* Why Fiber — Why Now */
.fiber-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 920px) { .fiber-why-grid { grid-template-columns: 1fr; } }

.fiber-why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--olive);
  border-radius: 4px;
  padding: 32px 36px;
}
.fiber-why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 16px;
}
.fiber-why-card .lead {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 14px;
}
.fiber-why-card .lead.alt {
  font-weight: 700;
  color: var(--navy);
}
.fiber-why-card ul.diamond-list {
  list-style: none;
  padding: 0; margin: 18px 0 0;
}
.fiber-why-card ul.diamond-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.fiber-why-card ul.diamond-list li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 14px;
  color: var(--navy);
  font-size: 14px;
}

.fiber-why-collage {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  border-radius: 4px;
  overflow: hidden;
  min-height: 480px;
}
.fiber-why-collage .photo-tile {
  aspect-ratio: auto;
  height: 100%;
  border: 0;
  border-radius: 0;
}

/* Fiber OS of the Modern Grid — 6-node grid */
.fiber-os {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 48px 48px 32px;
}
@media (max-width: 720px) { .fiber-os { padding: 32px 24px; } }
.fiber-os h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 36px);
  color: var(--navy);
  margin: 0 0 8px;
  text-align: center;
  border-bottom: 2px solid var(--olive);
  padding-bottom: 14px;
  display: block;
}
.fiber-os .sub {
  text-align: center;
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 36px;
}
.fiber-os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
}
@media (max-width: 820px) { .fiber-os-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fiber-os-grid { grid-template-columns: 1fr; } }
.fiber-node {
  text-align: center;
}
.fiber-node h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 6px;
}
.fiber-node p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
  min-height: 56px;
}
.fiber-node .icon {
  font-size: 36px;
  color: var(--ink);
  display: inline-block;
  height: 48px;
}

/* Five Trends list — connected by diamond markers */
.five-trends {
  position: relative;
  padding: 8px 0;
}
.five-trends .trend-item {
  position: relative;
  padding: 18px 0;
  border-top: 1px solid transparent;
}
.five-trends .trend-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  right: 60%;
  height: 1px;
  background: var(--olive);
}
.five-trends .trend-item:not(:first-child)::after {
  content: "◆";
  position: absolute;
  top: -10px;
  left: 0;
  color: var(--navy);
  font-size: 16px;
}
.five-trends .trend-item p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  padding-left: 4px;
}
.five-trends .trend-item p strong {
  color: var(--ink);
  font-weight: 700;
}
.five-trends .trend-item p em {
  font-style: italic;
  color: var(--navy);
}

/* ============================================================
   Highway-fiber atmospheric background section
   ============================================================ */
.highway-bg {
  position: relative;
  background: var(--navy-deep);
  background-image: url('site/highway-fiber.jpg'), url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=2400&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  padding: 120px 48px;
  text-align: center;
}
.highway-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,58,42,0.65) 0%, rgba(15,20,40,0.82) 100%);
}
.highway-bg > * { position: relative; z-index: 1; }
.highway-bg .eyebrow { color: var(--olive-soft); }
.highway-bg h2 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0 auto 14px;
  max-width: 22ch;
  line-height: 1.15;
}
.highway-bg p {
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.55;
  max-width: 62ch;
  margin: 0 auto;
}

/* ============================================================
   Vimeo video block on homepage (preview tile + open modal)
   ============================================================ */
.video-preview-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .video-preview-section { grid-template-columns: 1fr; } }

.video-preview {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-deep);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-image: url('site/video-poster.jpg');
  background-size: cover;
  background-position: center;
}
.video-preview:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.video-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,40,0.32), rgba(58,77,58,0.24));
}
.video-preview .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-preview .play-btn::before {
  content: "";
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  position: absolute;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform 0.25s ease;
}
.video-preview:hover .play-btn::before { transform: scale(1.06); }
.video-preview .play-btn::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 0; height: 0;
  border-left: 24px solid var(--navy);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-preview .duration {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.video-preview-text h2 { max-width: 24ch; }

/* Inline Vimeo embed (no modal) */
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow-md);
  max-width: 1100px;
  margin: 0 auto;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-preview-text .play-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.video-preview-text .play-cta:hover { background: var(--navy-2); }

/* ============================================================
   Tagline strip (legacy-owned…)
   ============================================================ */
.tagline-strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.tagline-strip p {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0 auto;
  max-width: 36ch;
}
.tagline-strip p .accent {
  font-style: normal;
  font-weight: 600;
  color: var(--olive);
}

/* "Coming soon" portfolio grid (responsive 3-up) */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .coming-soon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .coming-soon-grid { grid-template-columns: 1fr; } }

/* ============================================================
   THREE CORE US INFRASTRUCTURE GRIDS — thesis setup
   ============================================================ */
.three-grids {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.three-grids .grids-head {
  text-align: center;
  padding: 36px 32px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
}
.three-grids .grids-head h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  color: #fff;
  margin: 0 auto 6px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  max-width: none;
}
.three-grids .grids-head .grids-sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--olive-soft);
  margin: 0;
  letter-spacing: -0.005em;
}

.three-grids .grids-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 820px) { .three-grids .grids-row { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURED NEWS & PRESS RELEASES (GIP-style homepage block)
   ============================================================ */
.featured-news {
  background: #f4f4f1;        /* warm off-white, like GIP */
  padding: 96px 0;
}
.featured-news h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 18px;
}
.featured-news .view-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.featured-news .view-all .arrow-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: #c9f25c;        /* GIP-style lime */
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.featured-news .view-all .arrow-chip span {
  transform: rotate(-45deg);
  display: inline-block;
}
.featured-news .view-all:hover .arrow-chip {
  transform: rotate(45deg) translate(2px, -2px);
}
.fn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .fn-grid { grid-template-columns: 1fr; } }
.fn-card {
  background: #fff;
  border: 1px solid #d8d8d2;
  padding: 40px 36px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.fn-card:hover {
  border-color: var(--navy);
  box-shadow: 0 12px 28px rgba(13,27,42,0.08);
}
.fn-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: #1c4a8a;             /* GIP-style heading blue */
  margin: 0 0 24px;
}
.fn-card .fn-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  border-top: 0;
  margin-top: auto;
}
.fn-card .fn-meta strong {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   PORTFOLIO PAGE — GIP-style hero, filters, card grid
   ============================================================ */
.portfolio-hero {
  background: linear-gradient(180deg, #1f4f8a 0%, #143962 100%);
  padding: 100px 0 130px;
  position: relative;
  overflow: hidden;
}
.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 90% 30%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(0,0,0,0.25), transparent 60%);
  pointer-events: none;
}
.portfolio-hero .container { position: relative; z-index: 1; }
.portfolio-hero .ph-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 28px;
}
.portfolio-hero h1 {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  padding: 12px 28px 14px;
  border: 1px solid rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.portfolio-hero h1 .ph-thin { font-weight: 300; }

/* Filters row */
.portfolio-filters {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.portfolio-filters select,
.portfolio-filters input[type="text"] {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
  font-family: var(--sans);
  min-width: 200px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><polygon points='3,5 11,5 7,10' fill='%23c9f25c'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
}
.portfolio-filters select { padding-right: 42px; }
.portfolio-filters input[type="text"] {
  background-image: none;
  min-width: 240px;
}
.portfolio-filters input::placeholder { color: rgba(255,255,255,0.6); }
.portfolio-filters select option {
  background: #143962;
  color: #fff;
}
.portfolio-filters .pf-search-btn {
  background: #c9f25c;
  border: 0;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  cursor: pointer;
  transition: background 0.2s ease;
}
.portfolio-filters .pf-search-btn:hover { background: #b8e545; }
.portfolio-filters .pf-reset {
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* Portfolio card grid */
.portfolio-section {
  background: #f4f4f1;
  padding: 72px 0 96px;       /* clean top spacing instead of overlap */
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #c9c9c2;
  background: #fff;
}
@media (max-width: 980px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portco-card {
  background: #fff;
  padding: 56px 40px 64px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #d8d8d2;
  border-bottom: 1px solid #d8d8d2;
  min-height: 320px;
  position: relative;
  transition: background 0.2s ease;
}
.portco-card:hover { background: #fafaf6; }
.portco-card .pc-logo {
  width: 200px;
  height: 80px;
  background: #fff;
  border: 1px solid #e5e5df;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  padding: 12px;
}
.portco-card .pc-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.portco-card .pc-logo.placeholder {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9a8e;
  font-weight: 700;
  background: repeating-linear-gradient(45deg, #f7f7f0, #f7f7f0 6px, #fff 6px, #fff 12px);
}
.portco-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #1c4a8a;
  margin: 0;
}
.portco-card .pc-status {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.portco-card.acquired .pc-status { color: #14a34c; }
.portco-card .pc-meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
/* When a card has no logo well, center the content vertically so the card
   reads cleanly without leaving a tall empty band at the top. */
.portco-card.no-logo {
  justify-content: center;
}

/* ============================================================
   POWER PAGE — full-bleed electrical-infrastructure hero
   ============================================================ */
.page-header.power-hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.page-header.power-hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.power-hero-bg {
  position: absolute; inset: 0;
  /* High-voltage transmission tower / substation at golden hour */
  background-image: url('site/power-hero.jpg'), url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: contrast(1.1) saturate(0.85);
}
.power-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.78) 65%, rgba(13,27,42,0.92) 100%),
    radial-gradient(900px 500px at 22% 30%, rgba(201,161,58,0.18), transparent 60%);
  z-index: 1;
}

/* ============================================================
   POWER PAGE — three target operator cards with worker photos
   ============================================================ */
.target-cards-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .target-cards-photo { grid-template-columns: 1fr; } }
.target-cards-photo .target-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  box-shadow: 0 1px 0 rgba(13,27,42,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.target-cards-photo .target-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13,27,42,0.08);
}
.target-cards-photo .target-num { display: none; }
.target-cards-photo .target-card::before { display: none; }

/* ============================================================
   DATA PAGE — Fiber-optic portfolio section with photo backdrop
   ============================================================ */
.data-portfolio-section {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.data-portfolio-bg {
  position: absolute; inset: 0;
  /* Fiber-optic / network cable installation backdrop */
  background-image:
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: contrast(1.05) saturate(0.7);
  opacity: 0.45;
}
.data-portfolio-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.78) 0%, rgba(13,27,42,0.86) 60%, rgba(6,17,25,0.94) 100%),
    radial-gradient(900px 500px at 30% 20%, rgba(201,161,58,0.16), transparent 60%),
    radial-gradient(800px 460px at 80% 90%, rgba(201,161,58,0.10), transparent 60%);
  z-index: 1;
}
.data-portco-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,161,58,0.35);
  border-left: 4px solid var(--gold);
  padding: 44px 48px 40px;
  max-width: 980px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.data-portco-card .dpc-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.data-portco-card .dpc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,161,58,0.18);
}
.data-portco-card .dpc-meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.data-portco-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 18px;
}
.data-portco-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* ============================================================
   DATA PAGE — Why Fiber, Why Now (large feature divider)
   ============================================================ */
.why-fiber-feature {
  background: #fff;
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .why-fiber-feature { padding: 80px 0; } }
.why-fiber-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 32px;
}
.why-fiber-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 64px;
  max-width: none;
}
/* Smaller variant — used to tone down the Why-X-Why-Now headline */
.why-fiber-headline.why-fiber-headline-sm {
  font-size: clamp(32px, 4.4vw, 60px);
  margin: 0 0 48px;
}

/* Make the Power portfolio cards more prominent (less photo behind them) */
.layer-portfolio-section .layer-portco-card {
  background: rgba(13, 27, 42, 0.65);
  border: 1px solid rgba(201, 161, 58, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.layer-portfolio-section .layer-portco-card:hover {
  background: rgba(13, 27, 42, 0.78);
}
.why-fiber-stats {
  margin-top: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   GRID INFRASTRUCTURE — full-bleed hero + photo backdrop sections
   ============================================================ */
.page-header.gi-hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.page-header.gi-hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.gi-hero-bg {
  position: absolute; inset: 0;
  /* Aerial excavator moving dirt at a construction site (matches the user's
     reference image). Drop your preferred photo at
     assets/site/grid-infra-hero.jpg to override. */
  background-image: url('site/grid-infra-hero.jpg'), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: contrast(1.08) saturate(0.85);
}
.gi-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.66) 0%, rgba(13,27,42,0.84) 65%, rgba(13,27,42,0.94) 100%),
    radial-gradient(900px 500px at 22% 30%, rgba(201,161,58,0.18), transparent 60%);
  z-index: 1;
}

/* Grid Infra portfolio lede — "Seeking" inline tag + paragraph */
.gi-portfolio-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 64ch;
  margin: 0 0 40px;
}

/* Grid Infra "Sectors We Serve" — 4-up dark photo cards */
.gi-sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 32px 0 56px;
  background: var(--navy-deep);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1100px) { .gi-sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gi-sectors { grid-template-columns: 1fr; } }

.gi-sector-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  isolation: isolate;
  background: var(--navy-deep);
}
.gi-sector-card + .gi-sector-card { border-left: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 1100px) {
  .gi-sector-card + .gi-sector-card { border-left: 0; }
}
.gisc-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: contrast(1.05) saturate(0.85);
  transition: transform 0.6s ease;
}
.gi-sector-card:hover .gisc-photo { transform: scale(1.05); }
.gisc-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.30) 0%, rgba(13,27,42,0.60) 50%, rgba(6,17,25,0.92) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}
.gi-sector-card:hover .gisc-overlay {
  background:
    linear-gradient(180deg, rgba(13,27,42,0.20) 0%, rgba(13,27,42,0.50) 50%, rgba(6,17,25,0.94) 100%);
}
.gisc-body {
  position: relative;
  z-index: 2;
  padding: 24px 22px 26px;
  color: #fff;
}
.gisc-body h4 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.gisc-body p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
}
.gisc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gi-sector-card:hover .gisc-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.gi-portfolio-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Grid Infra hero — "Seeking" mission lead-in (legacy, no longer used in hero) */
.gi-mission {
  margin: 12px 0 28px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  max-width: 900px;
}
.gi-mission-label {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.gi-mission-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.36;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
}

/* ============================================================
   WHITE HOUSE DPA — major feature banner
   ============================================================ */
.dpa-feature {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, #0d1b2a 60%, #061119 100%);
  color: #fff;
  padding: 90px 0 96px;
  overflow: hidden;
}
.dpa-feature-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 18% 30%, rgba(201,161,58,0.18), transparent 60%),
    radial-gradient(700px 400px at 92% 80%, rgba(201,161,58,0.12), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.dpa-feature-flag {
  margin-bottom: 26px;
}
.dpa-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 2px;
}
.dpa-feature-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 20px;
  max-width: 22ch;
}
.dpa-feature-headline em {
  font-style: italic;
  color: var(--gold);
}
.dpa-feature-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  margin: 0 0 32px;
}
.dpa-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  padding: 16px 22px;
  border: 1px solid var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}
.dpa-feature-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
}
.dpa-feature-cta .dpa-arrow {
  font-size: 16px;
  transition: transform 0.25s ease;
}
.dpa-feature-cta:hover .dpa-arrow { transform: translateX(4px); }

/* DPA feature with side photo (2-column split, photo blends into navy) */
.dpa-feature.has-photo {
  padding: 0;
  position: relative;
}
.dpa-feature.has-photo .dpa-feature-overlay { z-index: 0; }
.dpa-feature-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  align-items: stretch;
  position: relative;
  z-index: 2;
  min-height: 520px;
}
@media (max-width: 980px) { .dpa-feature-grid { grid-template-columns: 1fr; } }
.dpa-feature.has-photo .dpa-feature-content {
  padding: 90px 56px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  margin-left: auto;
  width: 100%;
}
@media (max-width: 980px) { .dpa-feature.has-photo .dpa-feature-content { padding: 64px 32px; max-width: none; margin: 0; } }
.dpa-feature-photo {
  position: relative;
  overflow: hidden;
  background: #0d1b2a;
}
.dpa-feature-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.85);
  opacity: 0.78;
}
.dpa-feature-photo-blend {
  position: absolute;
  inset: 0;
  background:
    /* Strong navy blend on the left edge so the photo fades into the text column */
    linear-gradient(90deg, rgba(13,27,42,1) 0%, rgba(13,27,42,0.65) 22%, rgba(13,27,42,0.18) 60%, rgba(13,27,42,0.45) 100%),
    /* Soft gold radial highlight to keep the brand accent */
    radial-gradient(600px 400px at 80% 30%, rgba(201,161,58,0.18), transparent 60%);
  pointer-events: none;
}
@media (max-width: 980px) {
  .dpa-feature-photo { min-height: 320px; }
  .dpa-feature-photo-blend {
    background:
      linear-gradient(180deg, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.30) 30%, rgba(13,27,42,0.55) 100%),
      radial-gradient(600px 400px at 80% 30%, rgba(201,161,58,0.14), transparent 60%);
  }
}

/* ============================================================
   SECTOR CARDS (sexier 6-up grid replacing emoji tiles)
   ============================================================ */
.sectors-cards {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .sectors-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sectors-cards { grid-template-columns: 1fr; } }
.sector-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.sector-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--olive));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(13,27,42,0.10);
  border-color: var(--gold);
}
.sector-card:hover::before { opacity: 1; }
.sector-card .sc-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
}
.sector-card .sc-icon {
  width: 44px; height: 44px;
  color: var(--navy);
  margin-bottom: 24px;
  transition: color 0.25s ease, transform 0.4s ease;
}
.sector-card:hover .sc-icon {
  color: var(--gold);
  transform: scale(1.05);
}
.sector-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.22;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.sector-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* Why Grid Infrastructure now — subtle photo backdrop */
.gi-why-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.gi-why-bg {
  position: absolute; inset: 0;
  background-image: url('site/data-industrial.jpg'), url('https://images.unsplash.com/photo-1565514020179-026b92b2d70b?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.18;
  filter: grayscale(60%) contrast(1.05);
}
.gi-why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 60%, rgba(244,241,232,0.96) 100%);
  z-index: 1;
}

/* ============================================================
   PMT FOUNDER PULL-QUOTE — clean editorial, no colored bg
   ============================================================ */
.pmt-pullquote {
  margin: 24px auto 24px;
  max-width: 920px;
  padding: 0 0 0 32px;
  border-left: 3px solid var(--gold);
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pmt-pullquote.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .pmt-pullquote { opacity: 1; transform: none; transition: none; }
}
/* When the pull-quote sits in its own section, kill the section's vertical padding
   so the quote blends into adjacent sections instead of floating in a gap. */
.section.pmt-quote-section {
  padding-top: 28px;
  padding-bottom: 28px;
}
.pmt-pullquote .pq-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 140px;
  line-height: 0.7;
  color: var(--gold);
  position: absolute;
  left: 14px; top: -22px;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}
.pmt-pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.36;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0;
  position: relative;
  z-index: 1;
}
.pmt-pullquote figcaption {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 14px;
}
.pmt-pullquote figcaption strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.pmt-pullquote figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* PMT field-photo feature block */
.pmt-feature-photo {
  margin: 36px 0 40px;
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2436 0%, #0d1b2a 100%);
  box-shadow: 0 18px 36px rgba(13,27,42,0.10);
}
.pmt-feature-photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.pmt-feature-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(180deg, transparent, rgba(13,27,42,0.78));
  font-style: italic;
}
.pmt-feature-photo.placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
}
.pmt-feature-photo.placeholder figcaption {
  display: none;
}
.pmt-feature-photo.placeholder::before {
  content: "Photo coming";
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.pmt-feature-photo.placeholder::after {
  content: "assets/portfolio/pmt-underground-install.jpg";
  display: block;
  margin-top: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================================
   AUTHORITY QUOTE — Satya Nadella (with photo) + OpenAI (text only)
   ============================================================ */
.auth-quote {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.auth-quote::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 18% 30%, rgba(201,161,58,0.14), transparent 60%),
    radial-gradient(700px 400px at 92% 80%, rgba(201,161,58,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.auth-quote .container,
.auth-quote .auth-quote-grid {
  position: relative;
  z-index: 1;
}
.auth-quote-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 220px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.22;
  display: block;
  margin-bottom: -52px;
  pointer-events: none;
  user-select: none;
}
.auth-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.32;
  color: #fff;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.auth-quote cite {
  display: block;
  font-style: normal;
}
.auth-quote cite strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}
.auth-quote cite span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.66);
  letter-spacing: 0.02em;
}

/* OpenAI variant — centered, no photo, smaller and blends into the page */
.auth-quote.openai {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, var(--navy-deep) 0%, #0d1b2a 100%);
}
.auth-quote.openai .auth-quote-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.auth-quote.openai .auth-quote-mark {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 110px;
  margin-bottom: -28px;
}
.auth-quote.openai blockquote {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.42;
  margin: 0 0 22px;
  color: rgba(255,255,255,0.92);
}
.auth-quote.openai cite strong {
  font-size: 11px;
}
.auth-quote.openai cite span {
  font-size: 13px;
}

/* Satya variant — split layout, photo on left, quote on right */
.auth-quote.satya { padding: 0; }
.auth-quote.satya .auth-quote-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 520px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .auth-quote.satya .auth-quote-grid {
    grid-template-columns: 1fr;
  }
}
.auth-quote.satya .auth-quote-photo {
  position: relative;
  background: #1a2436;
  overflow: hidden;
}
.auth-quote.satya .auth-quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.auth-quote.satya .auth-quote-photo.placeholder {
  background:
    linear-gradient(135deg, #1a2436 0%, #0d1b2a 100%);
}
.auth-quote.satya .auth-quote-photo.placeholder::after {
  content: "Photo: assets/quotes/satya-nadella.jpg";
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.auth-quote.satya .auth-quote-content {
  padding: 80px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0d1b2a 100%);
}
@media (max-width: 880px) {
  .auth-quote.satya .auth-quote-content {
    padding: 64px 32px;
  }
}
.auth-quote.satya .auth-quote-mark {
  text-align: left;
  font-size: 180px;
  margin-bottom: -44px;
}

/* ============================================================
   TEAM hero — water-infrastructure backdrop, full bleed
   ============================================================ */
.page-header.team-hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.team-hero-bg {
  position: absolute; inset: 0;
  /* Heavy earthwork / data-center site grading — DIRT + construction grid */
  background-image: url('site/hero-construction.jpg'), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: contrast(1.06) saturate(0.85);
}
.team-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.66) 0%, rgba(13,27,42,0.84) 65%, rgba(13,27,42,0.94) 100%),
    radial-gradient(900px 500px at 22% 30%, rgba(201,161,58,0.18), transparent 60%);
  z-index: 1;
}
.team-hero-headline {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (max-width: 880px) {
  .team-hero-headline { white-space: normal; font-size: clamp(30px, 7vw, 48px); }
}

/* ============================================================
   DATA hero — full-bleed fiber-installation backdrop
   ============================================================ */
.page-header.data-hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
.page-header.data-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.data-hero-bg {
  position: absolute; inset: 0;
  background-image: url('site/data-hero.jpg'), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=2400&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: contrast(1.05) saturate(0.8);
}
.data-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,0.66) 0%, rgba(13,27,42,0.84) 65%, rgba(6,17,25,0.94) 100%),
    radial-gradient(900px 500px at 22% 30%, rgba(201,161,58,0.18), transparent 60%);
  z-index: 1;
}

/* ============================================================
   SHARED — "X Layer of the Portfolio" full-bleed section
   used by DATA, POWER, and Grid Infrastructure
   ============================================================ */
.layer-portfolio-section {
  position: relative;
  background: #142943;             /* lightened mid-navy, less dark */
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
}
/* Bigger "Portfolio" eyebrow used at the top of every Layer-of-the-Portfolio section */
.layer-portfolio-section .eyebrow {
  font-size: 16px;
  letter-spacing: 0.28em;
  font-weight: 700;
}
.layer-portfolio-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.75);
}
.layer-portfolio-bg.bg-fiber {
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=2400&q=85&auto=format&fit=crop');
}
.layer-portfolio-bg.bg-power {
  background-image: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=2400&q=85&auto=format&fit=crop');
  opacity: 0.18;          /* photo recedes — cards become the focus */
  filter: grayscale(40%) contrast(1.05);
}
/* Lighter overlay specifically for the Power portfolio so the photo reads through */
.layer-portfolio-section:has(.bg-power) .layer-portfolio-overlay {
  background:
    linear-gradient(180deg, rgba(20,41,67,0.40) 0%, rgba(20,41,67,0.55) 60%, rgba(13,27,42,0.72) 100%),
    radial-gradient(900px 500px at 30% 20%, rgba(201,161,58,0.18), transparent 60%);
}
.layer-portfolio-bg.bg-grid {
  background-image: url('site/grid-infra-hero.jpg'), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=2400&q=85&auto=format&fit=crop');
}
.layer-portfolio-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,41,67,0.55) 0%, rgba(20,41,67,0.72) 60%, rgba(13,27,42,0.84) 100%),
    radial-gradient(900px 500px at 30% 20%, rgba(201,161,58,0.14), transparent 60%);
  z-index: 1;
}
/* No-photo variant — clean institutional dark navy, no image behind */
.layer-portfolio-section.no-bg {
  background: #102237;
}
.layer-portfolio-section.no-bg .layer-portfolio-overlay {
  background:
    linear-gradient(180deg, rgba(16,34,55,0.0) 0%, rgba(16,34,55,0.0) 100%),
    radial-gradient(900px 500px at 30% 20%, rgba(201,161,58,0.10), transparent 60%);
}

/* Light variant — cream background, dark cards (for visual contrast with a dark hero) */
.layer-portfolio-section.light {
  background: var(--cream);
  color: var(--ink);
  padding-bottom: 56px;             /* tighter — flows into About PMT below */
}
/* When the light Portfolio is followed directly by an About PMT cream section,
   visually bind them together by killing the seam — same cream, smaller gap,
   and a consistent eyebrow/h2 treatment between the two. */
.layer-portfolio-section.light + .section.cream {
  padding-top: 56px;
}
/* Match the gold caps eyebrow on the About PMT section so the two sections
   read as a unified pair with different headers. */
.layer-portfolio-section.light + .section.cream .eyebrow {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.28em;
  font-weight: 700;
}

/* ============================================================
   GRID INFRA — full-bleed construction-silhouette photo divider
   ============================================================ */
.gi-photo-divider {
  height: clamp(220px, 30vw, 380px);
  background:
    linear-gradient(180deg, rgba(13,27,42,0.75) 0%, rgba(13,27,42,0.55) 50%, rgba(13,27,42,0.85) 100%),
    url('site/hero-construction.jpg') center/cover no-repeat, url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=2400&q=85&auto=format&fit=crop') center/cover no-repeat;
  filter: contrast(1.05) saturate(0.85);
  position: relative;
}
.gi-photo-divider::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 30% 50%, rgba(201,161,58,0.10), transparent 60%);
  pointer-events: none;
}

/* ============================================================
   GRID INFRA — compact thought-leadership tail strip
   ============================================================ */
.gi-tl-strip {
  background: var(--cream);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gi-tl-strip .gi-tl-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
.gi-tl-strip .gi-tl-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gi-tl-strip .gi-tl-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.gi-tl-strip .gi-tl-byline {
  font-size: 13px;
  color: var(--muted);
}
.gi-tl-strip .gi-tl-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  letter-spacing: -0.005em;
}
.gi-tl-strip .gi-tl-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gi-tl-strip .gi-tl-arrow {
  display: inline-block;
  font-family: var(--sans);
  color: var(--gold);
  transition: transform 0.25s ease;
}
.gi-tl-strip .gi-tl-link:hover .gi-tl-arrow { transform: translateX(4px); }

/* ============================================================
   GRID INFRA — subtle construction-silhouette backdrop on Why-Now
   ============================================================ */
.why-fiber-feature.gi-why {
  position: relative;
  isolation: isolate;
}
.why-fiber-feature.gi-why::before {
  content: "";
  position: absolute; inset: 0;
  background: url('site/grid-infra-hero.jpg') center/cover no-repeat, url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=2400&q=85&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.06;          /* very subtle silhouette */
  filter: grayscale(100%) contrast(1.1);
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   HOMEPAGE — COMPANY OVERVIEW + Vimeo embed (clean dark intro)
   ============================================================ */
.company-overview {
  background: var(--cream);
  color: var(--ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.company-overview::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 18% 20%, rgba(201,161,58,0.05), transparent 60%);
  pointer-events: none;
}
.company-overview .container { position: relative; z-index: 1; }
.company-overview .co-eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 14px;
}
.company-overview .co-eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 280px; max-width: 50%;
  height: 1px;
  background: var(--gold);
}
.company-overview .co-lede {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 24px;
  max-width: 22ch;
  letter-spacing: -0.01em;
}
.company-overview .co-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 84ch;
  margin: 0 0 48px;
}
.company-overview .co-video {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.company-overview .co-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   HOMEPAGE — SOUTHEAST COVERAGE (dark, flag + state tiles + map)
   ============================================================ */
.se-coverage {
  background: var(--cream);
  color: var(--ink);
  padding: 96px 0 110px;
  position: relative;
  border-top: 1px solid var(--line);
}
.se-coverage .se-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .se-coverage .se-grid { grid-template-columns: 1fr; gap: 40px; } }
.se-flag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.se-flag-bar {
  display: inline-block;
  width: 36px; height: 18px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 50%, #0a0a0a 50%, #0a0a0a 100%);
  border: 1px solid #fff;
}
.se-flag-logo {
  display: inline-block;
  width: 56px;
  height: auto;
}

/* ============================================================
   STRATEGIC INVESTMENT CRITERIA — interactive primary bars
   ============================================================ */
.primary-bars.is-interactive .primary-bar {
  width: 100%;
  text-align: center;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  display: block;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.primary-bars.is-interactive .primary-bar > span {
  position: relative;
  z-index: 1;
}
.primary-bars.is-interactive .primary-bar:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 18px rgba(13,27,42,0.08);
}
.primary-bars.is-interactive .primary-bar.is-active {
  transform: translateX(10px);
  box-shadow: 0 14px 26px rgba(13,27,42,0.12);
  background: linear-gradient(90deg, rgba(201,161,58,0.18), rgba(201,161,58,0.04));
  border-left: 4px solid var(--gold);
  font-weight: 700;
  color: var(--navy);
}
.se-flag-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.se-text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 0 16px;
}
.se-states {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 720px) { .se-states { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .se-states { grid-template-columns: repeat(2, 1fr); } }
.se-state {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding: 18px 8px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.se-state:hover {
  background: #fff;
  border-color: var(--gold);
  color: var(--navy);
}

.se-map {
  position: relative;
  min-height: 480px;
  background: #fff;
  border: 1px solid var(--line);
}
.se-map img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
}
.se-map.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.se-map.placeholder::before {
  content: "Drop your map at assets/site/southeast-coverage-map.png";
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,161,58,0.7);
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
}
/* Decorative corner brackets like the reference */
.se-map-corner {
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.se-map-corner-tl {
  top: 0; left: 0;
  border-right: 0; border-bottom: 0;
}
.se-map-corner-br {
  bottom: 0; right: 0;
  border-left: 0; border-top: 0;
}
.layer-portfolio-section.light .layer-portco-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.layer-portfolio-section.light .layer-portco-card:hover {
  background: #fff;
  box-shadow: 0 14px 30px rgba(13,27,42,0.08);
  border-color: var(--gold);
  border-left-color: var(--gold);
}
.layer-portfolio-section.light .layer-portco-card.acquired {
  border-left-color: #18a35a;
}
.layer-portfolio-section.light .lpc-meta {
  color: var(--muted);
}
.layer-portfolio-section.light .lpc-status.acquired-status {
  color: #18a35a;
}
.layer-portfolio-section.light .layer-portco-card.acquired .lpc-dot {
  background: #18a35a;
  box-shadow: 0 0 0 4px rgba(24,163,90,0.18);
}
.layer-portfolio-section.light .layer-portco-card h3 {
  color: var(--navy);
}
.layer-portfolio-section.light .layer-portco-card p {
  color: var(--ink);
}
.layer-portco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.layer-portco-grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 880px) {
  .layer-portco-grid.cols-2 { grid-template-columns: 1fr; }
}
.layer-portco-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,161,58,0.35);
  border-left: 4px solid var(--gold);
  padding: 36px 36px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.layer-portco-card:hover {
  background: rgba(255,255,255,0.075);
  transform: translateY(-2px);
}
.layer-portco-card.acquired {
  border-left-color: #4ad295;
}
.layer-portco-card .lpc-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.layer-portco-card .lpc-status.acquired-status {
  color: #4ad295;
}
.layer-portco-card .lpc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,161,58,0.18);
}
.layer-portco-card.acquired .lpc-dot {
  background: #4ad295;
  box-shadow: 0 0 0 4px rgba(74,210,149,0.18);
}
.layer-portco-card .lpc-meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
}
.layer-portco-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
}
.layer-portco-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.layer-portco-card .lpc-cta {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.layer-portco-card .lpc-cta .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.layer-portco-card:hover .lpc-cta .arrow {
  transform: translateY(3px);
}

/* ============================================================
   FIBER STATS — 2x2 layout with breathing room, centered
   ============================================================ */
.fiber-stats-bare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) { .fiber-stats-bare { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   FIBER OS PHOTO GRID — grid nodes with photos
   ============================================================ */
.fiber-os-photo .fiber-os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 980px) { .fiber-os-photo .fiber-os-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .fiber-os-photo .fiber-os-grid { grid-template-columns: 1fr; } }
.fiber-os-photo .fiber-node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fiber-os-photo .fiber-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(13,27,42,0.10);
  border-color: var(--gold);
}
.fiber-os-photo .fn-photo {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1a2436 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}
.fiber-os-photo .fn-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fiber-os-photo .fiber-node:hover .fn-photo img {
  transform: scale(1.05);
}
.fiber-os-photo .fn-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,27,42,0.30));
  pointer-events: none;
}
.fiber-os-photo .fn-body {
  padding: 24px 26px 28px;
}
.fiber-os-photo .fn-body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 10px;
}
.fiber-os-photo .fn-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   PROFESSIONAL CONTACT SECTION — split layout, multi-channel
   ============================================================ */
.contact-feature {
  background: var(--cream);
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.contact-feature .contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .contact-feature .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-feature .contact-intro .eyebrow {
  margin-bottom: 16px;
}
.contact-feature .contact-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 20px;
}
.contact-feature .contact-intro p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 36ch;
  margin: 0;
}
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .contact-channels { grid-template-columns: 1fr; } }
.contact-channel {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 24px 26px 26px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-channel:hover {
  box-shadow: 0 12px 28px rgba(13,27,42,0.08);
  border-color: var(--navy);
}
.contact-channel .channel-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.contact-channel .channel-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.005em;
  word-break: break-word;
}
.contact-feature .contact-direct {
  margin-top: 24px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.contact-feature .contact-direct strong {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   FOOTER — improved offices + social icons
   ============================================================ */
.footer-offices {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.footer-office {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 14px;
  color: rgba(255,255,255,0.86);
}
.footer-office .office-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-office .office-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.footer-office .office-line1,
.footer-office .office-line2 {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}
.footer-office .office-line2 {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

/* Social icons */
.footer-social {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social .social-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-right: 6px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.target-photo {
  width: 100%;
  height: 200px;
  background: #1a2436;
  position: relative;
  overflow: hidden;
}
.target-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.6s ease;
}
.target-cards-photo .target-card:hover .target-photo img {
  transform: scale(1.04);
}
.target-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,27,42,0.25));
  pointer-events: none;
}
.target-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.target-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0 0 12px;
}
.target-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   POWER PAGE — improved acquisition-in-progress portfolio cards
   ============================================================ */
.power-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .power-portfolio-grid { grid-template-columns: 1fr; } }
.power-portco {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 36px 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.power-portco:hover {
  box-shadow: 0 10px 28px rgba(13,27,42,0.06);
}
.power-portco-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.power-portco-status::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,161,58,0.18);
}
.power-portco h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0;
}
.power-portco-meta {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 6px;
}
.power-portco p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* Large, borderless logo treatment — used by the PMT|SITE card so the wordmark
   reads at full size without a framed well around it. */
.portco-card .pc-logo-large {
  width: 100%;
  max-width: 360px;
  height: 140px;
  border: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.portco-card .pc-logo-large img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.portco-card .pc-logo-large.text-fallback {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.three-grids .grid-col {
  padding: 32px 28px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.three-grids .grid-col:last-child { border-right: 0; }
@media (max-width: 820px) {
  .three-grids .grid-col { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .three-grids .grid-col:last-child { border-bottom: 0; }
}

.three-grids .grid-eyebrow {
  text-align: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.three-grids .grid-photo {
  aspect-ratio: 4/3;
  background-color: #1a2030;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.three-grids .grid-caption {
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
  margin: 0;
  font-weight: 500;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* AGP roll-up declaration banner (homepage) */
.declaration-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  text-align: center;
}
.declaration-strip p {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--navy);
  margin: 0 auto;
  max-width: 38ch;
  letter-spacing: -0.005em;
}

/* ============================================================
   ANSWERING THE CALL — institutional capital quotes (cream cards)
   Used on thesis.html .atc-section
   ============================================================ */
.atc-section {
  background: var(--cream);
  padding-top: 96px;
  padding-bottom: 112px;
}
.atc-section .eyebrow {
  color: var(--gold);
}
.atc-title {
  max-width: 24ch;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 22px;
}
.atc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
@media (max-width: 1080px) {
  .atc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .atc-grid { grid-template-columns: 1fr; gap: 20px; }
}
.atc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 36px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  box-shadow: 0 1px 0 rgba(13,27,42,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.atc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(13,27,42,0.08);
}
.atc-source {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.atc-source-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.atc-source-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.atc-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  padding-left: 22px;
}
.atc-card blockquote::before {
  content: "\201C";
  position: absolute;
  left: -2px;
  top: -10px;
  font-family: var(--serif);
  font-weight: 600;
  font-style: normal;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
}

/* ============================================================
   IR-CHART — interactive infrastructure spend chart (PE-grade)
   Used on thesis.html under "The 4th Industrial Revolution"
   ============================================================ */
.ir-chart {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 30px 26px;
  box-shadow: 0 1px 0 rgba(13,27,42,0.02);
}
.ir-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.ir-chart-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.ir-chart-sub {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}
.ir-chart-total {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.ir-chart-total-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.ir-chart-total-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.ir-chart-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ir-row {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  text-align: left;
  display: grid;
  grid-template-columns: 36px 1.1fr 2.6fr 80px;
  align-items: center;
  gap: 16px;
  padding: 14px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: background 0.22s ease, transform 0.22s ease;
}
.ir-row:hover {
  background: rgba(201, 161, 58, 0.06);
}
.ir-row.is-active {
  background: rgba(13, 27, 42, 0.04);
  transform: translateX(2px);
}
.ir-row-rank {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.ir-row.is-active .ir-row-rank {
  color: var(--gold);
}
.ir-row-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: -0.002em;
}
.ir-row-track {
  position: relative;
  height: 12px;
  background: var(--cream-2, #f4f1ea);
  border-radius: 999px;
  overflow: hidden;
}
.ir-row-fill {
  display: block;
  height: 100%;
  width: var(--w, 100%);
  background: linear-gradient(90deg, var(--gold) 0%, #b8902f 100%);
  border-radius: 999px;
  transition: filter 0.22s ease, transform 0.22s ease;
  transform-origin: left center;
}
.ir-row.is-active .ir-row-fill {
  filter: brightness(1.05) saturate(1.1);
  transform: scaleY(1.1);
}
.ir-row-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
  text-align: right;
  letter-spacing: -0.005em;
}
.ir-row.is-active .ir-row-value {
  color: var(--gold);
}

.ir-chart-readout {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.ir-readout-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
}
.ir-readout-share {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}
.ir-readout-share span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.ir-readout-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .ir-chart-head { flex-direction: column; align-items: flex-start; }
  .ir-chart-total { text-align: left; }
  .ir-row {
    grid-template-columns: 28px 1fr 60px;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 12px 10px;
  }
  .ir-row-track { grid-column: 1 / -1; }
}

/* ============================================================
   AGP ROUND 3 OVERRIDES — punch list re-fix v2
   ============================================================ */

/* 0. Logo header sizing */
.site-header .brand img {
  height: 44px !important;
  width: auto !important;
  max-width: 280px !important;
}
.site-header { padding: 14px 0; }

/* 1. Hero rotator — force HORIZONTAL single line ("Investing in" + rotating word same line) */
.hero-headline-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-headline-block h1.hero-title-rotator {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: baseline !important;
  gap: 0 18px !important;
  line-height: 1.06 !important;
  margin: 0 0 28px !important;
  white-space: nowrap !important;
}
.hero-headline-block h1.hero-title-rotator .hero-static {
  display: inline-block !important;
  color: #fff;
  font-style: normal;
  letter-spacing: -0.02em;
  white-space: nowrap !important;
}
.hero-headline-block h1.hero-title-rotator .hero-rotator {
  position: relative;
  display: inline-block !important;
  width: auto !important;
  min-width: clamp(280px, 32vw, 540px) !important;
  min-height: 1.1em;
  text-align: left !important;
  vertical-align: baseline;
  white-space: nowrap !important;
}
.hero-headline-block h1.hero-title-rotator .hero-word {
  position: absolute;
  left: 0;
  right: auto !important;
  top: 0;
  white-space: nowrap !important;
}
@media (max-width: 720px) {
  .hero-headline-block h1.hero-title-rotator {
    flex-direction: column !important;
    white-space: normal !important;
    gap: 6px 0 !important;
  }
  .hero-headline-block h1.hero-title-rotator .hero-rotator {
    min-width: 0 !important;
    text-align: center !important;
    width: 100% !important;
    position: relative;
  }
  .hero-headline-block h1.hero-title-rotator .hero-word {
    position: absolute;
    left: 0; right: 0;
    text-align: center;
  }
}
.hero-rotator-dots { justify-content: center; display: flex; }

/* 2. "The Portfolio" — WHITE color for visibility on dark navy */
.gip-pillars-titlebar {
  text-align: center;
  padding: 80px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.gip-pillars-bigtitle {
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -0.01em;
  color: #ffffff !important;
  margin: 0 auto 12px;
  padding-bottom: 8px;
  display: inline-block;
  border-bottom: 2px solid var(--gold);
}
@media (max-width: 720px) { .gip-pillars-titlebar { padding-left: 24px; padding-right: 24px; } }

/* 3. Company Overview headline — wrap to 2 lines naturally + left-align with video */
.company-overview .container {
  text-align: left;
  max-width: 1100px;
  padding-left: 48px;
  padding-right: 48px;
}
.company-overview .co-eyebrow,
.company-overview .co-lede,
.company-overview .co-sub {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none;
}
.company-overview .co-lede {
  line-height: 1.18;
  letter-spacing: -0.005em;
  font-size: clamp(28px, 3.2vw, 40px);
  max-width: 28ch;
}
.company-overview .co-sub {
  max-width: 78ch;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .company-overview .container { padding-left: 24px; padding-right: 24px; }
}

/* 4. "What AGP Acquires." — one line + serif */
.criteria-section h2 {
  font-family: var(--serif);
  white-space: nowrap;
  font-size: clamp(36px, 4.8vw, 56px);
  letter-spacing: -0.01em;
  font-weight: 400;
}
@media (max-width: 720px) { .criteria-section h2 { white-space: normal; font-size: clamp(32px, 8vw, 40px); } }

/* 5. Primary Criteria — match site sans (Manrope) */
.criteria-section .criteria-primary {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  margin-bottom: 16px;
  margin-top: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.criteria-section .primary-bar,
.criteria-section .primary-bar span {
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
}
.criteria-section .criteria-card h4 { font-family: var(--serif); }
.criteria-section .criteria-card p { font-family: var(--sans); }

/* 6. Satya quote section — image height capped */
.auth-quote.satya { max-height: 540px; }
.auth-quote.satya img {
  max-height: 540px !important;
  height: 540px !important;
  object-fit: cover;
}
@media (max-width: 720px) {
  .auth-quote.satya { max-height: none; }
  .auth-quote.satya img { height: auto !important; }
}

/* 7. Southeast section — title 1 line, copy left-aligned, 4-4-3 grid CENTERED */
.se-coverage .container {
  padding-left: 48px;
  padding-right: 48px;
  max-width: 1200px;
}
.se-grid {
  display: block !important;
  grid-template-columns: 1fr !important;
  max-width: 1100px;
  margin: 0 auto !important;
}
.se-text {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.se-flag-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.005em;
  line-height: 1.12;
  color: var(--navy);
  text-transform: none;
  display: block;
  text-align: left;
  margin-bottom: 16px;
}
.se-text > p {
  text-align: left !important;
}
.se-map { display: none !important; }

/* 4-4-3 grid using flexbox so the bottom row centers naturally */
.se-states {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 14px !important;
  max-width: 880px !important;
  margin: 24px auto 0 !important;
}
.se-states .se-state {
  flex: 0 0 calc(25% - 14px) !important;
  background: rgba(13, 27, 42, 0.04);
  border: 1px solid rgba(13, 27, 42, 0.10);
  color: var(--navy);
  padding: 18px 12px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.se-states .se-state:hover {
  background: rgba(201, 161, 58, 0.10);
  border-color: var(--gold);
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .se-states .se-state { flex: 0 0 calc(33.33% - 12px) !important; }
}
@media (max-width: 480px) {
  .se-states .se-state { flex: 0 0 calc(50% - 8px) !important; }
}

/* 8. "Operator-Led / Permanent Capital" — clean 2-line layout, no word breaking */
.team-teaser-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.015em !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  margin: 0 0 24px;
  max-width: none !important;
}
.team-hero-headline {
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  font-size: clamp(40px, 5.6vw, 72px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.015em !important;
  max-width: none !important;
}

/* 9. Page-headers blue */
.page-header { background: linear-gradient(180deg, #1f4f8a 0%, #143962 100%); }
.page-header::before {
  background:
    radial-gradient(900px 500px at 90% 30%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(0,0,0,0.25), transparent 60%);
}
.layer-portfolio-bg.bg-power {
  background-image: linear-gradient(180deg, #1f4f8a 0%, #143962 100%) !important;
}

/* 10. AGP Portfolio centered */
.portfolio-hero .container { text-align: center; }
.portfolio-hero h1 {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 110px);
  letter-spacing: -0.005em;
  text-transform: none;
}
.portfolio-hero .ph-eyebrow { text-align: center; }
.portfolio-filters { justify-content: center; }

/* 11. Five Trends bullets — gold dots, NO horizontal divider lines */
.five-trends {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.five-trends .trend-item {
  position: relative;
  padding: 18px 0 18px 32px;
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  background: transparent;
}
.five-trends .trend-item::before,
.five-trends .trend-item::after { display: none !important; }
.five-trends .trend-item .trend-bullet { display: none; }
.five-trends .trend-item {
  background-image: radial-gradient(circle 5px at 6px 28px, var(--gold) 0%, var(--gold) 100%, transparent 100%);
  background-repeat: no-repeat;
}
.five-trends .trend-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  text-indent: 0;
  font-family: var(--sans);
}
.five-trends .trend-item p strong { color: var(--navy); font-weight: 700; }

/* 12. PMT Executive Leadership — center the row */
.exec-row, .pmt-exec-row, .exec-leadership-row, .exec-team .exec-row {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 auto;
}
.exec-team { text-align: center; }
.exec-team h4 { text-align: center; }

/* 13. Bio collapsible (Ben + Grant) */
.bio-extra-content { display: none; overflow: hidden; }
[data-bio-toggle].is-expanded .bio-extra-content {
  display: block;
  animation: bioFadeIn 280ms ease;
}
@keyframes bioFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.bio-toggle-btn {
  margin-top: 12px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,161,58,0.5);
}
.bio-toggle-btn:hover { color: var(--navy); border-color: var(--navy); }
.bio-extra-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; margin-right: 16px;
  font-size: 13px; font-family: var(--sans);
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.04em;
}
.bio-extra-link:hover { text-decoration: underline; }

/* 14. Team carousel — buttons visible AND functional, with proper overflow */
.team-scroll-wrap {
  position: relative;
  padding: 0 28px;
  overflow: visible;
}
.team-scroll {
  display: flex !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 8px 16px !important;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.team-scroll::-webkit-scrollbar { display: none; }
.team-member-card {
  flex: 0 0 220px !important;
  scroll-snap-align: start;
}
.team-scroll-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 6px 18px rgba(13,27,42,0.18) !important;
  cursor: pointer !important;
  z-index: 20 !important;
  position: absolute !important;
  top: 38% !important;
  transform: translateY(-50%) !important;
  font-size: 18px !important;
  color: var(--navy) !important;
}
.team-scroll-btn.prev { left: -8px !important; }
.team-scroll-btn.next { right: -8px !important; }
.team-scroll-btn:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}
@media (max-width: 720px) { .team-scroll-btn { display: flex !important; } }

/* 15. DATA hero — wider max-width to allow 2-line wrap */
.data-hero h1 { max-width: 26ch !important; }

/* ============================================================
   AGP ROUND 4 — MOBILE OVERHAUL
   ============================================================ */

/* Hamburger button — hidden by default (desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
}
.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Mobile: hide desktop nav + Contact CTA, show hamburger */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-header nav,
  .site-header .cta {
    display: none;
  }
  .site-header .nav-inner {
    height: 64px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .site-header .brand img { height: 36px !important; }
}

/* Mobile drawer — full-viewport overlay */
@media (max-width: 980px) {
  body[data-menu-open] { overflow: hidden; }

  /* Keep the .cta button hidden on mobile (Contact reachable via footer + sections) */
  body[data-menu-open] .site-header .cta { display: none !important; }

  /* Drawer covers the full viewport, sits behind the header bar (top: 64px) but extends to bottom */
  body[data-menu-open] .site-header nav {
    display: block !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100vh - 64px) !important;
    height: calc(100dvh - 64px) !important;
    background: var(--navy-deep) !important;
    padding: 24px 24px 48px !important;
    z-index: 9990 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(255,255,255,0.10);
  }
  /* Header sits above drawer */
  .site-header { position: relative; z-index: 9999; }
  body[data-menu-open] .site-header { background: var(--navy-deep); }

  body[data-menu-open] .site-header nav ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    font-size: 18px;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  body[data-menu-open] .site-header nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding: 0;
    list-style: none;
  }
  body[data-menu-open] .site-header nav ul li:last-child { border-bottom: none; }
  body[data-menu-open] .site-header nav ul li a {
    display: block !important;
    color: rgba(255,255,255,0.92);
    padding: 20px 4px;
    font-family: var(--sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 16px;
    text-decoration: none;
  }
  body[data-menu-open] .site-header nav ul li a:hover,
  body[data-menu-open] .site-header nav ul li a:active { color: var(--gold); }

  /* Portfolio dropdown — flatten inline */
  body[data-menu-open] .site-header nav .has-dropdown > a::after { display: none; }
  body[data-menu-open] .site-header nav .dropdown {
    position: static !important;
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 0 16px 16px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  body[data-menu-open] .site-header nav .dropdown li {
    border-bottom: 0;
  }
  body[data-menu-open] .site-header nav .dropdown li a {
    text-transform: none !important;
    letter-spacing: 0.03em !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    padding: 10px 0 !important;
    color: rgba(255,255,255,0.72) !important;
  }
  body[data-menu-open] .site-header nav .dropdown li a:hover { color: var(--gold) !important; }

  /* Animate hamburger to X */
  body[data-menu-open] .nav-toggle .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body[data-menu-open] .nav-toggle .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }
  body[data-menu-open] .nav-toggle .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ============================================================
   MOBILE LAYOUT — typography + spacing pass for ≤720px
   ============================================================ */
@media (max-width: 720px) {

  /* Container padding tighter */
  .container, .container-wide {
    padding: 0 18px !important;
  }

  /* Section vertical padding compressed */
  .section { padding: 56px 0 !important; }
  .section.cream { padding: 48px 0 !important; }

  /* HERO — make the rotator stack cleanly + smaller */
  .hero { min-height: 88vh; }
  .hero-headline-block h1.hero-title-rotator {
    flex-direction: column !important;
    gap: 4px 0 !important;
    white-space: normal !important;
    font-size: clamp(34px, 9vw, 52px) !important;
  }
  .hero-headline-block h1.hero-title-rotator .hero-rotator {
    min-width: 0 !important;
    width: 100% !important;
    text-align: center !important;
    min-height: 1.1em !important;
    position: relative;
  }
  .hero-headline-block h1.hero-title-rotator .hero-word {
    position: absolute;
    left: 0; right: 0;
    text-align: center;
    white-space: normal !important;
  }
  .hero-eyebrow-text {
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    padding: 6px 14px !important;
  }
  .hero-sub.hero-sub-spread {
    font-size: 12px !important;
    padding: 14px 18px !important;
    margin: 24px 16px 0 !important;
    max-width: none !important;
    line-height: 1.55 !important;
  }
  .hero-rotator-dots { gap: 8px !important; margin: 18px 0 14px !important; }

  /* "The Portfolio" titlebar smaller on mobile */
  .gip-pillars-titlebar {
    padding: 56px 24px 0 !important;
  }
  .gip-pillars-bigtitle {
    font-size: clamp(34px, 9vw, 48px) !important;
  }

  /* Pillars grid → single column */
  .gip-pillars-grid {
    grid-template-columns: 1fr !important;
  }
  .gip-pillar {
    padding: 36px 24px !important;
  }
  .gp-title {
    font-size: clamp(36px, 9vw, 48px) !important;
  }

  /* Page-headers (subpage hero) */
  .page-header {
    padding: 64px 0 56px !important;
  }
  .page-header h1 {
    font-size: clamp(28px, 7vw, 38px) !important;
    max-width: none !important;
  }
  .page-header .lede {
    font-size: 15px !important;
  }

  /* Company Overview */
  .company-overview .container {
    padding: 0 20px !important;
  }
  .company-overview .co-lede {
    font-size: clamp(26px, 7vw, 32px) !important;
    max-width: none !important;
  }
  .company-overview .co-sub {
    font-size: 14px !important;
  }

  /* What AGP Acquires */
  .criteria-section h2 {
    white-space: normal !important;
    font-size: clamp(28px, 8vw, 38px) !important;
  }
  .criteria-secondary-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .primary-bars {
    gap: 8px !important;
  }
  .primary-bar {
    padding: 14px 16px !important;
    font-size: 12px !important;
  }

  /* Sectors cards */
  .sectors-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Three core grids on thesis page */
  .grids-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .grid-photo {
    aspect-ratio: 4 / 3;
    min-height: 200px;
  }

  /* DPA feature on homepage */
  .dpa-feature, .dpa-feature.has-photo {
    grid-template-columns: 1fr !important;
  }
  .dpa-feature-photo { display: none; }

  /* Southeast section */
  .se-coverage .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .se-flag-title {
    font-size: clamp(26px, 7vw, 36px) !important;
    text-align: left !important;
  }
  .se-states {
    max-width: none !important;
    gap: 10px !important;
  }
  .se-states .se-state {
    flex: 0 0 calc(50% - 6px) !important;
    padding: 14px 8px !important;
    font-size: 11px !important;
    letter-spacing: 0.10em !important;
    min-height: 48px !important;
  }
  .se-detail h3 { font-size: clamp(24px, 6vw, 30px) !important; }

  /* Team teaser - homepage */
  .team-teaser-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .team-teaser-copy h2 {
    font-size: clamp(34px, 8vw, 44px) !important;
    text-align: center !important;
    max-width: none !important;
  }
  .team-teaser-copy p,
  .team-teaser-copy a.btn {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  /* Team teaser carousel → 2-column grid on mobile so all members visible (no horizontal cutoff) */
  .team-scroll-wrap {
    padding: 0 !important;
    overflow: visible !important;
  }
  .team-scroll-btn { display: none !important; }
  .team-scroll {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding: 6px 0 16px !important;
  }
  .team-member-card {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .team-member-card .tmc-photo {
    aspect-ratio: 1 / 1;
  }
  .team-member-card .tmc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-member-card .tmc-name {
    font-size: 14px !important;
  }
  .team-member-card .tmc-role {
    font-size: 12px !important;
  }

  /* Team page bios */
  .bio { grid-template-columns: 1fr !important; }
  .bio-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .bio-photo img {
    width: 100%;
    height: auto;
  }

  /* Footer */
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .site-footer .footer-offices {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .site-footer .legal {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }

  /* Five Trends bullet list */
  .five-trends .trend-item {
    padding: 16px 0 16px 28px !important;
  }
  .five-trends .trend-item p {
    font-size: 14px !important;
  }

  /* Layer portfolio sections (subpages) */
  .layer-portfolio-section {
    padding: 48px 0 !important;
  }
  .layer-portco-card {
    padding: 24px !important;
  }

  /* Why-fiber feature */
  .why-fiber-feature {
    padding: 56px 20px !important;
  }
  .why-fiber-feature h2 {
    font-size: clamp(30px, 8vw, 44px) !important;
  }
  .fiber-stats-bare,
  .fiber-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }

  /* Authority quote (Satya etc.) */
  .auth-quote {
    flex-direction: column !important;
    height: auto !important;
    max-height: none !important;
  }
  .auth-quote .auth-quote-grid {
    grid-template-columns: 1fr !important;
  }
  .auth-quote.satya img {
    height: auto !important;
    max-height: 360px !important;
  }
  .auth-quote-copy {
    padding: 32px 20px !important;
  }
  .auth-quote-text { font-size: clamp(20px, 5vw, 28px) !important; }

  /* Portfolio page */
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
  .portfolio-hero h1 {
    font-size: clamp(38px, 12vw, 64px) !important;
  }
  .portfolio-filters {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .portfolio-filters select,
  .portfolio-filters input,
  .portfolio-filters button {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Power/Data/Grid Infra hero */
  .power-hero h1, .data-hero h1, .gi-hero h1 {
    font-size: clamp(28px, 8vw, 44px) !important;
  }

  /* Three-up target cards */
  .target-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .target-card { padding: 20px !important; }

  /* Featured news */
  .fn-grid {
    grid-template-columns: 1fr !important;
  }

  /* PMT exec leadership row */
  .exec-row, .pmt-exec-row, .exec-leadership-row, .exec-team .exec-row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  .exec-team .exec-row > * {
    flex: 0 0 calc(50% - 10px) !important;
  }

  /* Investor portal */
  .invest-tiles {
    grid-template-columns: 1fr !important;
  }

  /* Atc cards (Answering the Call) */
  .atc-grid {
    grid-template-columns: 1fr !important;
  }

  /* IR chart on thesis page */
  .ir-chart-head {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .ir-row-rank { display: none !important; }

  /* Thesis grid */
  .thesis-grid {
    grid-template-columns: 1fr !important;
  }

  /* Nav dropdown styling already overridden in mobile drawer above */
}

/* Tighter typography for very narrow screens */
@media (max-width: 420px) {
  .hero-headline-block h1.hero-title-rotator { font-size: 32px !important; }
  .gip-pillars-bigtitle { font-size: 36px !important; }
  .se-states .se-state {
    flex: 0 0 calc(50% - 6px) !important;
    font-size: 10px !important;
  }
  .site-footer .footer-offices { grid-template-columns: 1fr !important; }
}

/* iOS/Safari smooth scrolling on touch */
html { -webkit-text-size-adjust: 100%; }
body { -webkit-overflow-scrolling: touch; }

/* Prevent horizontal overflow on small screens */
html, body { overflow-x: hidden; }

@media (max-width: 420px) {
  .team-scroll { grid-template-columns: 1fr !important; }
}

/* ============================================================
   AGP ROUND 5 — Team teaser mobile fix
   ============================================================ */
@media (max-width: 720px) {
  /* Force single-column stack — beat any earlier rule */
  .team-teaser-grid {
    display: block !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .team-teaser-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* Headline — break-word to prevent overflow + smaller, left-aligned */
  .team-teaser-copy h2 {
    font-family: var(--serif) !important;
    font-weight: 400 !important;
    font-size: clamp(28px, 7vw, 36px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
    max-width: 100% !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    white-space: normal !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
  }

  /* Description + button — left aligned, full width container */
  .team-teaser-copy {
    text-align: left !important;
    margin: 0 !important;
  }
  .team-teaser-copy p {
    text-align: left !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    font-size: 14px !important;
  }
  .team-teaser-copy a.btn {
    margin: 0 0 8px 0 !important;
  }

  /* Section padding */
  .team-teaser {
    padding: 48px 0 !important;
  }
  .team-teaser .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    max-width: 100% !important;
    overflow: hidden;
  }
}

/* ============================================================
   AGP ROUND 6 — End-markets tile spacing + rounded edges
   ============================================================ */
.gi-sectors {
  gap: 18px !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.gi-sector-card {
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(13,27,42,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gi-sector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(13,27,42,0.18);
}
/* Remove the divider line between cards since gap handles separation */
.gi-sector-card + .gi-sector-card { border-left: 0 !important; }
@media (max-width: 720px) {
  .gi-sectors { gap: 14px !important; }
  .gi-sector-card { min-height: 240px; }
}

/* ============================================================
   AGP ROUND 7 — rotator align, AGP statement box, exec center
   ============================================================ */

/* 1. Hero rotator — fix gold word vertical alignment with "Investing in" */
.hero-headline-block h1.hero-title-rotator .hero-rotator {
  /* Ghost spacer to give the absolute children a real baseline to anchor to */
  line-height: 1.1 !important;
}
.hero-headline-block h1.hero-title-rotator .hero-rotator::before {
  content: "\00a0";
  display: inline-block;
  width: 0;
  visibility: hidden;
}
.hero-headline-block h1.hero-title-rotator .hero-word {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  top: auto !important;
  bottom: 0 !important;
  white-space: nowrap !important;
  line-height: 1.1 !important;
}
@media (max-width: 720px) {
  .hero-headline-block h1.hero-title-rotator .hero-word {
    left: 0 !important;
    right: 0 !important;
    text-align: center;
    bottom: auto !important;
    top: 0 !important;
  }
  .hero-headline-block h1.hero-title-rotator .hero-rotator::before {
    display: none;
  }
}

/* 2. AGP statement box — larger text, MORE translucent / blends into photo */
.hero-headline-block .hero-sub.hero-sub-spread {
  font-size: clamp(15px, 1.15vw, 17px) !important;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.96) !important;
  max-width: 1100px !important;
  margin: 36px auto 0 !important;
  letter-spacing: 0.005em !important;
  padding: 22px 32px !important;
  background: rgba(13, 27, 42, 0.32) !important;
  backdrop-filter: blur(8px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(8px) saturate(1.05) !important;
  border-radius: 6px !important;
  border-top: 1px solid rgba(201, 161, 58, 0.28) !important;
  border-bottom: 1px solid rgba(201, 161, 58, 0.28) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55) !important;
  font-weight: 400 !important;
}
@media (max-width: 720px) {
  .hero-headline-block .hero-sub.hero-sub-spread {
    font-size: 14px !important;
    padding: 16px 18px !important;
    margin: 24px 12px 0 !important;
    line-height: 1.55 !important;
  }
}

/* 3. Executive Leadership — center as flex group (not 4-col grid) */
.exec-team {
  text-align: center;
}
.exec-team .exec-row {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  grid-template-columns: none !important;
  gap: 36px !important;
  max-width: 900px;
  margin: 0 auto !important;
}
.exec-team .exec {
  flex: 0 0 auto !important;
  width: auto !important;
}
@media (max-width: 720px) {
  .exec-team .exec-row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
  }
  .exec-team .exec {
    flex: 0 0 calc(50% - 10px) !important;
  }
}

/* ============================================================
   AGP ROUND 8 — Southeast center, team scroll, Fiber-Optic blue
   ============================================================ */

/* 1. Southeast section copy — CENTER the paragraph under the title */
.se-text { text-align: center; }
.se-text > p,
.se-coverage .section-lede,
.se-coverage p.section-lede {
  text-align: center !important;
  max-width: 64ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.se-flag-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.se-flag {
  align-items: center !important;
  text-align: center !important;
}

/* 2. Team carousel scroll — make rail actually scrollable + buttons clickable */
.team-scroll-wrap {
  position: relative;
  padding: 0 28px !important;
  overflow: visible !important;
}
.team-scroll {
  display: flex !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  padding: 6px 8px 16px !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}
.team-scroll::-webkit-scrollbar { display: none !important; }
.team-member-card {
  flex: 0 0 220px !important;
  scroll-snap-align: start !important;
  width: 220px !important;
  min-width: 220px !important;
}
.team-scroll-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 8px 22px rgba(13,27,42,0.20) !important;
  cursor: pointer !important;
  z-index: 50 !important;
  position: absolute !important;
  top: 38% !important;
  transform: translateY(-50%) !important;
  font-size: 18px !important;
  color: var(--navy) !important;
  font-weight: 600;
}
.team-scroll-btn.prev { left: -16px !important; }
.team-scroll-btn.next { right: -16px !important; }
.team-scroll-btn:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}
@media (max-width: 720px) {
  /* Mobile already in 2-col grid via Round 5; keep arrows hidden */
  .team-scroll-btn { display: none !important; }
}

/* 3. Fiber-Optic Layer of the Portfolio — blue background (matches portfolio header) */
.layer-portfolio-section.no-bg .layer-portfolio-bg,
.layer-portfolio-bg.bg-fiber {
  background: linear-gradient(180deg, #1f4f8a 0%, #143962 100%) !important;
  background-image: linear-gradient(180deg, #1f4f8a 0%, #143962 100%) !important;
}
/* Override the no-bg variant on Data page specifically — apply blue */
.layer-portfolio-section.no-bg {
  background: linear-gradient(180deg, #1f4f8a 0%, #143962 100%) !important;
}
.layer-portfolio-section.no-bg .layer-portfolio-overlay {
  background: linear-gradient(180deg, rgba(31,79,138,0.0) 0%, rgba(20,57,98,0.45) 100%) !important;
}

/* ============================================================
   AGP ROUND 9 — Header background blue everywhere
   ============================================================ */

/* Homepage "The Portfolio" pillars section */
.gip-pillars {
  background: linear-gradient(180deg, #1f4f8a 0%, #143962 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Grid Infrastructure "Layer of Portfolio" section — match same blue */
.layer-portfolio-bg.bg-grid {
  background-image: linear-gradient(180deg, #1f4f8a 0%, #143962 100%) !important;
}
.layer-portfolio-section:has(.bg-grid) .layer-portfolio-overlay {
  background: linear-gradient(180deg, rgba(31,79,138,0.0) 0%, rgba(20,57,98,0.45) 100%) !important;
}

/* Team page hero — apply blue overlay (was dirt photo) */
.page-header.team-hero {
  background: linear-gradient(180deg, #1f4f8a 0%, #143962 100%) !important;
}
.team-hero-bg { display: none !important; }
.team-hero-overlay { display: none !important; }

/* POWER hero overlay tweak so blue tone still feels distinct from photo */

/* ============================================================
   AGP ROUND 10 — Thesis page balance after textbox removal
   ============================================================ */

/* Thesis grid: keep 2 columns (IR chart left, stats/quotes right) but vertically aligned */
.thesis-grid {
  align-items: start !important;
}

/* IR chart column should fill the space cleanly without thesis-text on top */
.thesis-grid > div:first-child {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

/* Make sure IR chart starts at the top of its column */
.ir-chart {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  .thesis-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   AGP ROUND 11 — Execution Layer infographic + Industry Voices + buttons
   ============================================================ */

/* Execution Layer infographic (POWER page) */
.exec-layer-section {
  background: var(--navy-deep);
  color: #fff;
  padding: 88px 0 96px;
}
.exec-layer-head { max-width: 760px; margin: 0 0 56px; }
.exec-layer-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}
.exec-layer-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0 0 18px;
}
.exec-layer-lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 64ch;
}
.exec-layer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
}
.exec-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 24px;
  font-weight: 600;
}
.exec-col {
  display: flex; flex-direction: column;
  gap: 14px;
}
.exec-col-head {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive-soft);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--olive-soft);
  margin-bottom: 6px;
}
.exec-col-head.center { text-align: center; }
.exec-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.exec-list li {
  background: rgba(255,255,255,0.02);
  border-left: 2px solid var(--olive-soft);
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  font-family: var(--sans);
  transition: background 0.2s ease, transform 0.2s ease;
}
.exec-list li:hover {
  background: rgba(201,161,58,0.08);
  border-left-color: var(--gold);
  transform: translateX(2px);
}

/* Center stack — execution stack card */
.exec-stack-col { display: flex; flex-direction: column; gap: 10px; }
.exec-stack-card {
  background: rgba(13,27,42,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 20px 18px;
  display: flex; flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.demand-surge-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.exec-stack-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive-soft);
}
.exec-stack-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.exec-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: var(--sans);
  color: rgba(255,255,255,0.90);
}
.exec-stack-down {
  text-align: center;
  color: var(--gold);
  font-size: 18px;
}
.exec-stack-band {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}
.exec-stack-bottleneck {
  background: linear-gradient(180deg, #c4533a 0%, #a64430 100%);
  color: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.exec-stack-band.agp-owns {
  background: rgba(13,27,42,0.65);
  border: 1px solid rgba(201,161,58,0.32);
  padding: 14px 18px;
}
.exec-band-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive-soft);
  margin-bottom: 6px;
}
.exec-band-main {
  font-family: var(--sans);
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}
.exec-band-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-soft);
}

/* Right: Where AGP is focused */
.exec-focus-copy {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
  margin: 0 0 16px;
}
.exec-focus-copy strong { color: #fff; font-weight: 700; }
.exec-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.exec-focus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 14px 14px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.exec-focus-card:hover {
  background: rgba(201,161,58,0.10);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.exec-focus-name {
  color: var(--olive-soft);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}
.exec-focus-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.exec-focus-tag {
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 980px) {
  .exec-layer-grid { grid-template-columns: 1fr; gap: 28px; }
  .exec-arrow { display: none; }
}
@media (max-width: 720px) {
  .exec-layer-section { padding: 56px 0 64px; }
  .exec-focus-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Industry Voices — 4-quote grid (homepage, below Satya)
   ============================================================ */
.industry-voices {
  background: var(--cream);
  padding: 88px 0 96px;
}
.industry-voices .iv-head {
  margin: 0 0 48px;
  max-width: 760px;
}
.industry-voices .iv-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 14px;
}
.industry-voices .iv-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 64ch;
}
.iv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.iv-card {
  background: #fff;
  border: 1px solid rgba(13,27,42,0.06);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 32px 36px 36px;
  box-shadow: 0 6px 22px rgba(13,27,42,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.iv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(13,27,42,0.14);
}
.iv-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.iv-role {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}
.iv-rule {
  height: 1px;
  background: rgba(13,27,42,0.08);
  margin: 0 0 18px;
}
.iv-quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  padding-left: 28px;
}
.iv-mark {
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 720px) {
  .iv-grid { grid-template-columns: 1fr; gap: 16px; }
  .industry-voices { padding: 56px 0 64px; }
  .iv-card { padding: 24px 24px 28px; }
  .iv-name { font-size: 24px; }
  .iv-quote { font-size: 17px; }
}

/* ============================================================
   Sitewide button hover/interactive states
   ============================================================ */
.btn,
.cta,
.thought-button,
.pf-search-btn,
.pf-reset,
.bio-toggle-btn {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover,
.cta:hover,
.thought-button:hover,
.pf-search-btn:hover,
.pf-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13,27,42,0.18);
}
.btn:active,
.cta:active,
.thought-button:active,
.pf-search-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(13,27,42,0.12);
}
.btn:focus-visible,
.cta:focus-visible,
.thought-button:focus-visible,
.bio-toggle-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* IR chart row + primary-bar (criteria) hover refinement */
.ir-row, .primary-bar {
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.ir-row:hover {
  background: rgba(201,161,58,0.06);
  transform: translateX(2px);
}
.primary-bar:hover {
  background: linear-gradient(90deg, rgba(201,161,58,0.10) 0%, rgba(255,255,255,0.95) 100%);
  border-color: var(--gold);
}

/* Sectors / Cards — soften hover everywhere with consistent lift */
.sector-card,
.criteria-card,
.gi-sector-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Hero rotator dots — clearer hover */
.hr-dot { cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.hr-dot:hover { background: var(--gold) !important; transform: scale(1.2); }

/* Footer social icons */
.site-footer .social-icon, .site-footer a {
  transition: color 0.2s ease, background 0.2s ease;
}

/* ============================================================
   Mobile hero rotator — extra vertical breathing room so the
   gold rotating word doesn't overlap with the AGP description box
   ============================================================ */
@media (max-width: 720px) {
  .hero-headline-block h1.hero-title-rotator {
    margin-bottom: 24px !important;
  }
  .hero-headline-block h1.hero-title-rotator .hero-rotator {
    /* Reserve 3 lines of vertical space so wraps like "the American grid." don't crash into below */
    min-height: 3.6em !important;
    width: 100% !important;
    display: block !important;
  }
  .hero-headline-block h1.hero-title-rotator .hero-word {
    line-height: 1.18 !important;
  }
  /* Push the rotator dots a touch lower so they're clearly separated */
  .hero-rotator-dots {
    margin-top: 28px !important;
    margin-bottom: 22px !important;
  }
  /* Push the description box down to clear the rotator */
  .hero-headline-block .hero-sub.hero-sub-spread {
    margin-top: 32px !important;
  }
}
@media (max-width: 420px) {
  .hero-headline-block h1.hero-title-rotator .hero-rotator {
    min-height: 4.2em !important;
  }
}

/* ============================================================
   AGP ROUND 12 — Three Core Grids redesign + Operator-Led + Advisory + Portfolio + Exec
   ============================================================ */

/* 1. Three Core Grids — clean white/cream design */
.three-grids-clean {
  background: var(--paper) !important;
  padding: 96px 0 !important;
}
.three-grids-clean .tgc-head { margin: 0 0 56px; }
.three-grids-clean .tgc-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 18px;
}
.three-grids-clean .tgc-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0 0 18px;
  max-width: 24ch;
}
.three-grids-clean .tgc-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  max-width: 64ch;
}
.three-grids-clean .tgc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 16px;
}
.three-grids-clean .tgc-col { display: flex; flex-direction: column; }
.three-grids-clean .tgc-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  margin-bottom: 22px;
}
.three-grids-clean .tgc-rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 14px;
}
.three-grids-clean .tgc-num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 14px;
}
.three-grids-clean .tgc-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0 0 14px;
  max-width: 14ch;
}
.three-grids-clean .tgc-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 980px) {
  .three-grids-clean .tgc-row { grid-template-columns: 1fr; gap: 40px; }
}

/* 2. Operator-Led title — clean 2-line layout, NO mid-word breaks, allow normal wrap */
.team-teaser-copy h2,
.team-hero-headline {
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  font-size: clamp(40px, 4.8vw, 64px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.015em !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
  margin: 0 0 24px !important;
  max-width: 100% !important;
  width: 100% !important;
}
@media (min-width: 981px) {
  /* Desktop: enough room — let it flow on 2 lines */
  .team-teaser-copy h2 {
    max-width: 16ch !important;
  }
}

/* 3. Team carousel scroll — re-affirm the rail is scrollable + buttons clickable on desktop */
.team-scroll-wrap {
  position: relative !important;
  padding: 0 36px !important;
  overflow: visible !important;
}
.team-scroll {
  display: flex !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  padding: 6px 8px 16px !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
  cursor: grab;
}
.team-scroll:active { cursor: grabbing; }
.team-scroll::-webkit-scrollbar { display: none !important; }
.team-member-card {
  flex: 0 0 220px !important;
  min-width: 220px !important;
  width: 220px !important;
  scroll-snap-align: start !important;
}
.team-scroll-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 8px 22px rgba(13,27,42,0.20) !important;
  cursor: pointer !important;
  z-index: 50 !important;
  position: absolute !important;
  top: 38% !important;
  transform: translateY(-50%) !important;
  font-size: 18px !important;
  color: var(--navy) !important;
}
.team-scroll-btn.prev { left: -8px !important; }
.team-scroll-btn.next { right: -8px !important; }
.team-scroll-btn:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

/* 4. Advisory Board — 5 columns in one row */
.advisors-row {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 24px !important;
  justify-items: center;
}
@media (max-width: 1100px) {
  .advisors-row { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 720px) {
  .advisors-row { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
}
@media (max-width: 480px) {
  .advisors-row { grid-template-columns: 1fr !important; }
}

/* 5. Portfolio page — remove the white box background behind cards */
.portfolio-section {
  background: transparent !important;
}
.portfolio-grid {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
/* Each card stays as a card with its own border */
.portco-card {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 14px rgba(13,27,42,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.portco-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(13,27,42,0.12);
  border-color: var(--gold);
}

/* 6. PMT Executive Leadership — center on page (force flex with auto-width) */
.exec-team {
  text-align: center !important;
  max-width: 1000px;
  margin: 32px auto 0 !important;
}
.exec-team h4 {
  text-align: center !important;
  margin: 0 auto 24px !important;
  max-width: 600px;
}
.exec-team .exec-row {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 36px !important;
  grid-template-columns: none !important;
  margin: 0 auto !important;
}
.exec-team .exec {
  flex: 0 0 auto !important;
  width: 160px !important;
  text-align: center !important;
}
.exec-team .exec .photo {
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  margin: 0 auto 14px !important;
  background: #f4f1e8;
}
.exec-team .exec .photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 22% !important;  /* Bias upward so face top isn't cut */
  display: block !important;
}

/* 7. Three-grids-clean OLD class fallback (in case any thesis page uses old classes) */
.three-grids { background: transparent; }

/* 8. News page header — apply portfolio blue to match other page headers (it should already
   inherit .page-header but reaffirm) */
/* (Already covered by .page-header rule in earlier round.) */

/* ============================================================
   AGP ROUND 15 — Primary Criteria bars are NOT clickable
   (visual indicator only; remove cursor:pointer + hover effects)
   ============================================================ */
.criteria-section .primary-bar,
.criteria-section .primary-bars .primary-bar {
  cursor: default !important;
  pointer-events: none !important;
  transition: none !important;
}
.criteria-section .primary-bar:hover,
.criteria-section .primary-bar:focus,
.criteria-section .primary-bar:active,
.criteria-section .primary-bars.is-interactive .primary-bar:hover {
  background: var(--paper) !important;
  background-image: none !important;
  border-color: var(--line) !important;
  transform: none !important;
  box-shadow: none !important;
  color: inherit !important;
}
/* Re-allow keyboard tab focus ring for accessibility but no visual transform */
.criteria-section .primary-bar:focus-visible {
  pointer-events: auto !important;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
