:root {
  --navy: #001d31;
  --blue: #002f4e;
  --blue-light: #006eb6;
  --gold: #dacbaf;
  --gold-dark: #ae8e50;
  --white: #fff;
  --muted: #b0b0b0;
  --cream: #f7f4ee;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.site-header {
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar {
  min-height: 64px;
}
.brand-mark {
  font:
    400 21px/1 "Fraunces",
    serif;
  letter-spacing: 3px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.brand-mark span {
  color: var(--gold);
}
.navbar .nav-link {
  font:
    400 12px/1 "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff !important;
  padding-inline: 24px !important;
}
.navbar .projects-menu > .nav-link {
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  text-decoration: none;
}
.navbar .projects-menu > .nav-link:hover,
.navbar .projects-menu > .nav-link[aria-expanded="true"] {
  color: var(--gold) !important;
}
.projects-drawer {
  --bs-offcanvas-width: 50vw;
  --bs-offcanvas-bg: var(--navy);
  height: 100vh;
  height: 100dvh;
  border: 0 !important;
  background: linear-gradient(116.782deg, rgba(174, 142, 80, 0.95) -50.79%, var(--navy) 78.37%);
  overflow: hidden;
}
.projects-drawer__linework {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96.2%;
  height: 80.4%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}
.projects-drawer__close {
  position: absolute;
  top: 9px;
  right: 7px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: 0;
  background: #000;
}
.projects-drawer__close img {
  width: 24px;
  height: 24px;
}
.projects-drawer__content {
  position: relative;
  padding: 54px clamp(16px, 3.59vw, 72px);
  overflow-y: auto;
}
.projects-drawer h2 {
  margin: 0 0 54px;
  color: var(--white);
  font: 300 clamp(12px, 1.47vw, 20px)/1.4 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}
.projects-drawer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
}
.projects-drawer nav a {
  color: #e6dcc9;
  font: 300 clamp(23px, 3.3vw, 45px)/1.2 "Fraunces", serif;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  letter-spacing: -0.05em;
  text-decoration: none;
  overflow-wrap: anywhere;
  max-width: 100%;
  transition: color 0.18s ease;
}
.projects-drawer nav a:hover {
  color: var(--white);
}
.projects-drawer :focus-visible,
.navbar .projects-menu > .nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.hero-story {
  overflow: hidden;
  position: sticky;
  top: 0px;
  min-height: calc(100vh + 1800px);
  will-change: padding-bottom;
}

.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  background: #000;
  overflow: hidden;
  will-change: height, min-height;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.8s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-background.active {
  opacity: 1;
  transform: scale(1);
}
.hero-background--night {
  background-image: url("../images/hero-night.webp");
}
.hero-background--day {
  background-image: url("../images/hero-day-large.webp");
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 7, 14, 0.8),
    rgba(0, 7, 14, 0.12) 55%,
    rgba(0, 7, 14, 0.55)
  );
}
.hero-intro {
  position: absolute;
  left: 5.6%;
  top: 34%;
  max-width: 280px;
  font:
    400 13px/16px "IBM Plex Mono",
    monospace;
  color: #e6e6e6;
}
.hero-title {
  position: absolute;
  left: 5.6%;
  top: 45%;
  font-family: "IBM Plex Mono", monospace;
  color: #8a8a8a;
  font-size: 24px;
  letter-spacing: -1px;
}
.hero-slider {
  height: 74px;
  min-width: 650px;
  position: relative;
}
.hero-slide {
  position: absolute;
  inset: 0 auto auto 0;
  color: #fff;
  font:
    300 50px/1.2 "Fraunces",
    serif;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.hero-slide--regular {
  font-weight: 400;
}
.hero-slide--medium {
  font-weight: 500;
}
.hero-slide--bold {
  font-weight: 700;
}
.hero-slide.active {
  opacity: 1;
  transform: none;
}
.hero-actions {
  position: absolute;
  right: 5%;
  bottom: 6%;
  width: 365px;
  text-align: right;
  font:
    400 13px/16px "IBM Plex Mono",
    monospace;
  color: var(--muted);
}
.hero-actions div {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  margin-top: 22px;
}
.hero-actions a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #545454;
  padding: 12px 0;
  white-space: nowrap;
}
.story {
  background: var(--navy);
}
.story-copy {
  min-height: 765px;
  background: linear-gradient(145deg, #004f83, #001d31);
}
.content-wrap {
  max-width: 565px;
  margin: auto;
  padding: 80px 42px;
}
.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 13px;
}
.eyebrow:before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.story h2,
.excellence h2 {
  font:
    300 clamp(40px, 4vw, 56px)/0.98 "Fraunces",
    serif;
  margin: 25px 0 42px;
}
.story h2 em,
.excellence h2 em {
  color: var(--gold);
  font-weight: 300;
}
.story p {
  color: var(--gold);
  font-weight: 300;
  line-height: 1.45;
}
.story blockquote {
  color: var(--gold);
  font:
    italic 300 16px "Fraunces",
    serif;
  border-left: 1px solid var(--gold);
  padding-left: 20px;
  margin-top: 36px;
}
.story-image {
  min-height: 765px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey {
  background: linear-gradient(#00192a, #000);
  padding: 78px 0;
}
.journey-grid {
  margin-top: 40px;
}
.journey-item {
  padding: 12px 28px;
  border-right: 1px solid rgba(218, 203, 175, 0.35);
}
.journey-item:last-child {
  border: 0;
}
.journey-item strong {
  display: block;
  font:
    300 54px/1 "Jost",
    sans-serif;
}
.journey-item span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.projects {
  position: relative;
  background: #fff;
  color: #00223a;
  padding-bottom: 90px;
}
.projects-cover {
  width: 100%;
  height: 50vw;
  max-height: 700px;
  object-fit: cover;
}
.projects-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: -78px 0 55px;
  position: relative;
  color: #fff;
}
.projects-heading h2 {
  font:
    300 clamp(48px, 7vw, 90px) "Fraunces",
    serif;
}
.projects-heading p {
  max-width: 360px;
  font-size: 14px;
}
.project-cards {
  max-width: 1024px;
  margin: auto;
}
.project-cards article {
  background: #f6f2eb;
  padding: 16px;
  height: 100%;
}
.project-cards img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.project-cards h3 {
  font:
    300 24px "Fraunces",
    serif;
  margin: 18px 0 4px;
}
.project-cards p {
  color: #78694c;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.excellence {
  position: relative;
  padding: 115px 0 80px;
  overflow: hidden;
}

.excellence::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 22, 38, 0.8),
    rgba(0, 22, 38, 0.3)
  );
  z-index: 1;
}

.excellence .projects-intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.excellence > *:not(.projects-intro__video) {
  position: relative;
  z-index: 2;
}
.excellence p {
  max-width: 440px;
}
.feature-card {
  background: var(--gold-dark);
  padding: 16px;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}
.feature-card img {
  width: 100%;
  height: 305px;
  object-fit: cover;
}
.feature-card strong {
  font:
    300 105px "Fraunces",
    serif;
}
.feature-card span {
  position: absolute;
  right: 18px;
  bottom: 34px;
  width: 110px;
  text-align: right;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.4px;
}

/* Scroll-controlled Excellence cards; all other section content remains fixed. */
.excellence {
  height: 520vh;
  min-height: 3600px;
  padding: 0;
  overflow: visible;
}

.excellence .projects-intro__video {
  position: sticky;
  top: 0;
  height: 100vh;
}

.excellence > .container-fluid {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  margin-top: -100vh;
}

