@font-face {
  font-family: "TeX Gyre Heros";
  src: url("../assets/fonts/texgyreheros-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TeX Gyre Heros";
  src: url("../assets/fonts/texgyreheros-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../assets/fonts/SpaceMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("../assets/fonts/SpaceMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-color: #9fc4ee;
  --background: #ffffff;
  --background-soft: #f8fafc;
  --background-blue: #eef6ff;
  --text-primary: #111111;
  --text-secondary: #6f7478;
  --text-muted: #a6adb3;
  --border-light: rgba(17, 17, 17, 0.08);
  --border-medium: rgba(17, 17, 17, 0.14);
  --surface: #ffffff;
  --surface-soft: #f7f9fb;
  --surface-blue: #eff6fe;
  --success: #66d6b6;
  --warning: #efd98b;
  --danger: #e9a0a0;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 12px 40px rgba(17, 17, 17, 0.035);
  --font-main: "TeX Gyre Heros", "Helvetica Neue", Arial, sans-serif;
  --font-caption: "Space Mono", "SF Mono", monospace;
  --page-pad: clamp(20px, 4vw, 72px);
  --motion-fast: 180ms;
  --motion-standard: 650ms;
  --motion-slow: 900ms;
  --motion-ambient: 18s;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-interaction: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ambient: ease-in-out;
}

* {
  box-sizing: border-box;
}

html {
  font-family: var(--font-main);
  background: var(--background);
  color: var(--text-primary);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text-primary);
}

body.modal-open {
  overflow: hidden;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(186, 213, 243, 0.55);
  color: #111111;
}

:focus-visible {
  outline: 2px solid var(--brand-color);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px var(--page-pad);
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 400ms var(--ease-premium),
    transform 400ms var(--ease-premium),
    background var(--motion-fast) var(--ease-interaction),
    border-color var(--motion-fast) var(--ease-interaction);
}

body.is-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-scrolled {
  background: #ffffff;
  border-bottom-color: var(--border-light);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-logo {
  width: clamp(132px, 14vw, 180px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
}

.nav-link {
  position: relative;
  padding-block: 6px;
  font-size: 0.88rem;
  color: rgba(17, 17, 17, 0.62);
  text-decoration: none;
  transition:
    color var(--motion-fast) var(--ease-interaction),
    opacity var(--motion-fast) var(--ease-interaction);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand-color);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity var(--motion-fast) var(--ease-interaction),
    transform var(--motion-fast) var(--ease-interaction);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--motion-fast) var(--ease-interaction),
    border-color var(--motion-fast) var(--ease-interaction),
    background-color var(--motion-fast) var(--ease-interaction),
    color var(--motion-fast) var(--ease-interaction);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: #ffffff;
  /* background: var(--brand-color); */
  background: var(--text-primary);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.button-small {
  min-height: 36px;
  padding: 9px 13px;
  font-size: 0.82rem;
}

.button-secondary {
  color: #111111;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-light);
}

.button-secondary:hover {
  border-color: var(--border-medium);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.icon-arrow {
  display: inline-block;
  width: 0.92em;
  height: 0.92em;
  background-color: currentColor;
  mask: url("../assets/icons/arrow.svg") center / contain no-repeat;
}

.icon-arrow.up {
  transform: rotate(-90deg);
}

.icon-arrow.down {
  transform: rotate(90deg);
}

.icon-arrow.left {
  transform: rotate(180deg);
}

.icon-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--text-primary);
}

.icon-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.82;
}

.card .icon-mark {
  display: grid;
  margin-bottom: 28px;
}

.card .icon-mark + .card-index {
  margin-top: 0;
}

.cta-copy .icon-mark,
.briefing-copy .icon-mark {
  display: grid;
  margin-bottom: 24px;
}

.section-pad {
  padding: clamp(72px, 9vw, 132px) var(--page-pad);
}

.atmospheric-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(186, 213, 243, 0.72), transparent 38%),
    linear-gradient(180deg, rgba(186, 213, 243, 0.45) 0%, #ffffff 72%);
  background-size: 120% 120%;
  animation: gradient-drift var(--motion-ambient) var(--ease-ambient) infinite;
}

.hero-lighthouse {
  isolation: isolate;
  --dark-lighthouse-opacity: 1;
  --lighthouse-shift: 0px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.76) 0%, rgba(7, 12, 18, 0.52) 46%, rgba(7, 12, 18, 0.18) 100%),
    url("../assets/images/lighthouse.png") center calc(50% + var(--lighthouse-shift)) / cover no-repeat;
  animation: none;
}

