.project-page {
  background: #f7f8f5;
}

.project-page .site-header:not(.scrolled) {
  color: #fff;
}

.project-hero {
  position: relative;
  display: grid;
  min-height: min(820px, 88svh);
  grid-template-rows: 1fr auto;
  align-items: end;
  color: #fff;
  background: #101712;
  overflow: hidden;
}

.project-hero-image,
.project-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-hero-image {
  object-fit: cover;
  object-position: 50% 54%;
}

.project-hero-shade {
  background: linear-gradient(90deg, rgba(5, 12, 8, .84) 0%, rgba(5, 12, 8, .54) 46%, rgba(5, 12, 8, .12) 78%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 112px;
  padding-bottom: 48px;
}

.project-hero-content h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 84px;
}

.project-hero-content > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: 27px;
  line-height: 1.3;
}

.project-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.project-facts {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  background: rgba(9, 20, 13, .9);
  border-top: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(12px);
}

.project-facts div {
  min-width: 0;
  padding: 18px max(18px, calc((100vw - var(--max)) / 8));
}

.project-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.project-facts dt {
  color: #aebbb2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 800;
}

.project-intro {
  background: #fff;
}

.project-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: 80px;
  align-items: start;
}

.project-intro-grid h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 64px;
}

.project-intro-copy {
  padding-top: 34px;
  color: #59685e;
  font-size: 19px;
}

.project-intro-copy p:last-child {
  margin-bottom: 0;
}

.product-geometry {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  gap: 52px;
  margin-top: 72px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.module-map {
  display: grid;
  min-height: 310px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 34%;
  color: #fff;
  background: #17241c;
  border: 1px solid #263b2d;
}

.module-map span,
.module-map strong {
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.module-map span {
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.module-map span:nth-child(3) {
  border-right: 0;
}

.module-map strong {
  grid-column: 1 / -1;
  align-items: center;
  color: #0a1b11;
  background: #79e5a8;
}

.module-map-one {
  grid-template-columns: 1fr;
}

.module-map-one span {
  border-right: 0;
}

.module-map-two {
  grid-template-columns: repeat(2, 1fr);
}

.module-map-two span:nth-child(2) {
  border-right: 0;
}

.architecture-mosaic {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 480px;
  background: #17241c;
}

.architecture-mosaic-two {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
  min-height: 430px;
}

.architecture-mosaic-three {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.architecture-mosaic-three .architecture-shot:first-child {
  grid-row: 1 / -1;
}

.architecture-mosaic-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 540px;
}

.architecture-mosaic-five {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 620px;
}

.architecture-mosaic-five .architecture-shot:first-child,
.architecture-mosaic-five .architecture-shot:nth-child(4),
.architecture-mosaic-five .architecture-shot:nth-child(5) {
  grid-column: span 2;
}

.architecture-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #17241c;
  isolation: isolate;
}

.architecture-shot::after {
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 13, 8, .84));
}

.architecture-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .65, .25, 1);
}

.architecture-shot:hover img {
  transform: scale(1.025);
}

.architecture-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: baseline;
  padding: 22px;
  color: #fff;
}

.architecture-shot figcaption span {
  grid-row: 1 / span 2;
  color: #79e5a8;
  font-size: 13px;
  font-weight: 900;
}

.architecture-shot figcaption strong {
  font-size: 19px;
  line-height: 1.15;
}

.architecture-shot figcaption small {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.35;
}

.geometry-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.geometry-copy > span {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.geometry-copy > strong {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.22;
}

.geometry-copy p {
  margin-bottom: 0;
  color: #657269;
}

.view-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
}

.view-main {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #111a14;
}

.view-main img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  transition: opacity .18s ease, transform .42s ease;
}

.view-main.is-changing img {
  opacity: .34;
  transform: scale(1.012);
}

.view-main figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(160px, .35fr) minmax(260px, .65fr);
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: #fff;
  background: rgba(7, 15, 10, .86);
  border-top: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
}

.view-main figcaption span {
  color: #85e7ae;
  font-weight: 850;
}

.view-main figcaption strong {
  font-size: 19px;
}

.view-main figcaption small {
  color: #c2cec5;
  font-size: 14px;
}

.view-selector {
  display: grid;
  min-width: 0;
  grid-template-rows: repeat(6, 1fr);
  gap: 8px;
}

