/* Northscape landing page — Figma frame 153:2 */

@font-face {
  font-family: "Kugile";
  src: url("../assets/fonts/kugile.regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/CormorantGaramond-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/CormorantGaramond-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fustat";
  src: url("../assets/fonts/Fustat-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lexend Giga";
  src: url("../assets/fonts/LexendGiga-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Radio Canada Big";
  src: url("../assets/fonts/RadioCanadaBig-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Flex";
  src: url("../assets/fonts/RobotoFlex-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --forest: #1b3218;
  --forest-dark: #142611;
  --gold: #d58e39;
  --gold-dark: #a66f28;
  --footer-gold: #bb8231;
  --paper: #f8f8f8;
  --white: #fff;
  --black: #000;
  --muted: #657061;
  --line: rgba(0, 0, 0, 0.18);
  --content-width: 1730px;
  --section-space: 60px;
  --section-title-space: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  position: relative;
}

.wrap {
  width: 90%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 0;
}

.section-title {
  margin-bottom: var(--section-title-space);
  text-align: center;
}

.section-title h2,
.enquiry h2 {
  margin: 0;
  margin-top:0px;
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 112px;
  padding-inline: 3.4vw;
  border-bottom: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  transform: translateX(-50%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  height: 88px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(36, 51, 27, 0.78);
  box-shadow: 0 12px 36px rgba(10, 20, 8, 0.22);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  width: auto;
  height: 65px;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 3.3vw;
  color: #f8f8f8;
  text-align: center;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.0px;
}

.site-header nav a:not(.button):not(.nav-brand) {
  position: relative;
}

.site-header nav a:not(.button):not(.nav-brand)::after {
  position: absolute;
  right: 100%;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: right 0.3s ease;
}

.site-header nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
}

.nav-brand {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: var(--black);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.button:hover {
  background: transparent;
  color: var(--gold);
}

.button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.button-small {
  height: 45px;
}

.floating-actions {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-action {
  display: grid;
  place-items: center;
  width: 44px;
  min-height: 128px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: var(--forest-dark);
  font: 500 12px/1.2 "Roboto", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.floating-call {
  background: var(--forest-dark);
  color: var(--white);
}

.mobile-sticky-actions {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  place-items: start center;
  width: 100%;
  height: clamp(620px, 67.14vw, 1289px);
  background: #24331b;
  color: var(--paper);
  text-align: center;
}

.hero-background {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 95%;
  margin-top: clamp(150px, 16vw, 394px);
}

.hero-copy img {
  width: clamp(220px, 18vw, 320px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.hero-copy > p {
  margin: 63px 0 0;
  color: #f8f8f8;
  text-align: center;
  font-family: "Kugile", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
}

.hero-copy > p span {
  display: block;
}

/* Overview */

.intro {
  position: relative;
  width: 100%;
  height: 162.7vw;
  max-height: 3124px;
  margin-top: clamp(0px, -24vw, -90px);
  color: var(--paper);
  text-align: center;
}

.intro-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100.01%;
  height: 99.98%;
  object-fit: fill;
  pointer-events: none;
}

.intro-leaf {
  position: absolute;
  top: 75.98%;
  left: 8.87%;
  z-index: 4;
  width: 14.09%;
  height: 7.98%;
  pointer-events: none;
}

.intro::after {
  content: none;
}

.intro-copy {
  position: absolute;
  top: 78.94%;
  left: 53.3%;
  z-index: 5;
  width: 774px;
  max-width: 40.31%;
}

.intro h2 {
  width: 774px;
  max-width: 100%;
  height: auto;
  margin: 0;
  color: #f8f8f8;
  font-family: "Kugile", "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
}

.intro h2 span {
  display: block;
  white-space: nowrap;
}

.intro h2 span:first-child {
  width: 100%;
  margin-inline: auto;
}

.intro h2 span + span {
  margin-top: 0;
}

.intro-copy > p:last-child {
  max-width: 774px;
  margin: 0px 0 0;
  color: #f8f8f8;
  font-family: "Roboto", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: left;
}

/* Project statistics */

.stats {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  text-align: left;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  justify-content: space-between;
  align-content: start;
  width: 100%;
}

.stats-list > div {
  min-width: 0;
}

.stats strong {
  display: block;
  color: var(--black);
  font: 400 60px/80px "Fustat", sans-serif;
  white-space: nowrap;
}

.stats span {
  font: 400 16px/normal "Lexend Giga", sans-serif;
  white-space: nowrap;
}

.stats .rera-row {
  display: flex;
  align-items: center;
  width: 350px;
  height: 62px;
  margin: min(4vw, 70px) 0 0;
  text-align: left;
}

.rera-row img {
  flex: 0 0 148px;
  width: 148px;
  height: 62px;
  object-fit: cover;
}

.stats .rera-row span {
  margin-left: 40px;
  color: var(--black);
  font-family: "Google Sans", "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 3.78px;
  white-space: nowrap;
}

/* Master plan and amenities */

.masterplan {
  padding: var(--section-space) 0;
  background: var(--white);
  overflow: hidden;
}

.masterplan-inner {
  width: min(92%, var(--content-width));
  margin-inline: auto;
}

.masterplan .section-title {
  margin-bottom: 32px;
}

.masterplan .section-title h2 {
  color: var(--forest-dark);
}

.masterplan-frame {
  position: relative;
  overflow: auto hidden;
  border: 1px solid rgba(27, 50, 24, 0.12);
  border-bottom: 1px solid rgba(27, 50, 24, 0.12);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(20, 38, 17, 0.12);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gold) rgba(27, 50, 24, 0.08);
  scrollbar-width: thin;
}

.masterplan-frame::-webkit-scrollbar {
  height: 8px;
}

.masterplan-frame::-webkit-scrollbar-track {
  background: rgba(27, 50, 24, 0.08);
}

.masterplan-frame::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.masterplan img {
  display: block;
  width: 100%;
  min-width: 980px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.masterplan-legend {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) 1fr;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(27, 50, 24, 0.1);
  border-top: 0;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(20, 38, 17, 0.08);
}

.masterplan-legend h3 {
  margin: 0;
  color: var(--forest-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 2.5vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.masterplan-legend ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 11px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: masterplan-legend;
}

.masterplan-legend li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 8px;
  color: var(--forest-dark);
  font: 400 13px/1.45 "Manrope", Arial, sans-serif;
}

.masterplan-legend li::before {
  counter-increment: masterplan-legend;
  content: counter(masterplan-legend, decimal-leading-zero) ".";
  color: var(--gold-dark);
  font-weight: 400;
}

@media (max-width: 1180px) {
  .masterplan-inner {
    width: 94%;
  }

  .masterplan .section-title {
    margin-bottom: 22px;
  }

  .masterplan img {
    min-width: 820px;
  }

  .masterplan-legend {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

  .masterplan-legend ol {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .masterplan {
    padding-block: 34px;
  }

  .masterplan-inner {
    width: 100%;
  }

  .masterplan .section-title {
    width: 90%;
    margin-inline: auto;
  }

  .masterplan-frame {
    border-inline: 0;
    box-shadow: 0 18px 45px rgba(20, 38, 17, 0.1);
  }

  .masterplan img {
    min-width: 760px;
  }

  .masterplan-legend {
    padding: 24px 5%;
    border-inline: 0;
  }

  .masterplan-legend ol {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .masterplan-legend li {
    grid-template-columns: 32px 1fr;
    font-size: 12px;
  }
}

.amenities,
.specifications,
.highlights {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 36px;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 10px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.amenity-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
}

.amenity span {
  display: block;
  max-width: 114px;
}

/* Full-width project imagery */

.image-break {
  height: auto;
  overflow: hidden;
}

.image-break img {
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
}

.image-break.tall img {
  aspect-ratio: auto;
}

.community-slider,
.brand-slider {
  position: relative;
  touch-action: pan-y;
}

.community-slider-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.community-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.community-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 962;
  object-fit: cover;
}

.brand-slider .community-slide img {
  aspect-ratio: 1920 / 900;
}

.brand-slider-caption {
  position: absolute;
  left: clamp(18px, 4vw, 72px);
  bottom: clamp(18px, 2.5vw, 42px);
  z-index: 2;
  padding: 10px 14px;
  background: rgba(27, 50, 24, 0.84);
  color: var(--gold);
  font: 400 12px/1 "Lexend Giga", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.community-slider-controls {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: clamp(18px, 2.5vw, 42px);
  left: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: 8px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  backdrop-filter: none;
}

.community-slider-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  background: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font: 300 22px/1 Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.community-slider-arrow:hover,
.community-slider-arrow:focus-visible {
  background: var(--forest-dark);
  color: var(--gold);
}

.community-slider-count {
  grid-row: 1;
  grid-column: 1 / -1;
  justify-self: end;
  min-width: auto;
  height: auto;
  margin-bottom: 3px;
  padding: 7px 9px;
  border: 0;
  border-radius: 2px;
  background: rgba(36, 51, 27, 0.82);
  color: var(--white);
  font: 400 10px/1 "Lexend Giga", sans-serif;
  letter-spacing: 0.12em;
  text-align: center;
}

@media (max-width: 767px) {
  .brand-slider .community-slide img {
    aspect-ratio: 4 / 3;
  }

  .brand-slider-caption {
    position: static;
    padding: 10px 2.5%;
    background: var(--forest-dark);
    font-size: 10px;
  }

  .community-slider-controls {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    background: var(--white);
  }

  .community-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .community-slider-count {
    align-self: center;
    min-width: auto;
    height: auto;
    margin-bottom: 0;
  }
}

/* Enquiry forms */

.enquiry,
.enquiry.light {
  padding: var(--section-space) 5%;
  background: var(--white);
  color: var(--black);
}

.enquiry .section-title {
  margin-bottom: var(--section-title-space);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 55px;
  max-width: 1186px;
  margin-inline: auto;
}

.contact-form input {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.65);
  outline: 0;
  background: transparent;
  color: inherit;
  font: 400 18px/30px "Roboto Flex", sans-serif;
}

.contact-form input::placeholder {
  color: inherit;
  opacity: 0.7;
}

.contact-form input:focus {
  border-color: var(--gold);
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: center;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.enquiry-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.enquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 8, 0.68);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.enquiry-modal-panel {
  position: relative;
  width: min(480px, 100%);
  max-height: min(720px, calc(100dvh - 48px));
  overflow-y: auto;
  padding: 34px 30px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.enquiry-modal .section-title {
  margin-bottom: 26px;
}

.enquiry-modal #enquiryModalTitle {
  color: #000;
  font-family: "Kugile", "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.enquiry-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: 400 28px/1 Arial, sans-serif;
  cursor: pointer;
}

.modal-form {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 100%;
}

.modal-form input {
  font-size: 14px;
  line-height: 24px;
}

body.modal-open {
  overflow: hidden;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--forest-dark);
}

.thank-you {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 40px 5%;
  color: var(--white);
}

.thank-you-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.thank-you::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 38, 17, 0.92), rgba(20, 38, 17, 0.56));
  content: "";
}

.thank-you-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 48px 0;
  text-align: center;
}

.thank-you-logo {
  width: 190px;
  height: auto;
  margin: 0 auto 34px;
}

.thank-you-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font: 400 16px/1 "Lexend Giga", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.thank-you h1 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.05;
  text-transform: uppercase;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button-outline {
  background: transparent;
  color: var(--gold);
}

/* Plot configurations */

.plots {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--white);
}

.plot-sizes {
  display: grid;
  grid-template-columns: repeat(4, 182px);
  justify-content: space-between;
  padding: 0 8.9vw 32px;
}

.plot-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 64px 48px;
  align-items: end;
  width: 182px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--black);
  text-align: left;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.plot-tab:hover,
.plot-tab:focus-visible,
.plot-tab.active {
  opacity: 1;
}

.plot-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.plot-number {
  font: 500 56px/60px "Roboto", sans-serif;
}

.plot-unit {
  align-self: center;
  font: 400 22px/24px "Kugile", "Cormorant Garamond", serif;
}

.plot-facing {
  grid-column: 1 / -1;
  font: 400 28px/48px "Kugile", "Cormorant Garamond", serif;
  white-space: nowrap;
}

.plot-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.plot-image-frame img {
  aspect-ratio: auto;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.plot-image-frame img.switching {
  opacity: 0;
}

/* Clubhouse */

.club-intro {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--white);
}

.club-intro .section-title {
  margin-bottom: var(--section-title-space);
}

.club-kicker {
  margin-top: 10px;
  color: #000;
  text-align: center;
  font-family: "Kugile", "Cormorant Garamond", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  text-transform: uppercase;
}

.club-intro .section-title h2 {
  margin-top: 40;
  color: #d58e39;
  text-align: center;
  font-family: "Kugile", "Cormorant Garamond", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  text-transform: uppercase;
}

.clubhouse-brand-frame {
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-bottom: 6px solid var(--forest-dark);
  background: var(--forest-dark);
}

.clubhouse-brand-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 50, 24, 0) 62%, rgba(27, 50, 24, 0.34) 100%);
  content: "";
  pointer-events: none;
}