.excellence > .container-fluid > .row {
  width: 100%;
}

.feature-card {
  height: 488px;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
}

.feature-card-slide {
  position: absolute;
  inset: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%) rotateX(-8deg) scale(0.97);
  transform-origin: center top;
  clip-path: inset(0 0 100%);
  transition:
    opacity 0.4s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, clip-path;
}

.feature-card-slide.is-before {
  opacity: 0;
  transform: translateY(-105%) rotateX(8deg) scale(0.97);
  transform-origin: center bottom;
  clip-path: inset(100% 0 0);
}

.feature-card-slide.is-after {
  transform: translateY(105%) rotateX(-8deg) scale(0.97);
  transform-origin: center top;
  clip-path: inset(0 0 100%);
}

.feature-card-slide.active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotateX(0) scale(1);
  clip-path: inset(0);
}

.feature-card-slide img {
  height: 303px;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card-slide strong {
  font-size: 107px;
}
.feature-card-slide span {
  right: 2px;
  bottom: 14px;
  width: 198px;
}

.feature-card-slide.active img {
  transform: scale(1.025);
}

@media (max-width: 991.98px) {
  .excellence {
    height: 500vh;
    min-height: 3400px;
  }
  .excellence > .container-fluid {
    min-height: 100vh;
  }
}

@media (max-width: 767.98px) {
  .excellence {
    height: auto;
    min-height: 0;
    padding: 0 0 64px;
  }
  .excellence > .container-fluid {
    position: relative;
    top: auto;
    z-index: 2;
    display: block;
    min-height: 0;
    padding: 54px 12px 54px;
    margin-top: 0;
  }
  .excellence > .container-fluid > .row {
    --bs-gutter-x: 0;
    margin: 0;
  }
  .excellence .col-lg-5,
  .excellence .col-lg-3 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .feature-card {
    width: 100%;
    margin-top: 26px;
    height: 430px;
    touch-action: pan-y;
    cursor: grab;
  }
  .feature-card.is-dragging {
    cursor: grabbing;
  }
  .feature-card-slide {
    inset: 16px;
    transform: translateX(105%) scale(0.96);
    transform-origin: center center;
    clip-path: inset(0 0 0 100%);
  }
  .feature-card-slide.is-before {
    transform: translateX(-105%) scale(0.96);
    clip-path: inset(0 100% 0 0);
  }
  .feature-card-slide.is-after {
    transform: translateX(105%) scale(0.96);
    clip-path: inset(0 0 0 100%);
  }
  .feature-card-slide.active {
    transform: translateX(0) scale(1);
    clip-path: inset(0);
  }
  .feature-card-slide img {
    height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card-slide {
    transition: none;
  }
}
.leadership {
  padding: 110px 0;
  background: linear-gradient(155deg, #006eb6 -30%, #001d31 48%, #2c2926);
}
.leadership-title h2 {
  font:
    400 clamp(60px, 8vw, 100px) "Fraunces",
    serif;
  color: var(--gold);
}
.leadership-title p {
  font:
    300 24px "Fraunces",
    serif;
}
.leadership-intro {
  max-width: 390px;
  margin: 80px 0;
  color: #ddd;
}
.leaders article {
  text-align: center;
}
.leaders img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  filter: grayscale(0.15);
}
.leaders h3 {
  font:
    300 25px "Fraunces",
    serif;
}
.leaders span {
  display: block;
  color: #55a0d0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.7px;
  margin: 8px 0 20px;
}
.leaders p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 335px;
  margin: auto;
}
.philosophy {
  background: #0b2737;
  padding: 90px 0;
}
.philosophy .container {
  max-width: 1100px;
}
.philosophy-quote {
  background: #002f4e;
  padding: 80px 60px;
}
.philosophy blockquote {
  font:
    300 clamp(26px, 3vw, 36px)/1.2 "Fraunces",
    serif;
  color: var(--gold);
}
.philosophy img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.testimonial {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 768px;
  padding: 65px 0 24px;
  background: var(--navy);
}
.testimonial__video,
.testimonial::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.testimonial__video {
  z-index: -2;
  object-fit: cover;
}
.testimonial::before {
  content: "";
  z-index: -1;
  background: linear-gradient(176.73deg, rgba(0, 29, 49, 0.3) 0.49812%, #1a2b36 57.829%);
}
.testimonial__heading {
  padding: 0 clamp(24px, 3.66vw, 72px);
}
.testimonial__heading h2 {
  margin: 0 0 15px;
  color: var(--gold);
  font: 400 clamp(48px, 7.32vw, 100px)/1.15 "Fraunces", serif;
}
.testimonial__heading > p {
  max-width: 381px;
  margin: 0 0 48px 16px;
  font: 300 24px/1.25 "Fraunces", serif;
}
.testimonial__slider {
  --swiper-pagination-color: var(--gold);
  --swiper-pagination-bullet-inactive-color: var(--gold);
  --swiper-pagination-bullet-inactive-opacity: 0.35;
  margin-inline: clamp(24px, 4.83vw, 90px);
  overflow: visible;
  padding: 6px 0 36px;
}
.testimonial__track { align-items: stretch; }
.testimonial__pagination { bottom: 0 !important; }
.testimonial-card {
  flex-shrink: 0;
  width: 477px;
  height: auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin: 0;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.testimonial-card blockquote {
  margin: 0;
  color: var(--gold);
  font: 300 20px/24px "Fraunces", serif;
  font-variation-settings: "SOFT" 0, "WONK" 1;
}
.testimonial-card > img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  margin-top: auto;
}
.testimonial-card__portrait {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: auto;
}
.testimonial-card__portrait img {
  position: absolute;
  max-width: none;
}
.testimonial-card__portrait--khaja img {
  width: 100.53%;
  height: 128.12%;
  left: -0.26%;
  top: -4.69%;
}
.testimonial-card__portrait--shariar img {
  width: 216.7%;
  height: 216.25%;
  left: -17.83%;
  top: -93.91%;
}
.testimonial-card figcaption {
  display: grid;
  gap: 9px;
}
.testimonial-card figcaption p {
  margin: 0;
  font: 300 14px/1.4 "Jost", sans-serif;
  letter-spacing: 0.7px;
}
.testimonial-card .testimonial-card__name {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.testimonial-card__role { color: var(--muted); }
.testimonial-card__residence { color: var(--gold); }
.testimonial :focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
@media (max-width: 575.98px) {
  .testimonial { min-height: 0; padding-top: 48px; }
  .testimonial__heading > p { margin-left: 0; font-size: 22px; }
  .testimonial-card { width: calc(100vw - 64px); padding: 24px 20px; }
}
.promise {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.promise__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.promise::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 47, 78, 0.76), rgba(0, 47, 78, 0.86));
  z-index: 1;
}

.promise > *:not(.promise__video) {
  position: relative;
  z-index: 2;
}
.promise h2 {
  max-width: 1100px;
  margin: 30px auto;
  font:
    300 clamp(42px, 5vw, 68px)/1.08 "Fraunces",
    serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.promise h2 small {
  display: block;
  color: #fff;
  font:
    300 clamp(24px, 3vw, 42px) "Jost",
    sans-serif;
  margin-bottom: 8px;
}
.promise > div > p:last-child {
  max-width: 880px;
  margin: auto;
  font-size: 22px;
  font-weight: 300;
}
.contact {
  background: #000;
  color: #333;
  padding: 0px 0 0;
}

.contact-copy {
  padding: 48px;
  background: var(--cream);
}
.contact-copy .eyebrow {
  color: #7c6539;
}
.contact-copy h2 {
  font:
    300 34px/1.2 "Fraunces",
    serif;
  max-width: 390px;
  margin: 38px 0 55px;
}
.contact dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  border-top: 1px solid #c9bfae;
  padding: 19px 0;
}
.contact dt {
  text-transform: uppercase;
  color: #7c6539;
  font-size: 13px;
  letter-spacing: 1.4px;
  font-weight: 400;
}
.contact dd {
  font-size: 14px;
  margin: 0;
}
.contact dd a {
  text-decoration: none;
}
.contact-visual {
  position: relative;
}
.contact-visual::after {
  content: "";
  position: absolute;
  top: 36.39576%;
  left: 50%;
  width: 94px;
  height: 115px;
  background: url("../images/contact-location-pin.svg") center / contain no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 566px;
  object-fit: cover;
}
footer {
  background: #002f4e;
  padding: 31px 0 16px;
  font:
    300 12px "IBM Plex Mono",
    monospace;
  letter-spacing: 0.6px;
}
footer a {
  text-decoration: none;
  margin-left: 30px;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 991.98px) {
  .site-header .navbar-collapse {
    background: rgba(0, 24, 41, 0.98);
    margin: 12px -48px -8px;
    padding: 20px 35px;
  }
  .navbar .nav-link {
    padding: 14px 0 !important;
  }
  .hero-title {
    top: 42%;
  }
  .hero-actions {
    left: 5.6%;
    right: auto;
    text-align: left;
  }
  .hero-actions div {
    justify-content: flex-start;
  }
  .story-copy {
    min-height: auto;
  }
  .story-image {
    min-height: 540px;
  }
  .journey-item:nth-child(2) {
    border-right: 0;
  }
  .journey-item {
    margin-bottom: 36px;
  }
  .projects-heading {
    margin: 35px 0;
    color: #00223a;
    align-items: start;
  }
  .projects-cover {
    height: 70vw;
  }
  .excellence {
    min-height: auto;
  }
  .leadership-intro {
    margin: 35px 0 60px;
  }
  .philosophy-quote {
    padding: 55px 35px;
  }
  .philosophy img {
    height: 480px;
  }
  .contact-visual img {
    min-height: 450px;
  }
}
@media (max-width: 767.98px) {
  .hero-story {
    min-height: auto;
  }

  .hero {
    min-height: 700px;
  }
  .hero-intro {
    top: 25%;
    left: 24px;
    right: 24px;
  }
  .hero-title {
    left: 24px;
    top: 39%;
    font-size: 17px;
  }
  .hero-slider {
    min-width: 0;
    width: calc(100vw - 48px);
    height: 95px;
  }
  .hero-slide {
    font-size: 40px;
  }
  .hero-actions {
    left: 24px;
    right: 24px;
    bottom: 5%;
    width: auto;
  }
  .hero-actions div {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .content-wrap {
    padding: 70px 24px;
  }
  .story-image {
    min-height: 430px;
  }
  .journey {
    padding: 65px 10px;
  }
  .journey-item {
    border-right: 0;
  }
  .journey-item:nth-child(odd) {
    border-right: 1px solid rgba(218, 203, 175, 0.35);
  }
  .journey-item strong {
    font-size: 40px;
  }
  .journey-item span {
    font-size: 10px;
  }
  .projects {
    padding-bottom: 65px;
  }
  .projects-cover {
    height: 90vw;
  }
  .projects-heading {
    display: block;
  }
  .project-cards img {
    height: 330px;
  }
  .excellence {
    padding: 80px 12px;
  }
  .feature-card {
    margin-top: 20px;
  }
  .leadership {
    padding: 75px 12px;
  }
  .leadership-title {
    text-align: left !important;
  }
  .leadership-intro {
    margin-top: 35px;
  }
  .leaders article {
    margin-bottom: 45px;
  }
  .philosophy {
    padding: 55px 12px;
  }
  .philosophy-quote {
    padding: 45px 24px;
  }
  .philosophy img {
    height: 380px;
  }
  .promise {
    min-height: 620px;
    padding: 70px 12px;
  }
  .promise h2 {
    letter-spacing: 1px;
  }
  .promise > div > p:last-child {
    font-size: 17px;
  }
  .contact {
    padding-top: 60px;
  }
  .contact-copy {
    padding: 40px 24px;
  }
  .contact dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .contact-visual img {
    min-height: 380px;
  }
  footer {
    text-align: center;
  }
  footer a {
    margin: 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-slide,
  .reveal {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.brand-mark {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
}
.brand-mark img {
  width: 32px;
  height: 32px;
}
.story-copy {
  position: relative;
  overflow: hidden;
}
.story-lobby {
  position: absolute;
  left: 7%;
  top: 7%;
  width: 43%;
  height: 39%;
  overflow: hidden;
}
.story-lobby:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 29, 49, 0.8), transparent 72%);
}
.story-lobby img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy .content-wrap {
  position: relative;
  z-index: 1;
  padding-top: 285px;
}

.projects {
  background: linear-gradient(135deg, #002f4e, #001d31);
  color: #fff;
  padding-top: 70px;
}
.projects-heading {
  margin: 0 0 55px;
}
.project-cards article {
  background: transparent;
  padding: 0;
}
.project-cards img {
  height: 520px;
}
.project-cards p {
  color: var(--gold);
}
.leadership {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(191deg, rgba(8, 34, 52, 0.95), rgba(95, 72, 53, 0.95)),
    url("../images/leaders-bg-figma.webp") center/cover no-repeat;
}
.leadership:before {
  content: "";
  position: absolute;
  inset: 0 45% 50% 15%;
  background: url("../images/leadership-bg-figma.webp") center/contain no-repeat;
  mix-blend-mode: overlay;
  opacity: 0.8;
}
.leadership .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .story-copy .content-wrap {
    padding-top: 300px;
  }
  .journey {
    min-height: 760px;
  }
  .projects-heading {
    color: #fff;
  }
  .leadership:before {
    inset: 0 10% 55% 0;
  }
}
@media (max-width: 767.98px) {
  .story-lobby {
    width: 55%;
    height: 230px;
  }
  .story-copy .content-wrap {
    padding-top: 330px;
  }
  .journey {
    min-height: 680px;
    background-position: center top;
  }
  .project-cards img {
    height: 430px;
  }
  .leadership:before {
    inset: 0 0 65% 0;
  }
}

/* Prototype-aligned navigation and hero composition */
.site-header {
  height: 64px;
}

.site-header .navbar,
.site-header .container-fluid {
  height: 64px;
}

.site-header .container-fluid {
  position: relative;
  padding-right: 32px !important;
  padding-left: 32px !important;
}

.navbar-collapse {
  width: 100%;
  height: 100%;
}

.nav-side {
  position: absolute;
  top: 0;
  display: flex;
  height: 64px;
  align-items: center;
}

.nav-side-left {
  left: 32px;
  gap: 24px;
}

.nav-side-right {
  right: 32px;
}

.desktop-menu-mark,
.menu-mark {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.desktop-menu-mark img,
.menu-mark img {
  width: 32px;
  height: 32px;
}

.menu-mark {
  display: none;
}

.wordmark {
  position: absolute;
  top: 50%;
  left: 52%;
  z-index: 2;
  margin: 0;
  transform: translate(-50%, -50%);
}
.wordmark img{
  max-width: 100%;
  object-fit: cover;
  height: 24px;
}
.wordmark span {
  font-size: 16px;
  letter-spacing: 1px;
}

.hero {
  height: 100vh;
  min-height: 650px;
}

.hero-intro {
  top: 35.8%;
}

.hero-title {
  top: 45.2%;
}

.hero-actions {
  bottom: 4.1%;
  width: 390px;
}

.view-badge {
  position: absolute;
  right: 5.6%;
  bottom: 20.5%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 13px 3px 3px;
  border-radius: 100px;
  border: 0;
  background: rgba(217, 217, 217, 0.2);
  color: #fff;
  font:
    300 13px/24px "IBM Plex Mono",
    monospace;
  cursor: pointer;
  transition: background 0.25s ease;
}

.view-badge:hover,
.view-badge:focus-visible {
  background: rgba(217, 217, 217, 0.34);
}
.view-badge b {
  font: inherit;
}

.view-badge span {
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #c9a34e;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.hero.is-day .hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 49, 90, 0.78), rgba(0, 0, 0, 0) 74%),
    linear-gradient(216deg, rgba(27, 99, 161, 0.46), rgba(67, 147, 216, 0) 52%);
}
.hero.is-day .view-badge {
  flex-direction: row-reverse;
  padding: 3px 3px 3px 13px;
}
.hero.is-day .view-badge span {
  background: #545454;
}

@media (max-width: 991.98px) {
  .site-header .container-fluid {
    padding-right: 24px !important;
    padding-left: 24px !important;
  }

  .menu-mark {
    position: relative;
    z-index: 3;
    display: block;
  }

  .desktop-menu-mark {
    display: none;
  }

  .site-header .navbar-collapse {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    width: auto;
    height: auto;
    margin: 0;
    padding: 22px 24px;
    background: rgba(0, 24, 41, 0.98);
  }

  .nav-side {
    position: static;
    display: block;
    height: auto;
  }

  .nav-side-right {
    margin-top: 4px;
  }

  .hero {
    height: 100vh;
  }

  .view-badge {
    right: 24px;
    bottom: 23%;
  }
}

@media (max-width: 767.98px) {
  .site-header .container-fluid {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .hero {
    min-height: 700px;
    background-position: 58% center;
  }

  .hero-intro {
    top: 24%;
    left: 24px;
  }

  .hero-title {
    top: 38%;
    left: 24px;
  }

  .view-badge {
    right: 18px;
    bottom: 29%;
    font-size: 10px;
  }

  .hero-actions {
    bottom: 4%;
  }
}

/* Our Projects tabs */
.projects {
  min-height: 768px;
  padding: 56px 46px 57px 33px;
  background:
    linear-gradient(90deg, rgba(0, 29, 49, 0.45), rgba(0, 29, 49, 0.88) 78%),
    linear-gradient(194deg, #001d31 14%, #004f83 146%),
    url("../images/projects-map-texture.png") center/cover no-repeat;
  color: #fff;
  background-blend-mode: normal, multiply, soft-light;
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1034px) 1fr;
  gap: clamp(40px, 8vw, 112px);
  width: 100%;
  margin: 0 auto;
}

.projects-panels,
.project-panel {
  min-width: 0;
}

.project-panel[hidden] {
  display: none;
}

.projects-panels {
  position: relative;
}

.project-scroll-controls {
  position: absolute;
  top: 0;
  left: calc(100% + 20px);
  display: flex;
  gap: 10px;
}

.project-scroll-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #cfc3a7;
  border-radius: 50%;
  background: transparent;
  color: #cfc3a7;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.project-scroll-controls[hidden] {
  display: none;
}

.project-scroll-controls button svg {
  display: block;
  flex-shrink: 0;
}

.project-scroll-controls button:hover:not(:disabled) {
  background: #cfc3a7;
  color: #001d31;
}

.project-scroll-controls button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.project-scroll-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .project-cards { scroll-behavior: auto; }
}

.project-panel.active {
  animation: project-panel-in 0.35s ease both;
}

@keyframes project-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-cards {
  display: flex;
  gap: 20px;
  max-width: none;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.project-cards.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.project-cards::-webkit-scrollbar {
  display: none;
}

.project-cards article {
  flex: 0 0 calc((100% - 40px) / 2.3333);
  height: auto;
  padding: 0;
  background: transparent;
  cursor: pointer;
  min-width: 447px;
}

.project-cards img {
  width: 100%;
  height: 551px;
  object-fit: cover;
}

.project-cards article:first-child img {
  object-position: center;
}

.project-cards article:nth-child(2) img {
  object-position: center 5%;
}

.project-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px 8px 0;
}
.project-meta > h3,
.project-meta > span {
  grid-column: 1 / -1;
}
.project-view-more {
  align-self: center;
  padding: 6px 0 6px 8px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: 400 15px/1.4 "Jost", sans-serif;
  white-space: nowrap;
}
.project-view-more:hover {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.project-view-more:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.project-cards h3 {
  margin: 0;
  color: #fff;
  font:
    400 28px/1.15 "Fraunces",
    serif;
}

.project-cards .project-meta span {
  color: #55a0d0;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.project-cards .project-meta p {
  margin: 0;
  color: #8a8a8a;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: none;
}

.project-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding-top: 92px;
}

.projects-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 11px 16px;
  color: #fff;
  background: #0171b9;
  font:
    400 13px/16px "IBM Plex Mono",
    monospace;
  letter-spacing: 0.26px;
  text-decoration: none;
  text-transform: uppercase;
}

.projects-contact:hover,
.projects-contact:focus-visible {
  color: #fff;
  background: #55a0d0;
}

.projects-contact img {
  width: 20px;
  height: 20px;
}

.project-tabs button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  font:
    300 45px/1.05 "Fraunces",
    serif;
  letter-spacing: -2.25px;
  text-align: right;
  transition: color 0.25s ease;
}

