:root {
  --ink: #121826;
  --ink-soft: #4c566d;
  --navy: #111b42;
  --blue: #2537d7;
  --blue-dark: #172589;
  --lime: #dfe3fb;
  --lime-dark: #2537d7;
  --paper: #efede7;
  --surface: #ffffff;
  --line: #d6d2c9;
  --content: 76rem;
  --reading: 48rem;
  --radius-sm: 0.2rem;
  --radius-md: 0.35rem;
  --radius-lg: 0.5rem;
  --shadow: 0 1.5rem 4rem rgb(17 27 66 / 9%);
  --space-xs: 0.5rem;
  --space-sm: 0.8rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: clamp(4rem, 9vw, 8rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--lime-dark);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 6.25rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.shell {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--surface);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 10.4rem;
  height: auto;
}

.site-nav ul,
.footer-links,
.feature-list,
.stat-list,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul {
  display: flex;
  gap: 0.2rem 1.1rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-block;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--blue);
  color: var(--blue);
}

.site-nav .nav-contact {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  color: var(--surface);
  background: var(--blue);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  border-color: var(--navy);
  color: var(--surface);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  min-height: 2.75rem;
  padding: 0;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  cursor: pointer;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.nav-toggle i {
  position: relative;
}

.nav-toggle i::before,
.nav-toggle i::after {
  position: absolute;
  left: 0;
}

.nav-toggle i::before {
  top: -0.35rem;
}

.nav-toggle i::after {
  top: 0.35rem;
}

.nav-toggle[aria-expanded="true"] i {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.project-hero {
  padding-block: clamp(2rem, 6vw, 5.5rem);
  background: var(--paper);
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.project-hero-copy {
  padding-block: 1rem;
}

.project-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  color: var(--navy);
  font-size: clamp(3.5rem, 6vw, 5.6rem);
}

.project-status {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-hero-media {
  position: relative;
  width: 100%;
  max-width: 52rem;
  margin: 0;
  justify-self: end;
}

.project-hero-media::before {
  position: absolute;
  z-index: -1;
  top: -1rem;
  right: -1rem;
  width: 46%;
  height: calc(100% + 2rem);
  background: #ded9cf;
  content: "";
}

.project-hero-media img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  filter: saturate(0.88) contrast(1.03);
  object-fit: cover;
}

.project-hero-media figcaption,
.editorial-image figcaption {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts {
  background: var(--navy);
}

.fact-list {
  display: grid;
  margin-block: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.fact-list li {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.fact-list li:last-child {
  border-right: 0;
}

.fact-list strong,
.fact-list span {
  display: block;
}

.fact-list strong {
  color: var(--surface);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.fact-list span {
  margin-top: 0.55rem;
  color: rgb(255 255 255 / 62%);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-nav {
  position: sticky;
  z-index: 15;
  top: 5rem;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(0.8rem);
}

.project-nav .shell {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
}

.project-nav a {
  flex: 0 0 auto;
  padding-block: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-nav a:hover {
  color: var(--blue);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark-section .eyebrow,
.contact-band .eyebrow {
  color: #b9c2ff;
}

.hero-lede {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-lede {
  max-width: 58ch;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  padding: 0.75rem 1.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  color: var(--surface);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.button:hover {
  border-color: var(--navy);
  background: var(--navy);
}

.button-secondary {
  color: var(--surface);
  border-color: rgb(255 255 255 / 55%);
  background: transparent;
}

.button-secondary:hover {
  color: var(--navy);
  border-color: var(--surface);
  background: var(--surface);
}

.text-link {
  display: inline-flex;
  min-height: 3.15rem;
  gap: 0.5rem;
  align-items: center;
  border-bottom: 1px solid var(--blue);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  color: var(--blue);
}

.section {
  padding-block: var(--space-xl);
}

.section-white {
  background: var(--surface);
}

.dark-section {
  color: var(--surface);
  background: var(--navy);
}

.section-intro {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-intro p:not(.eyebrow),
.rich-text p,
.split-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.dark-section .section-intro p:not(.eyebrow),
.dark-section .split-copy > p:not(.eyebrow) {
  color: rgb(255 255 255 / 72%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: center;
}

.split-wide-copy {
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
  align-items: start;
}

.split-image {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-image-portrait img {
  aspect-ratio: 3 / 4;
}

.split-image-natural img {
  aspect-ratio: auto;
  object-fit: contain;
}

.company-note {
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 0.3rem solid var(--blue);
  background: var(--paper);
}

.company-note strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}

.company-note p {
  max-width: 25rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
}

.timeline li {
  min-height: 18rem;
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem) 2rem 0;
  border-right: 1px solid var(--line);
}

.timeline li + li {
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
}

.timeline li:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.timeline p,
.commitment-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.commitment-grid {
  display: grid;
  margin-top: clamp(2rem, 6vw, 5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.commitment-grid article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface);
}

.spec-intro {
  max-width: 58rem;
  margin-bottom: 0;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-list li {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
}

.stat-list li:last-child {
  border-right: 0;
}

.stat-list strong {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.stat-list span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-images {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
}

.editorial-image {
  margin: 0;
}

.editorial-image-wide {
  grid-row: span 2;
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-image-wide img {
  height: 100%;
  min-height: 37rem;
}

.showcase-section {
  background: #e5e0d6;
}

.render-note {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vw, 9rem);
  color: var(--surface);
  background: var(--navy);
}

.page-hero::before {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border: 5rem solid rgb(102 119 255 / 10%);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  position: relative;
  margin-bottom: 0;
}

.page-hero .page-lede {
  margin-top: 1.5rem;
}

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

.gallery-group + .gallery-group {
  margin-top: clamp(3.5rem, 8vw, 7rem);
}

.gallery-group > h2 {
  margin-bottom: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: var(--navy);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery-card > a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.plan-card > a {
  display: block;
  text-decoration: none;
}

.gallery-card > a:focus-visible {
  outline-color: var(--surface);
  outline-offset: -5px;
}

.gallery-card:hover img {
  transform: scale(1.02);
}

.gallery-card figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--surface);
  background: rgb(17 27 66 / 86%);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.35;
  pointer-events: none;
  text-align: right;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--surface);
  background: rgb(7 11 28 / 97%);
}

.lightbox::backdrop {
  background: rgb(7 11 28 / 80%);
}

.lightbox-frame {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: clamp(3.5rem, 8vh, 6rem) clamp(3.5rem, 7vw, 6rem);
  place-items: center;
}

.lightbox figure {
  display: grid;
  max-width: min(82rem, 88vw);
  max-height: 82vh;
  max-height: 82dvh;
  margin: 0;
  place-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 72vh;
  max-height: 72dvh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 0.8rem;
  color: rgb(255 255 255 / 68%);
  font-size: 0.75rem;
}

.lightbox button {
  border: 0;
  color: var(--surface);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.lightbox button:focus-visible {
  outline-color: var(--surface);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.5rem;
  padding: 0.65rem;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgb(255 255 255 / 35%) !important;
  border-radius: 50%;
  font-size: 1.25rem !important;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-count {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  margin: 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.plan-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.plan-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.plan-card figcaption {
  padding: 0.7rem 0.25rem 0.2rem;
}

.plan-card figcaption strong,
.plan-card figcaption span {
  display: block;
}

.plan-card figcaption strong {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card figcaption span {
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.sheet-card {
  display: grid;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  gap: 2rem;
  align-content: space-between;
}

.sheet-card h3 {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.sheet-summary {
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

.sheet-data {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.sheet-data div {
  display: flex;
  gap: 1rem;
  padding-block: 0.85rem;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.sheet-data dt {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.sheet-data dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.sheet-card .button {
  justify-self: start;
}

.plan-note,
.map-note {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.feature-list li {
  padding: 1.25rem 1rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.feature-list li::before {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.65rem;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--blue);
  content: "+";
  font-weight: 900;
}

.map-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-sm);
}

.map-link {
  display: block;
  color: inherit;
}

.map-link:focus-visible {
  border-radius: var(--radius-sm);
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.map-image img {
  width: 100%;
  transition: transform 240ms ease;
}

.map-link:hover .map-image img {
  transform: scale(1.015);
}

.map-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 20rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  color: var(--surface);
  background: var(--navy);
  font-weight: 750;
}

.map-label span,
.map-label strong {
  display: block;
}

.map-label strong {
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-band {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  color: var(--surface);
  background: var(--navy);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.contact-band h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
}

.contact-list a {
  color: var(--surface);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 750;
  text-decoration-color: #9aa7ff;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.contact-list strong {
  color: var(--surface);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 750;
}

.contact-list span {
  display: block;
  color: rgb(255 255 255 / 75%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 7rem;
  padding-top: 1rem;
  border-top: 0.25rem solid var(--blue);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.rich-text {
  max-width: var(--reading);
}

.rich-text h2 {
  margin-top: 3.5rem;
  font-family: system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.rich-text h2:first-child {
  margin-top: 0;
}

.rich-text p {
  margin-bottom: 1.25rem;
}

.rich-text a {
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

.site-footer {
  padding-block: 3.5rem;
  color: rgb(255 255 255 / 72%);
  background: #090f28;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) repeat(2, minmax(10rem, auto));
  gap: 2.5rem;
  align-items: start;
}

.footer-brand img {
  width: 8.5rem;
}

.footer-brand p {
  max-width: 28rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.footer-title {
  margin-bottom: 0.8rem;
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #aeb8ff;
}

.footer-links a[aria-current="page"] {
  color: var(--surface);
  text-decoration: underline;
  text-decoration-color: #aeb8ff;
  text-underline-offset: 0.25rem;
}

.dark-section a:focus-visible,
.dark-section button:focus-visible,
.contact-band a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--surface);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.75rem;
}

@media (max-width: 60rem) {
  .header-inner {
    padding-block: 0.9rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
  }

  .site-nav ul {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-enhanced .header-inner {
    min-height: 4.5rem;
    padding-block: 0;
    align-items: center;
    flex-direction: row;
  }

  .nav-enhanced .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-enhanced .site-nav {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 4.5rem);
    height: var(--menu-height, calc(100dvh - 4.5rem));
    width: auto;
    padding: clamp(2rem, 8vw, 5rem);
    overflow-y: auto;
    background: var(--paper);
  }

  .nav-enhanced .site-nav.is-open {
    display: block;
  }

  .nav-enhanced .site-nav ul {
    display: grid;
    width: auto;
    gap: 0;
  }

  .nav-enhanced .site-nav a {
    display: block;
    padding-block: 0.85rem;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .nav-enhanced .site-nav .nav-contact {
    margin-top: 0.85rem;
    padding-inline: 1rem;
    border-bottom: 1px solid var(--blue);
    color: var(--surface);
    background: var(--blue);
  }

  .nav-enhanced .site-nav a[aria-current="page"] {
    border-color: var(--blue);
    color: var(--blue);
  }

  .nav-enhanced .site-nav .nav-contact[aria-current="page"] {
    border-color: var(--navy);
    color: var(--surface);
    background: var(--navy);
  }

  .menu-open {
    overflow: hidden;
  }

  .project-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project-hero-media {
    max-width: none;
    grid-row: 1;
  }

  .project-hero-copy {
    max-width: 42rem;
    grid-row: 2;
  }

  .split,
  .split-wide-copy,
  .legal-layout,
  .timeline,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .timeline li,
  .timeline li + li {
    min-height: 0;
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline li:last-child {
    border-bottom: 0;
  }

  .timeline span {
    margin-bottom: 1rem;
  }

  .legal-aside {
    position: static;
  }

  .contact-band-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 42rem) {
  .project-nav {
    display: none;
  }

  .project-hero {
    padding-top: 1rem;
  }

  .project-hero-grid {
    grid-template-columns: 1fr;
  }

  .project-hero-media {
    grid-row: 1;
  }

  .project-hero-copy {
    grid-row: 2;
  }

  .project-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .project-hero-media::before {
    display: none;
  }

  .fact-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-list li:nth-child(2) {
    border-right: 0;
  }

  .fact-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .stat-list,
  .plan-grid,
  .feature-list,
  .editorial-images,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-list li:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    width: 100%;
    padding-right: 0;
    overflow: visible;
    gap: 0.75rem;
  }

  .gallery-card {
    min-width: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
    grid-column: auto;
  }

  .editorial-image-wide {
    grid-row: auto;
  }

  .editorial-image-wide img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .map-label {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .lightbox-frame {
    padding: 4rem 1rem 5rem;
  }

  .lightbox img {
    max-height: 64vh;
    max-height: 64dvh;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 1rem;
  }

  .lightbox-prev {
    right: 4.75rem;
    left: auto;
  }

  .lightbox-next {
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
