:root {
  --black: #0a0d0f;
  --ink: #14191b;
  --paper: #f4f2ed;
  --white: #ffffff;
  --red: #e7322b;
  --red-dark: #a9120f;
  --steel: #c4c9cc;
  --muted: #687174;
  --line: rgba(20, 25, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

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

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

a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.project-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1420px);
  height: 96px;
  margin: 0 auto;
  color: var(--white);
}

.project-brand {
  display: inline-flex;
  width: max-content;
}

.project-brand img {
  width: 126px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.project-header nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
}

.project-header nav a {
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.project-header nav a:hover {
  opacity: 1;
}

.header-action {
  justify-self: end;
  min-height: 44px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.project-hero-image {
  object-fit: cover;
  object-position: center;
}

.project-hero-shade {
  background: rgba(4, 8, 8, 0.61);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 128px, 1420px);
  margin: 0 auto;
  padding: 166px 0 54px;
}

.project-kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  font-size: 96px;
  line-height: 0.96;
}

.project-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.6;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.action {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.action:hover {
  transform: translateY(-2px);
}

.action-primary {
  color: var(--white);
  background: var(--red);
}

.action-primary:hover {
  background: #f13c35;
}

.action-secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(6, 10, 11, 0.3);
}

.action-secondary:hover {
  border-color: var(--white);
  background: rgba(6, 10, 11, 0.55);
}

.action-outline {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  gap: 40px;
  margin: 46px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.project-facts div {
  display: grid;
  gap: 7px;
}

.project-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.visual-disclaimer {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
}

.season-offer {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr auto;
  align-items: center;
  gap: 64px;
  min-height: 190px;
  padding: 40px max(64px, calc((100vw - 1420px) / 2));
  color: var(--white);
  background: var(--red-dark);
}

.season-offer .section-label {
  color: rgba(255, 255, 255, 0.66);
}

.season-offer h2 {
  font-size: 44px;
}

.season-offer > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.season-offer > a {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-wrap {
  padding: 112px max(64px, calc((100vw - 1420px) / 2));
}

.project-about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.project-about h2,
.lots-heading h2,
.gallery-heading h2,
.location-section h2,
.project-contact h2 {
  font-size: 62px;
  line-height: 1.04;
}

.large-copy {
  max-width: 600px;
  margin: 30px 0 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-points {
  border-top: 1px solid var(--line);
}

.about-points div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-points strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.about-points span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

figure {
  margin: 0;
}

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

.about-visual img {
  aspect-ratio: 16 / 10;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
}

.lots-section {
  color: var(--white);
  background: var(--black);
}

.lots-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.lots-heading > p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.lot-list {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.lot-list span {
  display: grid;
  min-height: 94px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.lot-list span:last-child {
  border-right: 0;
}

.price-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
}

.price-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.price-line a {
  justify-self: end;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-gallery {
  background: #e8e5de;
}

.gallery-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 24px;
}

.gallery-grid figure {
  min-width: 0;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

.gallery-grid .gallery-wide img {
  aspect-ratio: 16 / 7;
}

.location-section {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr auto;
  align-items: end;
  gap: 70px;
  color: var(--white);
  background: #1d342b;
}

.location-section > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.project-contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 112px max(64px, calc((100vw - 1420px) / 2));
  color: var(--white);
  background: #15191c;
}

.project-contact h2 {
  max-width: 850px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
}

.project-phone {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.project-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 104px;
  align-items: center;
  gap: 24px;
  padding: 24px max(64px, calc((100vw - 1420px) / 2));
  color: rgba(255, 255, 255, 0.55);
  background: #090b0c;
}

.project-footer p {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
}

.project-footer p:last-child {
  justify-self: end;
}

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

  .project-header nav {
    display: none;
  }

  h1 {
    font-size: 76px;
  }

  .season-offer {
    grid-template-columns: 1fr 1fr;
  }

  .season-offer > a {
    grid-column: span 2;
    justify-self: start;
  }

  .project-about,
  .lots-heading,
  .location-section,
  .project-contact {
    grid-template-columns: 1fr;
  }

  .project-about,
  .lots-heading {
    gap: 48px;
  }

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

  .lot-list span:nth-child(6) {
    border-right: 0;
  }

  .lot-list span:nth-child(n + 7) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .location-section,
  .project-contact {
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .project-header {
    width: calc(100% - 40px);
    height: 78px;
  }

  .project-brand img {
    width: 96px;
    height: 42px;
  }

  .header-action {
    min-height: 38px;
    padding: 11px 13px;
    font-size: 10px;
  }

  .project-hero {
    min-height: 780px;
  }

  .project-hero-image {
    object-position: 52% center;
  }

  .project-hero-content {
    width: calc(100% - 40px);
    padding: 118px 0 40px;
  }

  h1 {
    font-size: 52px;
  }

  .project-lead {
    font-size: 16px;
  }

  .project-actions {
    display: grid;
  }

  .action {
    width: 100%;
    min-height: 54px;
  }

  .project-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-facts div {
    grid-template-columns: 1fr auto;
    align-items: baseline;
  }

  .project-facts dd {
    font-size: 20px;
  }

  .visual-disclaimer {
    right: 20px;
    bottom: 12px;
  }

  .season-offer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 20px;
  }

  .season-offer h2 {
    font-size: 38px;
  }

  .season-offer > a {
    grid-column: auto;
  }

  .section-wrap,
  .project-contact {
    padding: 78px 20px;
  }

  .project-about h2,
  .lots-heading h2,
  .gallery-heading h2,
  .location-section h2,
  .project-contact h2 {
    font-size: 42px;
  }

  .about-points div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lot-list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 46px;
  }

  .lot-list span,
  .lot-list span:nth-child(6) {
    min-height: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .lot-list span:nth-child(4n) {
    border-right: 0;
  }

  .price-line {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price-line strong {
    font-size: 25px;
  }

  .price-line a {
    justify-self: start;
    margin-top: 12px;
  }

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

  .gallery-grid .gallery-wide {
    grid-column: auto;
  }

  .gallery-grid .gallery-wide img,
  .gallery-grid img {
    aspect-ratio: 4 / 3;
  }

  .project-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 36px 20px;
  }

  .project-footer p:last-child {
    justify-self: start;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
  }
}