.view-thumb {
  position: relative;
  min-height: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  background: #142019;
  border: 2px solid transparent;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

.view-thumb img {
  width: 100%;
  height: 100%;
  min-height: 86px;
  object-fit: cover;
  opacity: .52;
  transition: opacity .18s ease, transform .28s ease;
}

.view-thumb span,
.view-thumb strong {
  position: absolute;
  left: 10px;
  z-index: 1;
  text-shadow: 0 2px 12px #000;
}

.view-thumb span {
  top: 8px;
  color: #9af1be;
  font-size: 11px;
  font-weight: 850;
}

.view-thumb strong {
  bottom: 8px;
  font-size: 13px;
}

.view-thumb:hover img,
.view-thumb.is-active img {
  opacity: .9;
  transform: scale(1.035);
}

.view-thumb.is-active {
  border-color: var(--green);
}

.life-plan {
  background: #fff;
}

.life-plan-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 76px;
}

.life-plan-heading h2 {
  font-size: 54px;
}

.life-plan-heading > p:last-child {
  max-width: 540px;
  color: #607067;
  font-size: 18px;
}

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

.life-zones article {
  padding: 28px 24px 34px;
}

.life-zones article + article {
  border-left: 1px solid var(--line);
}

.life-zones span {
  display: block;
  margin-bottom: 58px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
}

.life-zones h3 {
  font-size: 26px;
}

.life-zones p {
  margin-bottom: 0;
  color: #647269;
}

.life-image {
  position: relative;
  margin-top: 64px;
}

.life-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.life-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  max-width: 520px;
  gap: 4px;
  padding: 22px 26px;
  color: #fff;
  background: rgba(9, 20, 13, .9);
}

.life-image figcaption strong {
  font-size: 18px;
}

.life-image figcaption span {
  color: #c5d0c8;
}

.engineering,
.project-cta {
  position: relative;
  color: #fff;
  background: #0c1510;
  overflow: hidden;
}

.engineering {
  min-height: 780px;
  display: flex;
  align-items: center;
}

.engineering-image,
.engineering-shade,
.project-cta > img,
.project-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.engineering-image,
.project-cta > img {
  object-fit: cover;
}

.engineering-shade {
  background: linear-gradient(90deg, rgba(5, 13, 8, .95) 0%, rgba(5, 13, 8, .78) 48%, rgba(5, 13, 8, .22) 78%);
}

.engineering-content {
  position: relative;
  z-index: 1;
}

.engineering-content h2 {
  max-width: 800px;
  font-size: 60px;
}

.engineering-content > p:not(.eyebrow) {
  max-width: 680px;
  color: #d0dbd3;
  font-size: 19px;
}

.engineering-list {
  max-width: 720px;
  margin: 38px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.engineering-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.engineering-list span {
  color: #89eeb4;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.engineering-list strong {
  font-size: 16px;
}

.project-specs {
  background: #fff;
}

.specs-grid {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: 80px;
}

.specs-grid h2 {
  font-size: 48px;
}

.specs-grid > div > p:last-child {
  color: #657269;
  font-size: 17px;
}

.spec-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(170px, .38fr) minmax(0, .62fr);
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  color: #68776e;
}

.spec-table dd {
  margin: 0;
  font-weight: 750;
}

.project-cta {
  min-height: 680px;
  display: flex;
  align-items: center;
}

.project-cta-shade {
  background: linear-gradient(90deg, rgba(5, 13, 8, .9) 0%, rgba(5, 13, 8, .64) 54%, rgba(5, 13, 8, .16) 82%);
}

.project-cta-content {
  position: relative;
  z-index: 1;
}

.project-cta-content h2 {
  max-width: 800px;
  font-size: 60px;
}

.project-cta-content > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 28px;
  color: #d1dcd4;
  font-size: 19px;
}

@media (max-width: 1080px) {
  .project-hero-content h1 { font-size: 68px; }
  .project-hero-content > p:not(.eyebrow) { font-size: 24px; }
  .project-intro-grid,
  .product-geometry,
  .life-plan-grid,
  .specs-grid { gap: 44px; }
  .project-intro-grid h2 { font-size: 52px; }
  .view-stage { grid-template-columns: 1fr; }
  .view-main img { height: 560px; }
  .view-selector { grid-template-columns: repeat(6, 1fr); grid-template-rows: none; }
  .view-thumb img { min-height: 94px; }
  .life-zones { grid-template-columns: 1fr; }
  .life-zones article + article { border-left: 0; border-top: 1px solid var(--line); }
  .life-zones span { margin-bottom: 20px; }
}