.project-tabs button:hover,
.project-tabs button:focus-visible {
  color: rgba(255, 255, 255, 0.7);
}

.project-tabs button.active {
  color: var(--gold);
}

.project-tabs button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 5px;
}

.project-empty {
  display: grid;
  min-height: 620px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(218, 203, 175, 0.25);
  color: var(--gold);
  font:
    300 28px/1.4 "Fraunces",
    serif;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .projects {
    min-height: auto;
    padding: 48px 24px 74px;
  }

  .projects-panels {
    padding-top: 48px;
  }

  .project-scroll-controls {
    top: 0;
    left: auto;
    right: 0;
  }

  .projects-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-tabs {
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    overflow-x: auto;
    padding-top: 0;
  }

  .projects-contact {
    margin: 0 0 0 auto;
  }

  .project-tabs button {
    flex: 0 0 auto;
    font-size: 34px;
    text-align: left;
  }

  .project-cards article {
    flex-basis: calc((100% - 40px) / 2.3333);
  }
}

@media (max-width: 767.98px) {
  .projects {
    padding: 40px 18px 104px;
  }

  .project-tabs {
    gap: 22px;
    padding-bottom: 5px;
  }

  .project-tabs button {
    font-size: 27px;
    letter-spacing: -1px;
  }

  .project-cards {
    gap: 16px;
  }

  .project-cards article {
    flex-basis: min(82vw, 390px);
  }

  .project-cards img {
    height: min(122vw, 551px);
  }

  .project-cards h3 {
    font-size: 24px;
  }

  .project-cards .project-meta p {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-panel.active {
    animation: none;
  }
}

/* Leadership: two-panel composition from the Figma prototype */
.leadership {
  padding: 0;
  overflow: hidden;
  background: #001d31;
}

.leadership::before {
  content: none;
}

.leadership-showcase {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(194deg, #001d31 14%, #006eb6 156%);
}

.leadership-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 26.3%;
  width: 46.5%;
  background: url("../images/leadership-bg-figma.webp") center/contain no-repeat;
  mix-blend-mode: overlay;
  opacity: 0.82;
}

.leadership-title {
  position: absolute;
  top: 39.5%;
  right: 3.4%;
  z-index: 1;
  width: 430px;
  text-align: right;
}

.leadership-title h2 {
  margin: 0;
  color: var(--gold);
  font:
    400 100px/0.9 "Fraunces",
    serif;
}

.leadership-title p {
  margin: 46px 0 0;
  color: #fff;
  font:
    300 24px/1.25 "Fraunces",
    serif;
}

.leadership-intro {
  position: absolute;
  bottom: 77px;
  left: 50px;
  z-index: 1;
  width: 354px;
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.leadership-profiles {
  position: relative;
  min-height: 768px;
  padding: 143px 66px 88px;
  background:
    linear-gradient(
      192deg,
      rgba(8, 34, 52, 0.95) 11%,
      rgba(95, 72, 53, 0.95) 114%
    ),
    url("../images/leaders-bg-figma.webp") center/cover no-repeat;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1234px;
  margin: 0 auto;
}

.leaders article {
  min-height: 537px;
  margin: 0;
  padding: 0 24px;
  text-align: center;
}

.leaders article + article {
  border-left: 1px solid #545454;
}

.leaders img {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  border-radius: 0;
  object-fit: cover;
  filter: none;
}

.leaders article:first-child img {
  object-position: center 18%;
}

.leaders article:nth-child(2) img {
  object-position: center;
}

.leaders h3 {
  margin: 0;
  color: #fff;
  font:
    400 24px/19px "Fraunces",
    serif;
}

.leaders span {
  display: block;
  min-height: 25px;
  margin: 18px 0;
  padding: 8px 0;
  color: #55a0d0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.leaders p {
  max-width: 333px;
  margin: 0 auto 16px;
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.7px;
}

@media (max-width: 991.98px) {
  .leadership-showcase::before {
    left: 10%;
    width: 64%;
  }

  .leadership-title {
    right: 32px;
  }

  .leadership-profiles {
    padding: 100px 24px 70px;
  }

  .leaders article {
    padding: 0 16px;
  }

  .leaders p {
    letter-spacing: 0.25px;
  }
}

@media (max-width: 767.98px) {
  .leadership-showcase {
    height: 620px;
  }

  .leadership-showcase::before {
    top: -40px;
    left: -20%;
    width: 105%;
  }

  .leadership-title {
    top: 34%;
    right: 24px;
    width: calc(100% - 48px);
    text-align: right !important;
  }

  .leadership-title h2 {
    font-size: clamp(58px, 19vw, 82px);
  }

  .leadership-title p {
    margin-top: 28px;
    font-size: 20px;
  }

  .leadership-intro {
    bottom: 45px;
    left: 24px;
    width: calc(100% - 48px);
    font-size: 14px;
  }

  .leadership-profiles {
    padding: 72px 24px;
  }

  .leaders {
    grid-template-columns: 1fr;
  }

  .leaders article {
    min-height: auto;
    padding: 0 0 58px;
  }

  .leaders article + article {
    padding-top: 58px;
    border-top: 1px solid #545454;
    border-left: 0;
  }
}

/* Leadership philosophy quote panel */
.philosophy {
  position: relative;
  height: 768px;
  padding: 0;
  overflow: hidden;
  background: url("../images/philosophy-figma.webp") center/cover no-repeat;
}

.philosophy .philosophy-quote {
  position: absolute;
  top: 31px;
  left: 0;
  display: block;
  width: min(58.79%, 803px);
  height: 472px;
  padding: 132px 33px 0;
  background: #002f4e;
}

.philosophy blockquote {
  width: min(100%, 713px);
  margin: 0;
  color: var(--gold);
  font:
    300 32px/38px "Fraunces",
    serif;
}

.philosophy .eyebrow {
  position: absolute;
  bottom: 84px;
  left: 207px;
  margin: 0;
  color: var(--gold);
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .philosophy {
    height: 680px;
    background-position: 62% center;
  }

  .philosophy .philosophy-quote {
    top: 40px;
    width: 72%;
    height: 470px;
    padding: 112px 32px 0;
  }

  .philosophy blockquote {
    font-size: 29px;
    line-height: 36px;
  }

  .philosophy .eyebrow {
    right: 32px;
    bottom: 66px;
    left: 32px;
    white-space: normal;
  }
}

/* Figma story split and the projects image showcase */
.story {
  height: 765px;
  overflow: hidden;
}

.story > .container-fluid,
.story > .container-fluid > .row,
.story-copy {
  height: 765px;
}
.story-image {
  height: 100vh;
}
.story-copy {
  position: absolute;
  top: 0px;
  width: 0%;
  height: 100vh;
  z-index: 2;
  will-change: width;
  backface-visibility: hidden;
  display: block !important;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(-30deg, #001d31 7%, #004f83 99%);
}

.story-copy.is-scroll-sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 50% !important;
  height: 100vh;
}

.story-copy::before {
  content: "";
  display: block;
  width: 100%;
  height: 1147px;
}

.story-lobby {
  position: absolute;
  top: 507px;
  left: 49px;
  z-index: 1;
  width: 293px;
  height: 300px;
  will-change: transform;
  transition: none;
  backface-visibility: hidden;
}

.story-lobby::after {
  background: linear-gradient(203deg, #000 12%, transparent 80%);
}

.story-copy .content-wrap {
  position: absolute;
  top: 507px;
  left: 49px;
  z-index: 2;
  width: 564px;
  max-width: none;
  height: 534px;
  margin: 0;
  padding: 0;
  will-change: transform;
  transition: none;
  backface-visibility: hidden;
}

.story .eyebrow {
  position: absolute;
  top: 0;
  left: 272px;
  margin: 0;
  white-space: nowrap;
}

.story h2 {
  position: absolute;
  top: 42px;
  left: 187px;
  width: 325px;
  margin: 0;
  font:
    300 54px/50px "Fraunces",
    serif;
  letter-spacing: -0.54px;
}

.story .content-wrap > p:not(.eyebrow) {
  position: absolute;
  left: 0;
  width: 492px;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}

.story .content-wrap > p:nth-of-type(2) {
  top: 338px;
}

.story .content-wrap > p:nth-of-type(3) {
  top: 405px;
}

.story blockquote {
  position: absolute;
  top: 509px;
  left: 0;
  margin: 0;
  padding-left: 20px;
  color: var(--gold);
  font:
    italic 300 16px/19px "Fraunces",
    serif;
  letter-spacing: 0.8px;
}

.story-image {
  height: 100vh;
  min-height: 0;
  position: absolute;
  right: 0px;
  overflow: hidden;
}

.story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.story-image-current {
  z-index: 1;
}

.story-image-next {
  z-index: 2;
  visibility: hidden;
  transform: translateY(101%);
  object-fit: cover !important;
  object-position: center;
  will-change: transform;
  backface-visibility: hidden;
}

.journey {
  padding-top: 78px;

  background:
    linear-gradient(
      180deg,
      rgba(0, 25, 42, 0.92) 0%,
      rgba(0, 25, 42, 0.82) 45%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    url("../images/project-glass.webp") center / cover no-repeat;
}
.projects-intro {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.projects-intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.projects-intro__content {
  position: relative;
  z-index: 1;
}
.projects-intro-shade {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 29, 49, 0.88));
}

.projects-intro h2 {
  position: absolute;
  bottom: 70px;
  left: 41px;
  margin: 0;
  color: var(--gold);
  font:
    300 100px/0.9 "Fraunces",
    serif;
}

.projects-intro > p {
  position: absolute;
  right: 46px;
  bottom: 80px;
  width: 402px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  text-align: right;
}

@media (max-width: 991.98px) {
  .story,
  .story > .container-fluid,
  .story > .container-fluid > .row {
    height: auto;
  }

  .story-copy {
    height: 765px;
  }

  .story-image {
    height: 620px;
  }

  .projects-intro {
    height: 650px;
  }

  .projects-intro h2 {
    font-size: 76px;
  }
}

@media (max-width: 767.98px) {
  .story-copy {
    height: 700px;
  }

  .story-copy::before {
    height: 920px;
  }

  .story-lobby,
  .story-copy .content-wrap {
    top: 330px;
    left: 24px;
  }

  .story-lobby {
    width: 220px;
    height: 225px;
  }

  .story-copy .content-wrap {
    width: calc(100% - 48px);
  }

  .story .eyebrow {
    top: -25px;
    left: 0;
    white-space: normal;
  }

  .story h2 {
    top: 58px;
    left: 105px;
    width: calc(100% - 105px);
    font-size: 42px;
    line-height: 40px;
  }

  .story .content-wrap > p:not(.eyebrow) {
    width: 100%;
  }

  .story .content-wrap > p:nth-of-type(2) {
    top: 300px;
  }

  .story .content-wrap > p:nth-of-type(3) {
    top: 395px;
  }

  .story blockquote {
    top: 500px;
  }

  .story-image {
    height: 480px;
  }

  .journey {
    height: auto;
    min-height: 430px;
    padding-top: 58px;
  }

  .projects-intro {
    height: 520px;
    background-position: center;
  }

  .projects-intro h2 {
    bottom: 120px;
    left: 24px;
    font-size: 56px;
  }

  .projects-intro > p {
    right: 24px;
    bottom: 38px;
    left: 24px;
    width: auto;
    font-size: 13px;
  }
}

/* Project details modal */
.project-detail-modal {
  --bs-modal-zindex: 1080;
  --bs-modal-bg: #fff;
}

.project-detail-modal.fade .modal-dialog {
  transform: translate3d(0, 100vh, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-detail-modal.show .modal-dialog {
  transform: translate3d(0, 0, 0);
}

.project-detail-modal .modal-dialog {
  width: min(1300px, calc(100vw - 32px));
  max-width: 1300px;
  height: calc(100vh - 32px);
  margin: 16px auto;
}

.project-detail-modal .modal-content {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #333;
  scrollbar-width: thin;
  scrollbar-color: #ae8e50 #001d31;
}

.project-modal-close {
  position: sticky;
  top: 2px;
  z-index: 8;
  display: block;
  width: 32px;
  height: 32px;
  margin: 2px 2px -36px auto;
  padding: 4px;
  border: 0;
  background: #000;
}

.project-modal-close img {
  width: 24px;
  height: 24px;
}

.project-modal-hero {
  position: relative;
  height: 558px;
  overflow: visible;
  background: #333;
}

.project-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-gallery-control {
  position: absolute;
  top: 50%;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 4px;
  place-items: center;
  border: 0;
  background: #0171b9;
  transform: translateY(-50%);
}

.project-gallery-control.previous {
  left: 36px;
}
.project-gallery-control.next {
  right: 36px;
}
.project-gallery-control img {
  width: 24px;
  height: 24px;
}

.project-gallery-dots {
  position: absolute;
  bottom: 21px;
  left: 50%;
  display: flex;
  gap: 3px;
  padding: 11px 30px;
  background: rgba(0, 29, 49, 0.27);
  transform: translateX(-50%);
  backdrop-filter: blur(2px);
}

.project-gallery-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.project-gallery-dots button.active {
  background: #fff;
}

.project-gallery-count {
  position: absolute;
  bottom: -44px;
  left: 50%;
  z-index: 2;
  padding: 10px;
  border: 1px solid #015083;
  border-top: 0;
  background: #002f4e;
  color: #fff;
  font:
    400 20px/1 "Inter",
    sans-serif;
  transform: translateX(-50%);
}

[data-project="ruposhi"] .project-modal-intro {
  min-height: 470px;
}

.project-modal-intro {
  position: relative;
  min-height: 360px;
  padding: 43px 36px 30px;
  background: #001d31;
  color: #fff;
}

.project-modal-intro > div:first-child {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.project-modal-intro .ksd{
  width: 746px;
}
.project-modal-intro h2 {
  width: 520px;
  margin: 0 0 24px;
  font:
    400 32px/1.08 "Fraunces",
    serif;
}
.project-modal-intro h2 strong {
  display: block;
  font-size: 41px;
  font-weight: 600;
}
.project-modal-intro > div:first-child p {
  margin: 0;
  color: #b0b0b0;
  font:
    400 16px/1.35 "Inter",
    sans-serif;
}
.project-modal-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.project-modal-logo {
  display: block;
  width: auto;
  max-width: 312px;
  height: 88px;
  object-fit: contain;
  object-position: right center;
}

.project-sales-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 11px 16px;
  background: #0171b9;
  color: #fff;
  font:
    400 13px/16px "IBM Plex Mono",
    monospace;
  letter-spacing: 0.26px;
  text-decoration: none;
  text-transform: uppercase;
}

.project-sales-link:hover {
  background: #015e9b;
  color: #fff;
}
.project-sales-link img {
  width: 20px;
  height: 20px;
}

.project-modal-intro dl {
  position: absolute;
  right: 36px;
  bottom: 30px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding-top: 30px;
  border-top: 1px solid #545454;
  font:
    400 20px/1 "IBM Plex Mono",
    monospace;
}

.project-modal-intro dl div {
  display: flex;
  gap: 7px;
}
.project-modal-intro dt {
  color: #b0b0b0;
  font-weight: 300;
}
.project-modal-intro dd {
  margin: 0;
  color: var(--gold);
}

.project-modal-overview {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 42px;
  min-height: 370px;
  padding: 43px 107px 41px 36px;
  background: #f5f3ee;
}

.project-overview-copy h3 {
  margin: 0 0 60px;
  font:
    400 32px/1.08 "Fraunces",
    serif;
}
.project-overview-copy p {
  max-width: 663px;
  margin: 0 0 16px;
  color: #8a8a8a;
  font:
    400 16px/1.35 "Inter",
    sans-serif;
}
.project-overview-stat {
  height: max-content;
  padding-left: 19px;
  border-left: 1px solid #ae8e50;
}
.project-overview-stat strong {
  display: block;
  margin-bottom: 25px;
  color: #000;
  font:
    400 48px/1 "Fraunces",
    serif;
}
.project-overview-stat p {
  margin: 0;
  color: #545454;
  font:
    400 12px/1.35 "Inter",
    sans-serif;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  min-height: 110px;
  padding: 31px 41px;
  border: 1px solid var(--gold);
  background: #edeae1;
}

.project-facts div {
  padding: 0 38px;
}
.project-facts div:first-child {
  padding-left: 0;
}
.project-facts div + div {
  border-left: 1px solid #c9b38a;
}
.project-facts span {
  display: block;
  margin-bottom: 16px;
  color: #545454;
  font:
    400 12px/1 "IBM Plex Mono",
    monospace;
}
.project-facts strong {
  color: #333;
  font:
    400 18px/1 "Fraunces",
    serif;
}

.project-modal-body {
  padding: 48px 36px 64px;
  background: #fff;
}
.project-detail-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}
.project-detail-heading:not(:first-child) {
  margin-top: 64px;
}
.project-detail-heading h3 {
  margin: 0;
  color: #1f2127;
  font:
    600 24px/1.2 "Fraunces",
    serif;
}
.project-detail-heading p {
  width: 370px;
  margin: 0;
  color: #8a8a8a;
  font:
    400 12px/19px "Inter",
    sans-serif;
  text-align: right;
}

.building-distribution {
  border-top: 1px solid #d7d7d7;
}
.building-distribution > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 278px;
  gap: 16px;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid #e6e6e6;
}
/* Keep the expanded Figma About copy in flow within the animated panel. */
.story-copy {
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.story-copy::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .hero-story.is-story-released {
    position: relative;
    overflow: visible;
    min-height: 0;
    padding-top: 1800px;
    padding-bottom: 0 !important;
  }
  .hero-story.is-story-released .story {
    position: relative;
    overflow: visible;
    height: var(--story-content-height);
  }
  .hero-story.is-story-released .story > .container-fluid,
  .hero-story.is-story-released .story > .container-fluid > .row,
  .hero-story.is-story-released .story-copy {
    height: 100%;
  }
  .hero-story.is-story-released .story-image {
    position: sticky;
    top: 0;
    right: auto;
    align-self: flex-start;
    width: 50%;
    height: 100vh;
    margin-left: auto;
  }
  .hero-story.is-story-released .story-image img {
    height: 100%;
  }
}
.story .story-title {
  position: absolute;
  top: 139px;
  left: 49px;
  width: calc(100% - 98px);
  margin: 0;
  color: var(--gold);
  font: 400 clamp(56px, 7.32vw, 100px)/1 "Fraunces", serif;
  letter-spacing: -1px;
}
.story-copy .content-wrap {
  height: auto;
  padding-bottom: 40px;
}
.story-description {
  width: 492px;
  max-width: 100%;
  padding-top: 338px;
}
.story-description p {
  margin: 0 0 19px;
  color: var(--gold);
  font: 300 14px/19px "Jost", sans-serif;
}
.story .story-description blockquote {
  position: static;
  margin: 30px 0 54px;
}
.story-description h3 {
  margin: 0 0 24px;
  color: var(--white);
  font: 300 54px/50px "Fraunces", serif;
  letter-spacing: -0.54px;
}
@media (min-width: 768px) and (max-width: 1225px) {
  .story-copy .content-wrap {
    left: 24px;
    width: calc(100% - 48px);
  }
  .story .eyebrow { left: 0; white-space: normal; }
  .story h2 { left: 0; width: 100%; }
}
@media (max-width: 767.98px) {
  .story-copy { overflow: visible; }
  .story-copy .content-wrap { padding-bottom: 0; }
  .story-description { width: 100%; padding-top: 0; }
  .story-description h3 { font-size: 42px; line-height: 40px; }
}

.building-distribution span,
.building-distribution strong {
  color: #545454;
  font:
    400 12px/1 "IBM Plex Mono",
    monospace;
}
.building-distribution strong {
  text-align: right;
}
.building-distribution i {
  position: relative;
  display: block;
  height: 8px;
  background: #d9d9d9;
}
.building-distribution i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  background: var(--bar-color, #015083);
}
.distribution-note {
  width: 370px;
  margin: 25px 0 0 auto;
  color: #8a8a8a;
  font:
    400 12px/19px "Inter",
    sans-serif;
  text-align: right;
}

.material-grid {
  display: grid;
  gap: 16px;
}
.material-grid article {
  padding: 26px 32px;
  border: 1px solid #e6e6e6;
  background: #fff;
}
.material-grid h4 {
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
  color: #1f2127;
  font:
    400 16px/1.2 "Fraunces",
    serif;
  letter-spacing: 0.8px;
}
.material-grid article > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.material-grid p {
  margin: 0;
  color: #545454;
  font:
    400 12px/19px "Inter",
    sans-serif;
}
.material-grid p strong {
  display: block;
  margin-bottom: 8px;
  color: #9e8149;
  font:
    400 12px/1 "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 31px;
}
.plan-grid figure {
  margin: 0;
}
.plan-grid figure > img {
  width: 100%;
  aspect-ratio: 1026/726;
  object-fit: cover;
  border: 1px solid #e6e6e6;
}
.plan-grid figcaption {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 17px;
}
.plan-grid figcaption strong {
  color: #1f2127;
  font:
    400 16px/1 "Fraunces",
    serif;
  letter-spacing: 0.64px;
}
.plan-grid figcaption span {
  color: #8a8a8a;
  font:
    400 12px/19px "IBM Plex Mono",
    monospace;
}

.project-amenities {
  padding: 40px 39px 64px;
  background: #002f4e;
  color: #fff;
}
.project-amenities header {
  margin-bottom: 28px;
}
.project-amenities header h3 {
  margin: 0 0 12px;
  font:
    600 24px/1.2 "Fraunces",
    serif;
}
.project-amenities header p {
  max-width: 487px;
  margin: 0;
  color: #b5b5b5;
  font:
    400 12px/19px "Inter",
    sans-serif;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px;
  border: 1px solid rgba(190, 165, 115, 0.3);
  background: #013e66;
}
.amenity-grid > div {
  padding: 0 36px;
}
.amenity-grid > div:first-child {
  padding-left: 0;
}
.amenity-grid > div + div {
  border-left: 1px solid rgba(218, 203, 175, 0.25);
}
.amenity-grid h4 {
  margin: 0 0 32px;
  color: #c9b38a;
  font:
    400 12px/1 "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
}
.amenity-grid p {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid rgba(218, 203, 175, 0.18);
  font:
    400 12px/19px "Inter",
    sans-serif;
}
.amenity-grid p::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../images/modal-check.svg") center/contain no-repeat;
}

@media (max-width: 991.98px) {
  .project-modal-intro > div:first-child {
    width: 54%;
  }
  .project-modal-logo {
    max-width: 220px;
  }
  .project-modal-overview {
    grid-template-columns: 1fr 160px 160px;
    padding-right: 36px;
  }
  .material-grid article > div {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .project-detail-modal .modal-dialog {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .project-modal-hero {
    height: 340px;
  }
  .project-gallery-control.previous {
    left: 16px;
  }
  .project-gallery-control.next {
    right: 16px;
  }
  .project-modal-intro {
    padding: 48px 24px 28px;
    min-height: auto;
  }
  .project-modal-intro > div:first-child {
    width: 100%;
    flex-direction: column;
  }
  .project-modal-intro h2 {
    width: 100%;
    font-size: 28px;
  }
  .project-modal-intro h2 strong {
    font-size: 35px;
  }
  .project-modal-actions {
    position: static;
    align-items: flex-start;
    gap: 24px;
    margin: 32px 0;
  }
  .project-modal-logo {
    width: auto;
    max-width: min(100%, 312px);
    height: 88px;
  }
  .project-modal-intro dl {
    position: static;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
  }
  .project-modal-intro dl div {
    justify-content: space-between;
  }
  .project-modal-overview {
    grid-template-columns: 1fr 1fr;
    padding: 42px 24px;
  }
  .project-overview-copy {
    grid-column: 1/-1;
  }
  .project-overview-copy h3 {
    margin-bottom: 28px;
  }
  .project-facts {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .project-facts div,
  .project-facts div:first-child {
    padding: 18px 0;
  }
  .project-facts div + div {
    border-top: 1px solid #c9b38a;
    border-left: 0;
  }
  .project-modal-body {
    padding: 44px 20px;
  }
  .project-detail-heading {
    display: block;
  }
  .project-detail-heading h3 {
    margin-bottom: 14px;
  }
  .project-detail-heading p {
    width: auto;
    text-align: left;
  }
  .building-distribution > div {
    grid-template-columns: 48px 1fr;
  }
  .building-distribution strong {
    grid-column: 2;
    padding-bottom: 9px;
    text-align: left;
  }
  .distribution-note {
    width: auto;
    text-align: left;
  }
  .material-grid article {
    padding: 24px 20px;
  }
  .material-grid article > div {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .project-amenities {
    padding: 38px 20px 48px;
  }
  .amenity-grid {
    grid-template-columns: 1fr;
  }
  .amenity-grid > div,
  .amenity-grid > div:first-child {
    padding: 24px 0;
  }
  .amenity-grid > div + div {
    border-top: 1px solid rgba(218, 203, 175, 0.25);
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .philosophy {
    height: 650px;
    background-position: 69% center;
  }

  .philosophy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 29, 49, 0.18);
    pointer-events: none;
  }

  .philosophy .philosophy-quote {
    top: 44px;
    z-index: 1;
    width: calc(100% - 24px);
    height: 430px;
    padding: 72px 24px 0;
  }

  .philosophy blockquote {
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.22;
  }

  .philosophy .eyebrow {
    right: 24px;
    bottom: 50px;
    left: 24px;
    font-size: 11px;
    letter-spacing: 2px;
  }
}

.project-modal-contact {
  padding: 63px 24px;
  background: #013e66;
}
.project-modal-contact > .container {
  max-width: none;
  padding: 0;
}
.project-modal-contact .contact-copy {
  overflow-wrap: anywhere;
}

/* Mobile Hero and Story remain in normal flow with no motion. */
@media (max-width: 767.98px) {
  .hero-story {
    position: relative;
    min-height: 0;
    padding-bottom: 0;
    will-change: auto;
  }
  .hero,
  .story,
  .hero *,
  .story *,
  .hero::before,
  .hero::after,
  .story::before,
  .story::after,
  .hero *::before,
  .hero *::after,
  .story *::before,
  .story *::after {
    animation: none !important;
    transition: none !important;
    will-change: auto;
  }
  .hero .reveal,
  .story .reveal {
    opacity: 1;
    transform: none;
  }
  .story,
  .story > .container-fluid,
  .story > .container-fluid > .row {
    height: auto;
  }
  .story-copy {
    position: relative;
    width: 100%;
    height: auto;
    padding: 48px 24px;
  }
  .story-copy::before {
    display: none;
  }
  .story .story-title {
    position: static;
    width: 100%;
    margin: 0 0 40px;
  }
  .story-lobby {
    position: relative;
    top: auto;
    left: auto;
    width: 220px;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .story-copy .content-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
  .story .eyebrow,
  .story h2,
  .story .content-wrap > p:not(.eyebrow),
  .story blockquote {
    position: static;
    width: 100%;
    margin: 0 0 24px;
  }
  .story-image {
    position: relative;
    right: auto;
    width: 100%;
    height: 480px;
  }
  .story-image img {
    height: 100%;
  }
  .story-image-next {
    display: none;
  }
}

.building-distribution strong {
  color: #8a8a8a;
  line-height: 19px;
}
.project-modal-contact .contact-copy {
  padding: 48px 36px 33px;
  background: #f7f4ee;
}
.project-modal-contact .contact-copy h2 {
  font-size: 32px;
  line-height: 38px;
  margin: 38px 0 36px;
}
.project-modal-contact dl {
  margin-bottom: 34px;
}
.project-modal-contact dl > div {
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 26px;
  padding: 21px 0;
}
.project-modal-contact dl > div:last-child {
  border-bottom: 1px solid #c9bfae;
}
.project-modal-contact dt,
.project-modal-contact dd {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
}
.project-modal-contact dd {
  letter-spacing: 0.7px;
}
.contact-socials {
  display: flex;
  gap: 16px;
}
.contact-socials img {
  width: 20px;
  height: 20px;
}
@media (max-width: 991.98px) {
  .project-modal-contact .contact-copy {
    padding: 32px 24px;
  }
  .project-modal-contact dl > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .project-modal-contact {
    padding: 32px 20px;
  }
  .wordmark img{
    height: auto;
  }
  .projects-contact{
    position: absolute;
    bottom: 0px;
    margin-bottom: 40px;
  }
}

/* Project detail layouts follow each project's own Figma sections. */
.project-modal-overview {
  grid-template-columns: minmax(0, 663px) 180px;
  justify-content: space-between;
}
.project-overview-stats {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.project-facts {
  grid-template-columns: repeat(var(--fact-count, 3), minmax(0, 1fr));
}
.project-detail-modal[data-project]:not([data-project="odyssey"])
  .building-distribution
  > div {
  grid-template-columns: 69px minmax(0, 1fr) 359px;
}
.project-detail-modal:is(
    [data-project="savanna"],
    [data-project="ruposhi"],
    [data-project="centre"]
  )
  .building-distribution
  > div {
  grid-template-columns: 110px minmax(0, 1fr) 359px;
}
.building-distribution > div {
  padding: 16px 0;
}
.building-distribution span {
  line-height: 19px;
}
.distribution-note {
  margin-left: 0;
  text-align: left;
}
.material-grid h4 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.material-grid h4 > span {
  flex-shrink: 0;
  color: #ae8e50;
  font:
    400 12px/16px "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
}
.material-grid article > div {
  row-gap: 32px;
}
.material-grid p strong {
  line-height: 16px;
}
.plan-image {
  position: relative;
  aspect-ratio: 598.5 / 423.05;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}
.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.plan-image--rotated img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70.685%;
  height: 141.473%;
  max-width: none;
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 991.98px) {
  .project-modal-overview {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 32px;
  }
  .project-facts div {
    padding: 0 16px;
  }
  .material-grid h4 {
    flex-wrap: wrap;
  }
  .material-grid article > div {
    column-gap: 24px;
  }
  .project-detail-modal[data-project] .building-distribution > div {
    grid-template-columns: 90px minmax(0, 1fr) 230px;
  }
}
@media (max-width: 767.98px) {
  .project-modal-overview {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .project-overview-stats {
    flex-direction: row;
  }
  .project-overview-stat {
    flex: 1;
    min-width: 0;
  }
  .project-overview-stat strong {
    font-size: clamp(28px, 7vw, 42px);
  }
  .project-facts {
    grid-template-columns: 1fr;
  }
  .project-facts div {
    padding: 18px 0;
  }
  .project-detail-modal[data-project] .building-distribution > div {
    grid-template-columns: 90px minmax(0, 1fr) !important;
    gap: 8px 16px;
  }
  .building-distribution strong {
    padding: 0;
  }
  .material-grid article > div {
    grid-template-columns: 1fr;
  }
}

.material-item h5 {
  margin: 0 0 8px;
  color: #9e8149;
  font:
    400 12px/16px "IBM Plex Mono",
    monospace;
  text-transform: uppercase;
}
.material-item ul {
  margin: 0;
  padding-left: 18px;
  color: #545454;
  font:
    400 12px/19px "Inter",
    sans-serif;
}