.hero-lighthouse::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: var(--dark-lighthouse-opacity);
  background: url("../assets/images/lighthousedark.png") center calc(50% + var(--lighthouse-shift)) / cover no-repeat;
  transition: opacity 80ms linear;
}

.hero-lighthouse .hero-copy {
  position: relative;
  z-index: 1;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-lighthouse .eyebrow,
.hero-lighthouse .hero-text {
  color: rgba(255, 255, 255, 0.78);
}

.hero-image {
  color: #ffffff;
  animation: none;
}

.hero-image .hero-copy {
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-image .eyebrow,
.hero-image .hero-text {
  color: rgba(255, 255, 255, 0.8);
}

.hero-office {
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.74) 0%, rgba(7, 12, 18, 0.48) 48%, rgba(7, 12, 18, 0.2) 100%),
    url("../assets/images/office.png") center / cover no-repeat;
}

.hero-pillar {
  background:
    linear-gradient(90deg, rgba(7, 12, 18, 0.76) 0%, rgba(7, 12, 18, 0.5) 48%, rgba(7, 12, 18, 0.22) 100%),
    url("../assets/images/pillar.png") center / cover no-repeat;
}

@keyframes gradient-drift {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 52% 4%;
  }

  100% {
    background-position: 50% 0%;
  }
}

.hero {
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding-top: 120px;
}

.hero-single {
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  max-width: 920px;
}

.hero-copy .eyebrow,
.hero-copy .hero-text,
.hero-copy .button-row {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--motion-standard) var(--ease-premium),
    transform var(--motion-standard) var(--ease-premium);
}

.hero-copy .eyebrow {
  transition-duration: 500ms;
  transition-delay: 120ms;
}

.hero-copy .hero-text {
  transition-delay: 560ms;
}

.hero-copy .button-row {
  transition-delay: 680ms;
}

body.is-loaded .hero-copy .eyebrow,
body.is-loaded .hero-copy .hero-text,
body.is-loaded .hero-copy .button-row {
  opacity: 1;
  transform: translateY(0);
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--motion-slow) var(--ease-premium),
    transform var(--motion-slow) var(--ease-premium);
}

body.is-loaded .hero-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow,
.ui-label {
  margin: 0;
  font-family: var(--font-caption);
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.interface-frame {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(32, 62, 92, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.policy-panel {
  padding: clamp(24px, 4vw, 44px);
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  font-family: var(--font-caption);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(102, 214, 182, 0.16);
}

.panel-metric strong {
  display: block;
  max-width: 480px;
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.signal-list {
  display: grid;
  gap: 0;
  margin-top: 44px;
}

.signal-list > div {
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
  background: transparent;
}

.signal-list p {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--text-secondary);
  line-height: 1.45;
}

.intro-section,
.services-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.intro-copy {
  max-width: 980px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.positioning-section .intro-copy {
  width: 100%;
  max-width: 1030px;
}

.positioning-section .intro-copy p {
  max-width: 100%;
}

.intro-copy h2,
.section-heading h2,
.cta-copy h2 {
  max-width: 1030px;
}

.intro-copy p,
.cta-copy p {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.intro-copy h2 + p,
.section-heading h2 + p,
.cta-copy h2 + p {
  margin-top: 24px;
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.2), rgba(248, 250, 252, 0.92)),
    var(--background-soft);
}

.section-heading {
  display: grid;
  max-width: 1120px;
  gap: 18px;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.two-column-grid,
.quote-grid,
.engagement-grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}

.two-column-grid,
.quote-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.engagement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-item,
.news-card,
.bio-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--motion-fast) var(--ease-interaction),
    border-color var(--motion-fast) var(--ease-interaction),
    box-shadow var(--motion-fast) var(--ease-interaction);
}

.card {
  min-height: 220px;
  padding: clamp(24px, 3vw, 42px);
}

.card:hover,
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.045);
}

.bio-card:hover {
  transform: none;
}