.clubhouse-brand-frame .community-slide img {
  height: auto;
  aspect-ratio: 1920 / 900;
  object-fit: cover;
}

.club-details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 7vw;
  padding: var(--section-space) 5vw;
  background: var(--paper);
}

.club-details > img {
  max-height: 720px;
  object-fit: contain;
}

/* Specifications */

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 7.08%;
}

.spec {
  border-bottom: 1px solid var(--line);
}

.spec summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  cursor: pointer;
  list-style: none;
}

.spec summary::-webkit-details-marker {
  display: none;
}

.spec h3 {
  margin: 0;
  font: 500 16px/26px "Roboto", Arial, sans-serif;
}

.spec p {
  margin: -2px 36px 22px 0;
  color: #000;
}

.spec-toggle,
.spec-toggle img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.spec-minus,
.spec[open] .spec-plus {
  display: none;
}

.spec[open] .spec-minus {
  display: block;
}

/* Location */

.location {
  background: var(--forest);
}

.location img {
  aspect-ratio: auto;
  object-fit: cover;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 31.67% 32.76% 35.57%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight-column {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.highlight-column:last-child {
  border-right: 0;
}

.highlight-grid article {
  padding: 0 3vw;
}

.highlight-grid h3 {
  display: flex;
  align-items: center;
  min-height: 66px;
  margin: 0;
  font: 400 24px/1 "Kugile", serif;
}

.highlight-list {
  padding: 8px 0 16px;
}

.highlight-list p {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 44px;
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  font-family: "Roboto", Arial, sans-serif;
}

.highlight-list b {
  display: flex;
  width: 26px;
  flex-direction: column;
  color: #000;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1;
}

.highlight-list b span {
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  text-align: center;
}

.highlight-list b small {
  margin-top: 2px;
  font-size: 6px;
  text-align: center;
}

/* Footer */

footer {
  background: #a97b39;
  color: var(--white);
}

.footer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 90%;
  height: 176px;
  margin-inline: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font: 300 clamp(28px, 2.71vw, 52px)/1.2 "Roboto", Arial, sans-serif;
  text-align: center;
}

.footer-call a {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90%;
  height: 346px;
  margin-inline: auto;
  padding: 86px 0 0;
}

.footer-address strong {
  font: 500 20px/24px "Roboto", Arial, sans-serif;
}

.footer-address p {
  margin: 19px 0 0;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
}

.footer-address-site {
  justify-self: end;
  width: 313px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}

.footer-social a,
.footer-social img {
  width: 29px;
  height: 29px;
}

.footer-social a {
  display: grid;
  place-items: center;
}

.footer-linkedin {
  border: 1px solid currentColor;
  color: var(--white);
  font: 500 16px/1 "Roboto", Arial, sans-serif;
  text-transform: uppercase;
}

.footer-address-site,
.footer-address-site p {
  text-align: left;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 53px;
  padding: 0 5%;
  background: rgba(213, 142, 57, 0.1);
  font: 400 14px/20px "Roboto", Arial, sans-serif;
  letter-spacing: 0px;
}

.copyright span:last-child {
  width: 313px;
  text-align: left;
}

/* Motion and form feedback */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 30;
  padding: 15px 22px;
  background: var(--gold);
  color: var(--forest-dark);
  transform: translateY(120px);
  transition: transform 0.4s ease;
}

