@font-face {
  font-family: "DM Sans";
  src: url("assets/dm-sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #101820;
  --ink-soft: #23303a;
  --paper: #f2efe8;
  --paper-bright: #fbfaf6;
  --line: rgba(16, 24, 32, .2);
  --blue: #1f5594;
  --gold: #d5aa4f;
  --white: #fff;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "DM Sans", "Avenir Next", "Helvetica Neue", sans-serif;
  --wrap: min(1360px, calc(100vw - 96px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
video:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.paper {
  background: var(--paper);
}

.ink {
  background: var(--ink);
  color: var(--white);
}

.blue {
  background: var(--blue);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 48px;
  color: var(--ink);
  background: rgba(242, 239, 232, .96);
  border-bottom: 1px solid rgba(16, 24, 32, .12);
  backdrop-filter: blur(12px);
  transition: color .35s ease, background .35s ease, height .35s ease;
}

.site-header.is-scrolled,
.site-header.on-light {
  height: 72px;
  background: rgba(242, 239, 232, .94);
  color: var(--ink);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 24, 32, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  width: 182px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  letter-spacing: .04em;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::after {
  display: block;
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
  content: "";
}

.menu-toggle i::after {
  transform: translateY(7px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  object-fit: cover;
  object-position: center 56%;
  animation: hero-in 1.5s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 12, 18, .7) 0%, rgba(5, 12, 18, .18) 62%, rgba(5, 12, 18, .25) 100%),
    linear-gradient(0deg, rgba(5, 12, 18, .58), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding-block: 152px 72px;
}

.hero-content h1 {
  max-width: 1060px;
  margin: 20px 0 62px;
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 138px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .83;
}

.hero-content h1 em {
  color: #e7d9ba;
  font-weight: 400;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-right: 9%;
}

.hero-bottom p {
  margin: 0;
  font-size: 16px;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ead8b3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 220px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  font-size: 17px;
  transition: transform .25s var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}

.intro-section {
  padding: 140px 0 118px;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: #5a625f;
  font-size: 12px;
}

.section-kicker.light {
  border-color: rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .55);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 12%;
  align-items: end;
  padding-top: 58px;
}

.intro-grid h2,
.about-copy h2,
.contact-section h2,
.project-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.lead-copy {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.28;
}

.project-feature {
  padding: 50px 0 150px;
}

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr);
  gap: 8%;
  align-items: center;
}

.project-feature-reverse .project-grid {
  grid-template-columns: minmax(300px, .65fr) minmax(0, 1.45fr);
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d4cb;
}

.project-image-tall {
  aspect-ratio: 1.2 / 1;
}

.project-image-wide {
  aspect-ratio: 1.42 / 1;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.actual-project-pair {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 2px;
}

.actual-project-pair img:first-child {
  object-position: center 72%;
}

.actual-project-pair img:last-of-type {
  object-position: center;
}

.project-image:hover img {
  transform: scale(1.025);
}

.image-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 13px;
  background: rgba(251, 250, 246, .95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .04em;
}

.project-copy h3 {
  margin: 20px 0 28px;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .82;
}

.project-copy .project-logo-title {
  display: flex;
  width: min(100%, 370px);
  min-height: 170px;
  align-items: center;
  margin: 10px 0 22px;
}

.project-logo-title img {
  display: block;
  width: 100%;
  height: 170px;
  max-height: 170px;
  object-fit: contain;
  object-position: left center;
}

.project-logo-title-waadi img {
  height: 150px;
  max-height: 150px;
}

.project-copy > p:not(.project-number) {
  max-width: 410px;
  margin: 0 0 42px;
  color: #4c5656;
  font-size: 17px;
}

.project-number {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.project-facts {
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
}

.project-facts div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.project-facts dt,
.project-facts dd {
  margin: 0;
  font-size: 11px;
}

.project-facts dt {
  color: #6f7672;
}

.approach-section {
  padding: 140px 0;
}

.approach-heading {
  display: grid;
  grid-template-columns: 1.4fr .55fr;
  gap: 13%;
  align-items: end;
  padding: 65px 0 110px;
}

.approach-heading h2 {
  margin: 0;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(50px, 6.3vw, 98px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.approach-heading p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 15px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr 1.2fr;
  gap: 40px;
  align-items: baseline;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.process-list span {
  color: var(--gold);
  font-size: 10px;
}

.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.image-pair {
  padding: 150px 0;
}

.image-pair-grid {
  display: grid;
  grid-template-columns: .72fr 1.45fr;
  gap: 8%;
  align-items: end;
}

.image-pair figure {
  margin: 0;
}

.portrait-frame img {
  aspect-ratio: .8 / 1;
  object-fit: cover;
}

.landscape-frame img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.image-pair figcaption {
  margin-top: 12px;
  color: #666e69;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-section {
  padding: 80px 0 160px;
}

.about-grid {
  display: grid;
  grid-template-columns: .42fr 1.15fr .65fr;
  gap: 7%;
  align-items: start;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.about-copy h2 {
  margin-bottom: 50px;
}

.about-copy > p:last-child {
  max-width: 660px;
  margin: 34px 0 0;
  color: #555e5d;
}

.capability-list {
  display: grid;
  margin-top: 108px;
  border-top: 1px solid var(--line);
}

.capability-list span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.contact-section {
  padding: 125px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 12%;
  align-items: end;
}

.contact-section h2 {
  max-width: 800px;
  margin-top: 28px;
  color: var(--white);
}

.contact-actions {
  display: grid;
}

.contact-actions a {
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  font-family: var(--serif);
  font-size: 23px;
}

.contact-actions p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.site-footer,
.site-footer.ink {
  padding: 70px 0 38px;
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .8fr .6fr;
  gap: 8%;
  align-items: start;
}

.brand-footer {
  width: max-content;
  padding: 0;
  background: transparent;
}

.footer-grid > p {
  margin: 0;
  color: #606966;
  font-size: 12px;
}

.footer-grid nav {
  display: grid;
  gap: 7px;
  font-size: 12px;
}

.footer-grid > small {
  grid-column: 1 / -1;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #747b77;
  font-size: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

/* Project pages */
.project-page .site-header {
  background: rgba(242, 239, 232, .94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.project-hero {
  padding: 180px 0 56px;
  background: var(--paper);
}

.project-hero-top {
  display: grid;
  grid-template-columns: 1.4fr .62fr;
  gap: 12%;
  align-items: end;
  margin-bottom: 60px;
}

.project-hero h1 {
  font-size: clamp(72px, 10vw, 154px);
  line-height: .78;
}

.project-hero h1 em {
  display: block;
  color: var(--blue);
  font-weight: 400;
}

.project-hero .project-logo-heading {
  display: flex;
  width: min(100%, 570px);
  min-height: 230px;
  align-items: center;
  margin: 16px 0 0;
}

.project-logo-heading img {
  display: block;
  width: 100%;
  height: 230px;
  max-height: 230px;
  object-fit: contain;
  object-position: left center;
}

.project-logo-heading-southfield {
  max-width: 500px;
}

.project-logo-heading-southfield img {
  height: 210px;
  max-height: 210px;
}

.project-hero-summary {
  max-width: 430px;
  color: #505959;
  font-size: 17px;
}

.project-hero-image {
  width: var(--wrap);
  height: min(64vw, 760px);
  margin-inline: auto;
  object-fit: cover;
}

.waadi-hero-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  grid-template-rows: minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  background: #dce7ec;
}

.waadi-hero-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.waadi-hero-grid img:first-child {
  object-position: center 60%;
}

.waadi-hero-grid img:last-child {
  object-position: center;
}

.project-detail {
  position: relative;
  z-index: 1;
  padding: 130px 0;
  background-color: var(--paper);
}

.project-detail-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 12%;
}

.project-detail h2,
.residences-section h2,
.amenities-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.project-story .lead-copy {
  margin-bottom: 38px;
}

.project-story > p:not(.lead-copy) {
  max-width: 680px;
  color: #515a59;
}

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

.project-stat-grid div {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--line);
}

.project-stat-grid div + div {
  padding-left: 22px;
}

.project-stat-grid div:last-child {
  border-right: 0;
}

.project-stat-grid span {
  display: block;
  color: #747b77;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-stat-grid b {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.gallery-section {
  overflow: hidden;
  padding: 30px 0 140px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, clamp(300px, 28vw, 420px));
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .gallery-facade {
  object-position: center 58%;
}

.gallery-grid .gallery-wide {
  grid-row: span 2;
  min-height: 0;
}

.gallery-grid .gallery-small {
  min-height: 0;
}

.gallery-grid-secondary {
  margin-top: 24px;
}

.waadi-film-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(280px, 27vw, 390px));
  gap: 18px;
}

.waadi-film-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.waadi-gallery-facade {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  object-position: center 58%;
}

.waadi-gallery-hallway {
  grid-column: 5 / 10;
  grid-row: 1;
}

.waadi-gallery-bedroom {
  grid-column: 10 / 13;
  grid-row: 1;
}

.waadi-gallery-bathroom {
  grid-column: 5 / 8;
  grid-row: 2;
}

.waadi-gallery-kitchen {
  grid-column: 8 / 11;
  grid-row: 2;
}

.waadi-gallery-detail {
  grid-column: 11 / 13;
  grid-row: 2;
}

.photo-credit {
  margin-top: 18px;
  color: #6a716e;
  font-size: 10px;
  letter-spacing: .05em;
}

.photo-credit a {
  border-bottom: 1px solid var(--line);
}

.residences-section {
  padding: 135px 0;
}

.residences-head {
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 12%;
  align-items: end;
  margin-bottom: 64px;
}

.residences-head p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.plan-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
}

.plan-tab {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  cursor: pointer;
}

.plan-tab.is-active {
  background: var(--white);
  color: var(--ink);
}

.plan-tab:hover {
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
}

.plan-tab.is-active:hover {
  color: var(--ink);
}

.plan-stage {
  display: grid;
  grid-template-columns: 1.55fr .45fr;
  gap: 7%;
  align-items: center;
  padding: 40px;
  background: var(--paper-bright);
  color: var(--ink);
}

.plan-image {
  display: none;
  width: 100%;
  max-height: 650px;
  object-fit: contain;
}

.plan-image.is-active {
  display: block;
}

.plan-notes h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.plan-notes p {
  color: #626a67;
  font-size: 13px;
}

.amenities-section {
  padding: 140px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10%;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.amenity-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #3f4948;
  font-size: 13px;
}

.video-tour-section {
  padding: 10px 0 150px;
}

.project-film-section {
  padding: 10px 0 150px;
}

.video-tour-head {
  display: grid;
  grid-template-columns: 1fr .48fr;
  gap: 12%;
  align-items: end;
  padding: 58px 0 64px;
}

.video-tour-head h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.video-tour-head p {
  margin: 0;
  color: #56605e;
}

.video-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-film {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(300px, .58fr);
  margin-bottom: 76px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e6e1d7;
  color: var(--ink);
}

.featured-film-media {
  display: grid;
  min-height: 700px;
  place-items: center;
  background: #d7d1c6;
}

.featured-film video {
  display: block;
  width: 100%;
  height: 700px;
  background: #d7d1c6;
  object-fit: contain;
}

.featured-film-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(38px, 5vw, 76px);
}

.featured-film-copy h3 {
  margin: 22px 0 28px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.featured-film-copy > p:last-child {
  margin: 0;
  color: #59625f;
}

.featured-film-copy .eyebrow {
  color: var(--blue);
}

.featured-film-landscape {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .55fr);
  margin-bottom: 0;
}

.featured-film-landscape .featured-film-media {
  min-height: 0;
}

.featured-film-landscape video {
  height: auto;
  aspect-ratio: 16 / 9;
}

.social-tour-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.social-tour-label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-tour-label p {
  margin: 0;
  color: #69716e;
  font-size: 12px;
}

.video-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-bright);
  color: var(--ink);
}

.video-card::after {
  display: none;
}

.video-card img {
  grid-row: 1;
  height: 480px;
  min-height: 0;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.video-card:hover img {
  transform: scale(1.025);
}

.video-play {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .85);
  background: rgba(9, 18, 26, .52);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
}

.video-meta {
  position: static;
  z-index: 2;
  display: flex;
  min-height: 96px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px 22px;
  background: var(--paper-bright);
}

.video-meta b {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.video-meta small {
  max-width: 115px;
  color: #69716e;
  font-size: 10px;
  text-align: right;
}

.project-cta {
  position: relative;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 650px;
  display: grid;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.project-cta > img {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.project-cta::after {
  display: none;
}

.project-cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  align-self: center;
  padding: 80px clamp(40px, 6vw, 92px);
  text-align: left;
}

.project-cta h2 {
  margin: 22px 0 40px;
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.button.button-ghost {
  border: 1px solid rgba(255, 255, 255, .65);
  background: transparent;
  color: var(--white);
}

.button {
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.button.button-ghost:hover,
.button.button-ghost:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

@keyframes hero-in {
  from { opacity: .5; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
  :root {
    --wrap: min(100% - 48px, 900px);
  }

  .site-header {
    height: 72px;
    padding: 0 24px;
  }

  .menu-toggle {
    display: flex;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    height: calc(100svh - 72px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 40px 24px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--serif);
    font-size: 42px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-active {
    color: var(--ink);
    background: var(--paper);
  }

  .site-header.menu-active .menu-toggle i {
    transform: rotate(45deg);
  }

  .site-header.menu-active .menu-toggle i::after {
    transform: rotate(-90deg);
  }

  .hero-index {
    display: none;
  }

  .hero-content {
    padding-block: 140px 42px;
  }

  .hero-content h1 {
    margin-bottom: 44px;
  }

  .hero-bottom {
    padding-right: 0;
  }

  .intro-grid,
  .approach-heading,
  .contact-grid,
  .project-hero-top,
  .residences-head {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .project-grid,
  .project-feature-reverse .project-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .project-feature-reverse .project-copy {
    order: 2;
  }

  .project-image-tall,
  .project-image-wide {
    aspect-ratio: 1.4 / 1;
  }

  .about-grid {
    grid-template-columns: .35fr 1.2fr;
  }

  .capability-list {
    grid-column: 2;
    margin-top: 5px;
  }

  .project-detail-grid,
  .amenities-grid,
  .video-tour-head,
  .featured-film,
  .featured-film-landscape {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .featured-film {
    gap: 0;
  }

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

  .project-cta > img {
    height: min(68svh, 620px);
    min-height: 480px;
  }

  .project-cta-content {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 680px) {
  :root {
    --wrap: calc(100% - 32px);
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-logo {
    width: 156px;
  }

  .menu-toggle span {
    display: none;
  }

  .hero-media {
    object-position: 53% center;
  }

  .hero-content h1 {
    font-size: clamp(58px, 19vw, 84px);
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .intro-section,
  .approach-section,
  .image-pair,
  .project-detail,
  .residences-section,
  .amenities-section {
    padding: 94px 0;
  }

  .section-kicker span {
    display: none;
  }

  .intro-grid {
    padding-top: 38px;
  }

  .intro-grid h2,
  .about-copy h2,
  .contact-section h2,
  .project-detail h2,
  .residences-section h2,
  .amenities-section h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .lead-copy {
    font-size: 24px;
  }

  .project-feature {
    padding: 20px 0 100px;
  }

  .project-copy h3 {
    font-size: 62px;
  }

  .project-image-tall,
  .project-image-wide {
    aspect-ratio: 1 / 1.03;
  }

  .approach-heading {
    padding: 42px 0 72px;
  }

  .approach-heading h2 {
    font-size: 50px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 10px 16px;
  }

  .process-list p {
    grid-column: 2;
  }

  .image-pair-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .portrait-frame {
    width: 74%;
  }

  .about-section {
    padding: 40px 0 100px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .capability-list {
    grid-column: auto;
    margin-top: 0;
  }

  .contact-section {
    padding: 92px 0;
  }

  .contact-actions a {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 30px;
  }

  .footer-grid nav {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .project-hero {
    padding-top: 132px;
  }

  .project-hero h1 {
    font-size: 78px;
  }

  .project-hero .project-logo-heading {
    min-height: 150px;
    margin-top: 8px;
  }

  .project-logo-heading img,
  .project-logo-heading-southfield img {
    height: 150px;
    max-height: 150px;
  }

  .project-hero-image {
    width: 100%;
    height: 74svh;
  }

  .waadi-hero-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 8px;
  }

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

  .project-stat-grid div,
  .project-stat-grid div + div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid .gallery-wide,
  .gallery-grid .gallery-small {
    height: 78vw;
    min-height: 0;
  }

  .waadi-film-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 62vw);
    gap: 10px;
  }

  .waadi-gallery-facade {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .waadi-gallery-hallway {
    grid-column: 2;
    grid-row: 1;
  }

  .waadi-gallery-bedroom {
    grid-column: 2;
    grid-row: 2;
  }

  .waadi-gallery-bathroom {
    grid-column: 1;
    grid-row: 3;
  }

  .waadi-gallery-kitchen {
    grid-column: 2;
    grid-row: 3;
  }

  .waadi-gallery-detail {
    grid-column: 1 / 3;
    grid-row: 4;
  }

  .video-tour-section,
  .project-film-section {
    padding: 10px 0 94px;
  }

  .video-tour-head {
    padding: 38px 0 44px;
  }

  .video-tour-grid {
    grid-template-columns: 1fr;
  }

  .featured-film-media {
    min-height: 0;
  }

  .featured-film video {
    height: 72svh;
    max-height: 720px;
  }

  .featured-film-landscape video {
    height: auto;
  }

  .featured-film-copy {
    padding: 36px 24px 42px;
  }

  .social-tour-label {
    display: block;
  }

  .social-tour-label p {
    margin-top: 8px;
  }

  .video-card {
    min-height: 0;
  }

  .video-card img {
    height: 520px;
    min-height: 0;
  }

  .plan-stage {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .project-cta {
    min-height: 0;
  }

  .project-cta > img {
    height: 78vw;
    min-height: 420px;
  }

  .project-cta-content {
    padding: 64px 24px 72px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