.card-index {
  display: inline-block;
  margin-bottom: 28px;
  font-family: var(--font-caption);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.card p,
.service-item p,
.news-card p,
.featured-news p {
  margin-bottom: 0;
  color: var(--text-secondary);
  line-height: 1.45;
}

.quote-card {
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  margin-bottom: 28px;
  color: var(--text-primary);
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.quote-card cite {
  font-family: var(--font-caption);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-note {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.45;
}

.narrative-section .section-heading {
  max-width: 960px;
}

.content-stack {
  display: grid;
  max-width: 980px;
  gap: clamp(18px, 3vw, 34px);
}

.text-panel {
  display: grid;
  gap: 18px;
}

.text-panel p,
.statement-copy {
  max-width: 880px;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.18vw, 1.24rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.statement-copy {
  margin-top: 28px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
  color: var(--text-secondary);
  line-height: 1.45;
}

.who-section {
  background: var(--background);
}

.pennsylvania-figure {
  width: 100%;
  margin-inline: auto;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
}

.bio-card {
  padding: clamp(24px, 3vw, 42px);
}

.bio-card-full {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
}

.bio-card-full h3,
.bio-card-full p {
  max-width: 1120px;
}

.bio-card h3 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 2.8vw, 3rem);
}

.bio-card p {
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.bio-card p:last-child {
  margin-bottom: 0;
}

.featured-news p + p,
.news-card p + .button {
  margin-top: 16px;
}

.section-action {
  margin-top: 34px;
}

.intelligence-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(186, 213, 243, 0.28), transparent 32%),
    #ffffff;
}

.news-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.featured-news {
  min-height: 420px;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--border-light);
}

.featured-news h3 {
  max-width: 720px;
  margin-top: 72px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.news-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-meta span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-caption);
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.featured-news .tag-row {
  margin-top: 28px;
}

.featured-news .button,
.news-card .button {
  margin-top: 24px;
}

.archive-news {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.news-card {
  padding: 24px;
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.news-card:last-child {
  border-bottom: 0;
}

.news-card h3 {
  margin-top: 16px;
  font-size: 1.2rem;
}

.services-preview {
  align-items: start;
}

.services-preview .section-heading {
  align-content: start;
  margin-bottom: 0;
}

.services-preview .section-heading .button {
  width: max-content;
  margin-top: 24px;
}

.services-list {
  display: grid;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-list-wide {
  max-width: 980px;
}

.service-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 3vw, 36px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-item:hover {
  z-index: 1;
  transform: translateY(-3px);
  border-color: var(--border-medium);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.045);
}

.service-item::before {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  content: "";
  border-radius: 999px;
  background: var(--brand-color);
}

.service-item:has(.service-icon)::before {
  display: none;
}

.service-icon {
  width: 44px;
  height: 44px;
}

.service-icon img {
  width: 36px;
  height: 36px;
}

.service-item h3 {
  margin: 0;
}

.statement-section {
  padding: clamp(72px, 9vw, 132px) var(--page-pad);
}

.statement-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 72px);
}

.statement-inner {
  max-width: 1180px;
}

.statement-inner h2 {
  font-size: clamp(3rem, 7vw, 8.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.statement-inner span {
  color: #73aeee;
}

.editorial-figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.editorial-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(0.68) contrast(0.94) brightness(1.04);
  transform: scale(1.02);
  transition: transform var(--motion-slow) var(--ease-premium);
}

.editorial-figure.is-visible img {
  transform: scale(1);
}

.feature-figure {
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-figure img,
.narrative-figure img,
.vision-figure img,
.pennsylvania-figure img {
  object-fit: contain;
  padding: clamp(18px, 4vw, 42px);
  filter: saturate(0.9) contrast(0.98) brightness(1.02);
}

.narrative-figure {
  width: min(100%, 520px);
  aspect-ratio: 16 / 10;
}

.planning-figure {
  margin-top: clamp(28px, 4vw, 52px);
}

.vision-figure,
.pennsylvania-figure {
  width: 100%;
  aspect-ratio: 21 / 9;
  margin-inline: auto;
}

.vision-figure img {
  object-fit: cover;
  padding: 0;
  filter: saturate(0.68) contrast(0.94) brightness(1.04);
  object-position: 50% 45%;
}

.pennsylvania-figure img {
  object-fit: cover;
  padding: 0;
  filter: saturate(0.68) contrast(0.94) brightness(1.04);
  object-position: 72% 42%;
}

.pennsylvania-figure {
  margin-bottom: clamp(48px, 7vw, 96px);
}

.cta-section {
  display: grid;
  place-items: center;
  min-height: 56svh;
  text-align: center;
}

.cta-copy {
  display: grid;
  justify-items: center;
  max-width: 980px;
  gap: 22px;
}

.briefing-layout {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  text-align: left;
}

.briefing-copy h2 {
  max-width: 680px;
  margin-bottom: 32px;
}

.briefing-copy p {
  max-width: 620px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.45;
}

.briefing-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(32, 62, 92, 0.08);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.briefing-form label {
  display: grid;
  gap: 8px;
}

.briefing-form label span {
  font-family: var(--font-caption);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.briefing-form input,
.briefing-form select,
.briefing-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-family: var(--font-main);
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.briefing-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(220px, 0.85fr) minmax(220px, 0.8fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  padding: clamp(54px, 7vw, 96px) var(--page-pad) 56px;
  --footer-font-top-offset: -0.09em;
  color: var(--text-secondary);
  background: var(--background-soft);
  border-top: 1px solid var(--border-light);
}

.site-footer p {
  max-width: 340px;
  margin: 14px 0 0;
  line-height: 1.25;
  transform: translateY(var(--footer-font-top-offset));
}

.site-footer > div {
  align-self: start;
  padding-top: 0;
}

.footer-brand {
  color: var(--text-primary);
  line-height: 1;
  transform: translateY(var(--footer-font-top-offset));
}

.site-footer .ui-label {
  margin-top: 0;
  line-height: 1;
}

.copyright {
  font-family: var(--font-caption);
  font-size: 0.68rem;
  --footer-font-top-offset: -0.04em;
  text-transform: uppercase;
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--motion-fast) var(--ease-interaction),
    visibility var(--motion-fast) var(--ease-interaction);
}

.article-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(10px);
}

.article-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 880px);
  max-height: min(84svh, 820px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  box-shadow: 0 24px 90px rgba(17, 17, 17, 0.16);
}