.toast.show {
  transform: none;
}

/* Laptop */

@media (min-width: 1181px) and (max-width: 1600px) {
  .stats strong {
    font-size: clamp(44px, 3.8vw, 54px);
    line-height: 72px;
  }

  .stats-list > div:nth-child(3) strong,
  .stats-list > div:nth-child(4) strong {
    font-size: clamp(34px, 3vw, 44px);
  }
}

/* Tablet */

@media (max-width: 1180px) {
  :root {
    --section-space: 30px;
    --section-title-space: 18px;
  }

  .enquiry-modal #enquiryModalTitle {
    font-size: 20px;
  }

  .button {
    min-width: 138px;
    height: 40px;
    font-size: 13px;
  }

  .button-small {
    height: 38px;
  }

  .floating-action {
    width: 40px;
    min-height: 112px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

  .hero-copy > p {
    font-size: 14px;
    line-height: 24px;
  }

  .wrap {
    width: 95%;
  }

  .site-header {
    left: 0;
    height: 85px;
    transform: none;
  }

  .site-header.scrolled {
    height: 72px;
  }

  .hero {
    z-index: 2;
    overflow: visible;
  }

  .hero-copy.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand {
    width: 145px;
    height: 65px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    margin: 7px;
    background: var(--white);
  }

  .site-header nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 90px 24px 40px;
    overflow-y: auto;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(36, 51, 27, 0.94);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
  }

  .site-header.open nav {
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .intro {
    z-index: 1;
    height: 1250px;
  }

  .intro-copy {
    top: 72%;
    left: 50%;
    width: 80%;
    max-width: 774px;
    transform: translateX(-50%);
  }

  .intro-copy.reveal,
  .intro-copy.reveal.visible {
    opacity: 1;
    transform: translateX(-50%);
    transition: none;
  }

  .intro-leaf {
    top: 58%;
    left: 5%;
    width: 16%;
    height: auto;
  }

  .intro h2 {
    height: auto;
  }

  .intro h2 span + span {
    margin-top: -12px;
  }

  .intro-copy > p:last-child {
    margin-top: 42px;
  }

  .stats {
    height: auto;
  }

  .stats-list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
    gap: 30px;
  }

  .stats .rera-row {
    max-width: 100%;
  }

  .amenity-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .plot-sizes {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .plot-tab {
    width: min(182px, 100%);
  }

  .club-details {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlight-column:last-child {
    border-bottom: 0;
  }

}

/* Mobile */

@media (max-width: 767px) {
  :root {
    --section-space: 25px;
    --section-title-space: 16px;
  }

  .section-title,
  .enquiry h2 {
    text-align: left;
  }

  .section-title,
  .section-title.reveal,
  .section-title.reveal.visible {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  .wrap {
    width: 95%;
    padding-inline: 0;
  }

  .site-header {
    height: 78px;
    padding-inline: 20px;
  }

  .site-header.scrolled {
    height: 68px;
  }

  .brand {
    width: 130px;
    height: 58px;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(var(--white), var(--white)) center calc(50% - 5px) / 28px 2px no-repeat,
      linear-gradient(var(--white), var(--white)) center calc(50% + 5px) / 28px 2px no-repeat;
    transform: translateY(-50%);
  }

  .menu-toggle span {
    margin: 4px;
    opacity: 0;
  }

  .site-header nav {
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 128px 24px 42px calc(14vw + 28px);
    background:
      linear-gradient(to right, rgba(8, 13, 6, 0.58) 0 14vw, transparent 14vw),
      linear-gradient(to right, transparent 0 14vw, #24331b 14vw 100%);
    text-align: left;
  }

  .site-header nav::before {
    display: block;
    width: 100%;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(213, 142, 57, 0.55);
    color: var(--gold);
    content: "Navigation";
    font: 400 10px/1 "Lexend Giga", sans-serif;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .site-header nav::after {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 14vw;
    width: 1px;
    background: rgba(213, 142, 57, 0.35);
    content: "";
    pointer-events: none;
  }

  .site-header nav a:not(.button):not(.nav-brand) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Radio Canada Big", sans-serif;
    font-size: 13px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }

  .site-header nav a:not(.button):not(.nav-brand)::before {
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin-right: 16px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
  }

  .site-header nav a:not(.button):not(.nav-brand)::after {
    content: none;
  }

  .site-header nav .button {
    width: 100%;
    min-width: 0;
    height: 44px;
    margin: 30px 0 0;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: none;
  }

  .floating-actions {
    right: 0;
  }

  .menu-toggle span {
    transition: transform 0.3s ease;
  }

  .site-header.open .menu-toggle span:first-child {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.open .menu-toggle span:last-child {
    opacity: 1;
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header.open .menu-toggle {
    background: transparent;
  }

  body.menu-open {
    overflow: hidden;
  }

  body {
    padding-bottom: 54px;
  }

  .floating-actions {
    display: none;
  }

  .mobile-sticky-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 46px;
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.18);
  }

  .mobile-sticky-actions a,
  .mobile-sticky-actions button {
    display: grid;
    place-items: center;
    min-width: 0;
    border: 0;
    background: var(--forest-dark);
    color: var(--white);
    font: 500 11px/1 "Roboto", Arial, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-sticky-actions button {
    background: var(--gold);
    color: var(--forest-dark);
  }

  .enquiry-modal {
    align-items: end;
    padding: 12px;
    padding-bottom: 76px;
  }

  .enquiry-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 100px);
    padding: 38px 20px 24px;
  }

  .enquiry-modal #enquiryModalTitle {
    font-size: 16px;
  }

  .button {
    min-width: 128px;
    height: 38px;
    font-size: 12px;
  }

  .modal-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .thank-you {
    padding: 30px 5% 84px;
    place-items: center start;
  }

  .thank-you-content {
    padding: 32px 0;
    text-align: left;
  }

  .thank-you-logo {
    width: 145px;
    margin-right: 0;
    margin-left: 0;
  }

  .thank-you h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .thank-you-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .hero {
    height: max(620px, 100svh);
    background-color: transparent;
    background-image: linear-gradient(#24331b, #24331b);
    background-position: top;
    background-size: 100% max(0px, calc(100% - 119.87vw));
    background-repeat: no-repeat;
  }

  .hero-background {
    top: auto;
    bottom: 0;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-copy {
    width: min(100%, 430px);
    margin-top: clamp(145px, 21svh, 185px);
    padding-inline: 20px;
  }

  .hero-copy > p {
    margin-top: 48px;
    font-size: clamp(18px, 5.25vw, 21px);
    line-height: 1.8;
  }

  .hero-copy img {
    width: min(220px, 58vw);
    height: auto;
  }

  .intro {
    height: clamp(780px, 150vw, 960px);
    margin-top: max(-300px, -38vw);
  }

  .intro-background {
    object-fit: cover;
    object-position: 37% center;
  }

  .intro-copy {
    top: auto;
    right: 2.5%;
    bottom: 52px;
    left: 2.5%;
    width: auto;
    max-width: none;
    transform: none;
  }

  .intro-copy.reveal,
  .intro-copy.reveal.visible {
    transform: none;
  }

  .intro h2 {
    width: 100%;
  }

  .intro h2 span {
    white-space: normal;
  }

  .intro h2 span + span {
    margin-top: 0;
  }

  .intro-copy > p:last-child {
    margin-top: 32px;
  }

  .intro-leaf {
    top: auto;
    bottom: 390px;
    left: 4%;
    width: 30%;
    height: auto;
    opacity: 0.7;
  }

  .stats {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }

  .stats-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    row-gap: 20px;
    column-gap: 20px;
  }

  .stats-list > div:nth-child(5) {
    grid-column: 1 / -1;
  }

  .stats strong {
    font-size: 42px;
    line-height: 60px;
  }

  .stats-list > div:nth-child(3) strong,
  .stats-list > div:nth-child(4) strong {
    font-size: clamp(27px, 7.5vw, 36px);
  }

  .stats span {
    font-size: 10px;
    white-space: normal;
  }

  .stats .rera-row {
    position: static;
    justify-self: start;
    width: min(100%, 310px);
    height: auto;
    margin-top: 24px;
    transform: none;
  }

  .stats .rera-row span {
    white-space: nowrap;
  }

  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }

  .amenity {
    align-items: flex-start;
    text-align: left;
    font-size: 10px;
  }

  .amenity-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .amenity span {
    max-width: none;
  }

  .enquiry,
  .enquiry.light {
    padding: var(--section-space) 2.5%;
  }

  .contact-form {
    width: 95%;
    margin-inline: auto;
    gap: 24px;
  }

  .contact-form,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .specifications .section-title {
    margin-bottom: 10px;
  }

  .specifications .section-title h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .spec summary {
    min-height: 48px;
  }

  .spec h3 {
    font-size: 12px;
    line-height: 18px;
  }

  .spec p {
    margin: 0 24px 14px 0;
    font-size: 12px;
    line-height: 18px;
  }

  .spec-toggle,
  .spec-toggle img {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .contact-form button {
    grid-column: auto;
  }

  .plot-sizes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 95%;
    margin-inline: auto;
    gap: 18px 16px;
    padding: 0 2.5% 10px;
  }

  .plot-tab {
    width: 100%;
    grid-template-rows: 42px 30px;
  }

  .plot-number {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 38px;
  }

  .plot-unit {
    font-size: clamp(12px, 3.5vw, 15px);
    line-height: 18px;
  }

  .plot-facing {
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 28px;
  }

  .club-details {
    padding: var(--section-space) 25px;
  }

  .club-floor h3,
  .club-item,
  .club-kicker,
  .club-intro .section-title h2 {
    text-align: left;
  }

  .club-item {
    align-items: flex-start;
  }

  .specifications,
  .highlights,
  .amenities {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }

  .highlight-grid article {
    padding-right: 3%;
    padding-left: 3%;
  }

  .highlight-grid {
    width: 95%;
    margin-inline: auto;
  }

  .highlight-grid h3 {
    min-height: 48px;
    font-size: 20px;
  }

  .highlight-list {
    padding: 4px 0 12px;
  }

  .highlight-list p {
    grid-template-columns: 34px 1fr;
    column-gap: 10px;
    min-height: 38px;
    font-size: 12px;
    line-height: 18px;
  }

  .footer-call {
    width: 95%;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    gap: 6px 10px;
    padding: 24px 0;
    font-size: 18px;
    line-height: 28px;
    text-align: left;
  }

  .footer-call a,
  .footer-call span {
    display: inline-flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    width: 95%;
    height: auto;
    margin-inline: auto;
    gap: 24px;
    padding: 28px 0;
    text-align: left;
  }

  .footer-address-site {
    justify-self: start;
    width: auto;
  }

  .footer-address p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 22px;
  }

  .footer-address-site,
  .footer-address-site p {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 14px;
    margin-top: 20px;
  }

  .copyright {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    min-height: 0;
    gap: 4px;
    padding: 12px 2.5%;
    font-size: 11px;
    line-height: 18px;
    text-align: left;
  }

  .copyright span,
  .copyright span:last-child {
    width: 100%;
    text-align: left;
  }
}