@media (max-width: 780px) {
  .project-hero { min-height: 88svh; }
  .project-hero-image { object-position: 58% 50%; }
  .project-hero-shade { background: linear-gradient(180deg, rgba(5, 12, 8, .35), rgba(5, 12, 8, .86) 72%); }
  .project-hero-content { padding-top: 110px; padding-bottom: 26px; }
  .project-hero-content h1 { font-size: 44px; }
  .project-hero-content > p:not(.eyebrow) { max-width: 620px; font-size: 19px; }
  .project-hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .project-facts { grid-template-columns: repeat(2, 1fr); }
  .project-facts div { padding: 12px 15px; }
  .project-facts div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .16); }
  .project-facts div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .16); }
  .project-facts dd { font-size: 16px; }
  .project-intro-grid,
  .product-geometry,
  .life-plan-grid,
  .specs-grid { grid-template-columns: 1fr; }
  .project-intro-grid h2,
  .engineering-content h2,
  .project-cta-content h2 { font-size: 40px; }
  .project-intro-copy { padding-top: 0; }
  .product-geometry { margin-top: 46px; }
  .module-map { min-height: 240px; }
  .module-map span,
  .module-map strong { padding: 14px; font-size: 13px; }
  .architecture-mosaic,
  .architecture-mosaic-two,
  .architecture-mosaic-three,
  .architecture-mosaic-four,
  .architecture-mosaic-five {
    grid-template-columns: none;
    grid-template-rows: minmax(300px, 1fr);
    grid-auto-columns: 86%;
    grid-auto-flow: column;
    min-height: 300px;
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .architecture-mosaic-three .architecture-shot:first-child { grid-row: auto; }
  .architecture-mosaic-five .architecture-shot { grid-column: auto; }
  .architecture-shot { min-height: 300px; scroll-snap-align: start; }
  .architecture-shot figcaption { padding: 18px; }
  .architecture-shot figcaption strong { font-size: 18px; }
  .view-main img { height: 420px; }
  .view-main figcaption { grid-template-columns: auto 1fr; gap: 8px 14px; padding: 14px 16px; }
  .view-main figcaption small { grid-column: 1 / -1; }
  .view-selector { grid-template-columns: repeat(3, 1fr); }
  .life-plan-heading h2,
  .specs-grid h2 { font-size: 38px; }
  .life-image img { height: 460px; }
  .life-image figcaption { position: static; max-width: none; }
  .engineering { min-height: 760px; }
  .engineering-image { object-position: 58% 50%; }
  .engineering-shade { background: linear-gradient(180deg, rgba(5, 13, 8, .52), rgba(5, 13, 8, .95) 72%); }
  .engineering-list li { grid-template-columns: 86px 1fr; }
  .spec-table div { grid-template-columns: 1fr; gap: 4px; }
  .project-cta { min-height: 580px; }
  .project-cta > img { object-position: 58% 50%; }
  .project-cta-shade { background: linear-gradient(180deg, rgba(5, 13, 8, .4), rgba(5, 13, 8, .92) 74%); }
}

@media (max-width: 420px) {
  .project-hero-content h1 { font-size: 38px; }
  .project-facts { grid-template-columns: 1fr; }
  .project-facts div + div,
  .project-facts div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .16); }
  .project-intro-grid h2,
  .engineering-content h2,
  .project-cta-content h2 { font-size: 34px; }
  .module-map { min-height: 190px; }
  .module-map span { padding: 10px; font-size: 11px; }
  .architecture-mosaic,
  .architecture-mosaic-two,
  .architecture-mosaic-three,
  .architecture-mosaic-four,
  .architecture-mosaic-five { grid-auto-columns: 91%; min-height: 280px; }
  .architecture-shot { min-height: 280px; }
  .architecture-shot figcaption small { max-width: 32ch; }
  .view-main img { height: 330px; }
  .view-selector { grid-template-columns: repeat(2, 1fr); }
  .view-thumb img { min-height: 82px; }
  .life-plan-heading h2,
  .specs-grid h2 { font-size: 33px; }
}

@media (prefers-reduced-motion: reduce) {
  .view-main img,
  .view-thumb img { transition: none; }
}