.modal-close {
  justify-self: end;
  min-height: 40px;
  margin: 18px 18px 0;
  padding: 9px 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.article-modal-scroll {
  overflow-y: auto;
  padding: clamp(24px, 4vw, 52px);
}

.article-modal-scroll h2 {
  margin-top: 28px;
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.article-body {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.article-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  line-height: 1.55;
}

.article-modal-footer {
  padding: 18px clamp(24px, 4vw, 52px);
  background: rgba(248, 250, 252, 0.92);
  border-top: 1px solid var(--border-light);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--motion-standard) var(--ease-premium),
    transform var(--motion-standard) var(--ease-premium);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.statement-section .reveal,
.cta-section .reveal,
.editorial-figure.reveal {
  transition-duration: var(--motion-slow);
}

.reveal-stagger > .reveal:nth-child(2),
.point-grid > .reveal:nth-child(2),
.two-column-grid > .reveal:nth-child(2),
.quote-grid > .reveal:nth-child(2),
.engagement-grid > .reveal:nth-child(2),
.services-list > .reveal:nth-child(2),
.bio-grid > .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger > .reveal:nth-child(3),
.point-grid > .reveal:nth-child(3),
.engagement-grid > .reveal:nth-child(3),
.services-list > .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger > .reveal:nth-child(4),
.services-list > .reveal:nth-child(4) {
  transition-delay: 240ms;
}

.motion-delay-1 {
  transition-delay: 80ms;
}

.motion-delay-2 {
  transition-delay: 160ms;
}

.motion-delay-3 {
  transition-delay: 240ms;
}

.motion-delay-4 {
  transition-delay: 320ms;
}

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

  .site-header,
  .reveal,
  .hero-copy .eyebrow,
  .hero-copy .hero-text,
  .hero-copy .button-row,
  .hero-line {
    opacity: 1 !important;
    transform: none !important;
  }

  .editorial-figure img {
    transform: none !important;
  }

}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 16px;
  }

  .nav-link {
    min-height: 48px;
    padding: 15px 12px;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link:last-child {
    border-bottom: 0;
  }

  .hero,
  .intro-section,
  .split-feature,
  .services-preview,
  .news-shell,
  .briefing-layout,
  .statement-layout,
  .site-footer,
  .two-column-grid,
  .quote-grid,
  .engagement-grid,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
  }

  .featured-news {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .archive-news {
    grid-template-rows: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 82px;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: end;
    gap: 16px;
    visibility: visible;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-link {
    min-height: auto;
    padding: 0;
    border-bottom: 0;
    font-size: 0.86rem;
    line-height: 1.1;
  }

  .nav-link::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .section-pad {
    padding-block: 88px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-lighthouse {
    min-height: 88svh;
    background:
      linear-gradient(180deg, rgba(7, 12, 18, 0.82) 0%, rgba(7, 12, 18, 0.58) 62%, rgba(7, 12, 18, 0.3) 100%),
      url("../assets/images/lighthouse.png") center calc(50% + var(--lighthouse-shift)) / cover no-repeat;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .point-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
    padding: 24px;
  }

  .quote-card {
    padding: 22px;
  }

  .quote-card p {
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 8vw, 2.4rem);
  }

  .card-index {
    margin-bottom: 20px;
  }

  .panel-metric strong,
  .featured-news h3 {
    font-size: clamp(2rem, 12vw, 3.8rem);
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