.club-details.club-amenities {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  align-items: center;
  gap: 3.4vw;
  padding: var(--section-space) 3.6vw;
  background: #f8f8f8;
}

.club-amenities-collage {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.club-floor-column { display: grid; gap: 36px; }
.club-floor h3 { margin: 0 0 24px; font: 400 24px/1 "Kugile", serif; text-align: center; }
.club-floor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
.club-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.club-item img { width: 32px; height: 32px; object-fit: contain; margin-bottom: 15px; }
.club-item span { font: 400 12px/20px "Roboto", sans-serif; }

@media (max-width: 1180px) {
  .club-details.club-amenities { grid-template-columns: 1fr; gap: 36px; padding: var(--section-space) 5%; }
  .club-amenities-collage { grid-row: 1; max-width: 804px; margin-inline: auto; }
}

@media (max-width: 767px) {
  .club-details.club-amenities {
    width: 95%;
    margin-inline: auto;
    gap: 28px;
    padding: var(--section-space) 2.5%;
  }

  .club-floor-grid,
  .club-floor-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .club-intro {
    padding-top: var(--section-space);
  }

  .club-intro .section-title {
    margin-bottom: var(--section-title-space);
  }

  .club-kicker {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.2;
  }

  .club-intro .section-title h2 {
    margin-top: 0;
    font-size: 20px;
    line-height: 30px;
  }

  .club-floor h3,
  .club-item,
  .club-kicker,
  .club-intro .section-title h2 {
    text-align: left;
  }

  .club-item {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-copy > p {
    font-size: 18px;
    line-height: 32px;
  }

  .intro {
    height: 820px;
  }

  .stats-list {
    grid-template-columns: 1fr 1fr;
  }

  .stats strong {
    font-size: 35px;
  }

  .stats .rera-row {
    width: 310px;
  }

  .rera-row img {
    flex-basis: 126px;
    width: 126px;
    height: auto;
  }

  .stats .rera-row span {
    margin-left: 20px;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plot-sizes {
    grid-template-columns: 1fr 1fr;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Consistent section spacing */
@media (max-width: 1180px) {
  .site-header nav .nav-brand {
    position: absolute;
    top: 10px;
    left: calc(14vw + 38px);
    display: block;
    width: 145px;
    height: 65px;
    margin: 0;
  }

  .site-header nav .nav-brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .site-header nav::before {
    order: -1;
  }
}

@media (max-width: 767px) {
  .site-header nav .nav-brand {
    left: calc(14vw + 28px);
    width: 130px;
    height: 58px;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 3.4vw;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(var(--white), var(--white)) center calc(50% - 5px) / 28px 2px no-repeat,
      linear-gradient(var(--white), var(--white)) center calc(50% + 5px) / 28px 2px no-repeat;
    transform: translateY(-50%);
  }

  .menu-toggle span {
    margin: 4px;
    opacity: 0;
    transition: transform 0.3s ease;
  }

  .site-header nav {
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 128px 38px 42px calc(14vw + 38px);
    background:
      linear-gradient(to right, rgba(8, 13, 6, 0.58) 0 14vw, transparent 14vw),
      linear-gradient(to right, transparent 0 14vw, #24331b 14vw 100%);
    text-align: left;
  }

  .site-header nav::before {
    display: block;
    width: 100%;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(213, 142, 57, 0.55);
    color: var(--gold);
    content: "Navigation";
    font: 400 10px/1 "Lexend Giga", sans-serif;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .site-header nav::after {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 14vw;
    width: 1px;
    background: rgba(213, 142, 57, 0.35);
    content: "";
    pointer-events: none;
  }

  .site-header nav a:not(.button):not(.nav-brand) {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
  }

  .site-header nav a:not(.button):not(.nav-brand)::before {
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin-right: 16px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
  }

  .site-header nav a:not(.button):not(.nav-brand)::after {
    content: none;
  }

  .site-header nav .button {
    width: 100%;
    min-width: 0;
    height: 44px;
    margin: 30px 0 0;
  }

  .site-header.open .menu-toggle span:first-child {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.open .menu-toggle span:last-child {
    opacity: 1;
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header.open .menu-toggle {
    background: transparent;
  }

  body.menu-open {
    overflow: hidden;
  }
}

main > section:not(.hero):not(.intro):not(.masterplan):not(.image-break):not(.location):not(.highlights):not(.stats):not(.amenities):not(.specifications):not(.enquiry):not(.club-details):not(.plots):not(.club-intro) {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 1180px) {
  main > section:not(.hero):not(.intro):not(.masterplan):not(.image-break):not(.location):not(.highlights):not(.stats):not(.amenities):not(.specifications):not(.enquiry):not(.club-details):not(.plots):not(.club-intro) {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  main > section:not(.hero):not(.intro):not(.masterplan):not(.image-break):not(.location):not(.highlights):not(.stats):not(.amenities):not(.specifications):not(.enquiry):not(.club-details):not(.plots):not(.club-intro) {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

/* Responsive typography specification */
h1,
h2 {
  font-size: 48px;
  line-height: 76px;
}

p {
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 1180px) {
  h1,
  h2 {
    font-size: 26px;
    line-height: 36px;
  }

  p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  h1,
  h2 {
    font-size: 18px;
    line-height: 28px;
  }

  p {
    font-size: 14px;
    line-height: 24px;
  }

  .intro {
    height: auto;
    max-height: none;
    background: var(--white);
  }

  .intro-background {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .intro-copy,
  .intro-copy.reveal,
  .intro-copy.reveal.visible {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    padding: var(--section-space) 5%;
    background: var(--white);
    color: var(--black);
    transform: none;
  }

  .intro h2 {
    color: var(--black);
  }

  .intro-copy > p:last-child {
    margin-top: 24px;
    color: var(--black);
  }

  .intro-leaf {
    display: none;
  }
}
