:root {
  --font-xlight: "Chillax-Extralight", sans-serif;
  --font-light: "Chillax-Light", sans-serif;
  --font-regular: "Chillax-Regular", sans-serif;
  --font-medium: "Chillax-Medium", sans-serif;
  --font-semibold: "Chillax-Semibold", sans-serif;
  --font-bold: "Chillax-Bold", sans-serif;
  --text-dark: #201414;
  --text-light: #ffffff;
  --blue-accent: #13b5f1;
  --green-accent: #00a24f;
  --deep-navy: #081421;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-regular);
  background: #0f1e2c;
  color: var(--text-light);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  --hero-content-inline-padding: 58px;
  --building-left: 50.5%;
  --building-width: min(10vw, 240px);
  --building-bottom: 44%;
  --badge-top: 34.2%;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;

}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
  z-index: 5;
}

.hero::before {
  top: 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(3, 12, 18, 0.68) 24%, rgba(3, 12, 18, 0.28) 58%, rgba(3, 12, 18, 0) 100%);
}

.hero::after {
  bottom: 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(2, 10, 15, 0.72) 24%, rgba(2, 10, 15, 0.28) 58%, rgba(2, 10, 15, 0) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  will-change: transform;
}

.hero-sky {
  background-image: url("../images/hero-sky.png");
  z-index: 1;
}

.hero-water {
  bottom: 0;
  background-image: url("../images/hero-water.png");
  background-position: center center;
  z-index: 4;
}

.hero-building-wrap {
  position: absolute;
  left: var(--building-left);
  bottom: var(--building-bottom);
  width: var(--building-width);
  transform: translateX(-50%) translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

.hero-building {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(140%);
  animation: riseBuilding 1.8s cubic-bezier(0.16, 0.84, 0.3, 1) 0.25s forwards;
}

@keyframes riseBuilding {
  0% {
    transform: translateY(140%);
  }
  100% {
    transform: translateY(0%);
  }
}

.hero-content {
  position: relative;
  z-index: 6;
  margin: 0 auto;
  padding: 28px var(--hero-content-inline-padding) 0;
  max-width: calc(1440px + (var(--hero-content-inline-padding) * 2));
}

.hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.skyline-logo {
  width: clamp(110px, 10vw, 160px);
  height: auto;
}

.top-contact {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  font-family: var(--font-medium);
  font-size: clamp(14px, 1.05vw, 18px);
  letter-spacing: 0.08em;
  padding-top: 10px;
}

.hero-main {
  margin-top: clamp(58px, 9.5vh, 104px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.hero-kicker {
  margin: 0;
  font-family: var(--font-semibold);
  color: var(--text-dark);
  font-size: clamp(24px, 2.5vw, 50px);
  line-height: 0.96;
}

.hero-title {
  margin: 4px 0 0;
  font-family: var(--font-semibold);
  color: var(--text-dark);
  font-size:clamp(34px, 4vw, 72px);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  margin: 10px 0 0;
  font-family: var(--font-light);
  color: #2f2326;
  font-size: clamp(22px, 1.5vw, 32px);
  line-height: 1.08;
}

.hero-badge {
  position: absolute;
  top: var(--badge-top);
  left: calc(var(--building-left) + (var(--building-width) / 2) - 10px);
  margin: 0;
  min-width: clamp(170px, 12.7vw, 214px);
  padding: 10px 28px 10px 28px;
  background: var(--blue-accent);
  color: #fff;
  font-family: var(--font-bold);
  font-size: clamp(15px, 1.08vw, 21px);
  line-height: 1.06;
  display: grid;
  gap: 1px;
  clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%);
  text-align: left;
  z-index: 2;
  opacity: 0;
  transform: translate3d(var(--parallax-x, 0px), calc(18px + var(--parallax-y, 0px)), 0);
  animation: revealHeroBadge 0.6s ease-out 2.05s forwards;
  will-change: transform, opacity;
}

.hero-badge span {
  display: block;
  transform-origin: left center;
  animation: heroBadgePulse 1.35s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: opacity, transform, text-shadow, filter;
}

.hero-badge span:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-badge span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes revealHeroBadge {
  0% {
    opacity: 0;
    transform: translate3d(var(--parallax-x, 0px), calc(18px + var(--parallax-y, 0px)), 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  }
}

@keyframes heroBadgePulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(1);
    filter: brightness(1);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  45% {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.32);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.9), 0 0 30px rgba(180, 236, 255, 0.75);
  }

  58% {
    opacity: 0.92;
    transform: scale(1.025);
    filter: brightness(1.15);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.62), 0 0 18px rgba(180, 236, 255, 0.5);
  }
}

.contact-stick {
  position: absolute;
  right: 0;
  top: 52%;
  transform: translateY(-50%);
  z-index: 12;
  border: 0;
  border-radius: 8px 0 0 8px;
  background: var(--green-accent);
  color: #fff;
  width: 42px;
  height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: background 0.5s ease;
}
.contact-stick:hover {
  background: #017939;
}   
.contact-stick .arrow {
  font-family: var(--font-bold);
  font-size: 20px;
  line-height: 1;
}

.contact-stick span:last-child {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-semibold);
  letter-spacing: 0.08em;
  font-size: 13px;
}

.hero-bottom {
  position: absolute;
  inset: auto 0 0;
  z-index: 8;
}

.feature-strip {
  width: min(800px, 85vw);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #021e34;
  font-family: var(--font-bold);
  font-size: clamp(11px, 0.9vw, 16px);
  letter-spacing: 0.03em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
background: linear-gradient(0deg,rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.5) 71%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
  clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: -1;
}

.feature-strip div {
  text-align: center;
  padding: 14px 10px 13px;
}

.feature-strip div:not(:first-child) {
  border-left: 1px solid rgba(15, 63, 99, 0.24);
}

.hero-footer {
  border-top: 1px solid #ffffffce;
  padding: 13px 56px 15px;  
  background: linear-gradient(180deg, rgba(3, 10, 16, 0.25) 0%, rgba(2, 9, 15, 0.72) 34%, rgba(2, 9, 15, 0.93) 100%);

}
.hero-footer-wrap{max-width: 1420px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;    }

.footer-brand {
  flex: 0 0 auto;
}

.marina-logo {
  width: clamp(156px, 13vw, 226px);
  height: auto;
}

.footer-points {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 20px);
}

.footer-points > div {
  width: min(166px, 30%);
}

.footer-points span {
  display: block;
  font-family: var(--font-xlight);
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1;
  margin-bottom: 5px;
}

.footer-points p {
  margin: 0;
  font-family: var(--font-medium);
  color: #fff;
  font-size: clamp(10px, 0.82vw, 14px);
  line-height: 1.14;
}

.footer-ctas {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  min-width: 160px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-family: var(--font-medium);
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: filter 0.2s ease;
}

.btn::after {
  content: "\2192";
  margin-left: 10px;
  font-size: 15px;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-building {
    animation: none;
    transform: none;
  }

  .hero-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-badge span {
    animation: none;
    opacity: 1;
    text-shadow: none;
  }
}


.btn-green {
  background: #00a84e; transition: background 0.5s ease;
}
.btn-green:hover {
  background: #017939;
}
.btn-blue {
  background: #00b4ef; transition: background 0.5s ease;
}
.btn-blue:hover {
  background: #0181ac;
}

.btn-dark {
  background: rgba(7, 15, 22, 0.92); transition: background 0.5s ease;
}
.btn-dark:hover {
  background: rgba(18, 42, 63, 0.92);
}

/* ============================================================
   ENQUIRY SECTION
   ============================================================ */

.enquiry {
  background: var(--deep-navy);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 58px);
  color: var(--text-light);
}

.enquiry-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.enquiry-copy {
  padding-right: clamp(0px, 2vw, 40px);
}

.enquiry-title {
  margin: 0 0 clamp(24px, 3vw, 40px);
  font-family: var(--font-bold);
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-light);
}

.enquiry-intro {
  margin: 0 0 clamp(24px, 2vw, 32px);
  font-family: var(--font-light);
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.15;
  color: var(--text-light);
}

.enquiry-intro strong {
  font-family: var(--font-semibold);
  font-weight: 600;
}

.enquiry-description {
  margin: 0;
  font-family: var(--font-light);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.8);
}

.enquiry-form-wrap {
  background: rgba(10, 20, 30, 0.4);
  padding: clamp(32px, 4vw, 52px);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  padding-top:0px
}

.form-title {
  margin: 0 0 clamp(25px, 3vw, 25px);
  font-family: var(--font-semibold);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.2;
  color: var(--text-light);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 22px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
}

.form-label {
  display: block;
  font-family: var(--font-medium);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-textarea,
.form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 0;
  color: var(--text-light);
  font-family: var(--font-light);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--blue-accent);
}

.form-textarea {
  resize: none;
  font-family: var(--font-light);
}

.form-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.country-code-wrap {
  position: relative;
  width: 84px;
  min-width: 84px;
  max-width: 84px;
  flex: 0 0 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.country-code-wrap:focus-within {
  border-bottom-color: var(--blue-accent);
}

.country-code-display {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  color: var(--text-light);
  font-family: var(--font-light);
  font-size: 14px;
  white-space: nowrap;
}

.country-flag-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  min-width: 18px;
  font-family: var(--font-medium);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.country-dial-text {
  font-family: var(--font-medium);
  font-size: 14px;
  line-height: 1;
}

.country-dropdown-icon {
  margin-left: auto;
  font-size: 10px;
  line-height: 1;
  opacity: 0.9;
}

.country-code {
  background: transparent;
  border: none;
  padding: 0;
  color: transparent;
  outline: none;
  cursor: pointer;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  opacity: 0;
  position: relative;
  z-index: 2;
  height: 36px;
}

.country-code option {
  background: #081421;
  color: var(--text-light);
}

.form-input-group .form-input {
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.form-select {
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: 20px 20px;
  padding-right: 24px;
}

.form-select option {
  background: #081421;
  color: var(--text-light);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: clamp(8px, 1vw, 14px) 0;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--blue-accent);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.checkbox-label {
  font-family: var(--font-light);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.form-submit {
  margin-top: 0;
  padding: clamp(12px, 1.5vw, 16px) clamp(28px, 4vw, 48px);
  background: var(--text-light);
  color: var(--text-dark);
  border: none;
  font-family: var(--font-semibold);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border-radius: 2px;
  align-self: flex-start;
}

.form-submit:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin: 6px 0 0;
  min-height: 20px;
  font-family: var(--font-light);
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.form-status.is-success {
  color: #74ffb5;
}

.form-status.is-error {
  color: #ffb1b1;
}

/* ============================================================
   THIRD SECTION: PROJECT DETAILS
   ============================================================ */

.project-details {
  background: #fff;
  color: #0b3a59;
  padding: clamp(56px, 6vw, 98px) clamp(18px, 4.8vw, 66px);
}

.project-details-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(440px, 1.05fr) minmax(500px, 1fr);
  gap: clamp(34px, 4.5vw, 78px);
  align-items: start;
}

.project-details-title {
  margin: 0 0 18px;
  max-width: 460px;
  font-family: var(--font-regular);
  font-size: clamp(42px, 4.3vw, 66px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: #05385a;
}

.project-details-copy p {
  margin: 0;
  max-width: 620px;
  font-family: var(--font-regular);
  font-size: clamp(16px, 1vw, 38px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(29, 42, 52, 0.76);
}

.project-details-copy p + p {
  margin-top: 2px;
}

.project-facts-grid {
  padding-top: clamp(86px, 13.8vw, 198px);
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  column-gap: clamp(18px, 3vw, 46px);
  row-gap: clamp(30px, 4.2vw, 54px);
}

.project-fact-item {
  min-height: 92px;
}

.project-fact-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 6px;
}

.project-fact-label {
  margin: 0;
  font-family: var(--font-medium);
  font-size: clamp(11px, 0.88vw, 13px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #0a3c5e;
}

.project-fact-value {
  margin: 3px 0 0;
  font-family: var(--font-semibold);
  font-size: clamp(17px, 1vw, 24px);
  line-height: 1.08;
  color: #07395a;
  word-wrap: break-word;
}

@media (max-width: 1220px) {
  .project-details-container {
    grid-template-columns: 1fr;
  }

  .project-details-copy p {
    max-width: none;
  }

  .project-facts-grid {
    padding-top: 8px;
  }
}

@media (max-width: 900px) {
  .project-details-title {
    max-width: none;
    font-size: clamp(34px, 5.6vw, 50px);
  }

  .project-details-copy p {
    font-size: clamp(17px, 2.75vw, 23px);
    line-height: 1.3;
  }

  .project-facts-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    column-gap: 22px;
    row-gap: 24px;
  }
}

@media (max-width: 640px) {
  .project-details {
    padding: 42px;
  }

  .project-facts-grid {
   grid-template-columns: repeat(2, minmax(130px, 1fr));
        column-gap: 12px;
        row-gap: 25px;
  }

  .project-fact-item {
    min-height: 78px;
  }
}

@media (max-width: 1180px) {
  .enquiry-container {
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 60px);
  }

  .enquiry-copy {
    padding-right: 0;
  }

  .enquiry-form-wrap {
    padding: clamp(28px, 3.5vw, 44px);
  }
}

@media (max-width: 900px) {
  .enquiry {
    padding: clamp(50px, 6vw, 80px) clamp(16px, 4vw, 28px);
  }

  .enquiry-title {
    font-size: clamp(36px, 3.5vw, 52px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: clamp(20px, 2.5vw, 24px);
  }

  .form-submit {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .enquiry {
    padding: clamp(40px, 5vw, 60px) clamp(14px, 3vw, 20px);
  }

  .enquiry-title {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: clamp(16px, 2.5vw, 28px);
  }

  .enquiry-intro {
    font-size: clamp(18px, 4vw, 26px);
    margin-bottom: clamp(16px, 2vw, 24px);
  }

  .enquiry-description {
    font-size: clamp(13px, 3.5vw, 16px);
  }

  .enquiry-form-wrap {
    padding: clamp(24px, 3vw, 32px);
  }

  .form-title {
    font-size: clamp(18px, 4vw, 26px);
    margin-bottom: clamp(20px, 2vw, 28px);
  }

  .enquiry-form {
    gap: clamp(16px, 2vw, 20px);
  }

  .form-submit {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1700px) {
  .hero {
    --building-width: min(13vw, 240px);
    --building-bottom: 44%;
    --badge-top: 37.2%;
  }

  .hero-building-wrap {
    width: var(--building-width);
    bottom: var(--building-bottom);
  }
  

}

@media (max-width: 1440px) {
  .hero {
    --building-width: min(10vw, 200px);
    --building-bottom: 44%;
    --badge-top: 36.5%;
  }

  .hero-building-wrap {
    width: var(--building-width);
    bottom: var(--building-bottom);
  }
.hero-content {max-width: none;}
}
@media (max-width: 1180px) {
  .hero {
    --hero-content-inline-padding: 24px;
    --building-width: min(10vw, 140px);
    --building-bottom: 46%;
    --badge-top: 37.5%;
  }

  .hero-content {
    padding: 24px 24px 0;
  }

  .hero-building-wrap {
    width: var(--building-width);
    bottom: var(--building-bottom);
  }

  .hero-main {
    margin-top: 66px;
  }

  .hero-badge {
    left: calc(var(--building-left) + (var(--building-width) / 2) - 10px);
  }

  .hero-footer {
 
    padding-inline: 24px;
  }
.hero-footer-wrap {
       flex-wrap: wrap;
    gap: 14px; 
  
  }
  .footer-brand {
    width: 100%;
  }

  .footer-points {
    width: 100%;
    justify-content: space-between;
  }

  .footer-points > div {
    width: 32%;
  }

  .footer-ctas {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    --building-width: min(16vw, 210px);
    --building-bottom: 50%;
    --badge-top: 34.5%;
    min-height: 880px;
  }

  .top-contact {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .hero-main {
    margin-top: 52px;
  }

  .hero-title {
    letter-spacing: 0.02em;
  }

  .hero-badge {
    font-size: 16px;
  }

  .hero-building-wrap {
    width: var(--building-width);
    bottom: var(--building-bottom);
  }

  .hero-water {
    bottom: 120px;
  }

  .feature-strip {
    width: min(96vw, 900px);
    font-size: 11px;
  }

  .footer-points {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-points > div {
    width: calc(50% - 8px);
  }

  .footer-ctas {
    flex-wrap: wrap;
  }

  .btn {
    min-width: 154px;
    font-size: 16px;
    height: 38px;
  }

  .contact-stick {
    top: auto;
    right: 14px;
    bottom: 230px;
    transform: none;
    width: 44px;
    height: 140px;
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  .hero {
    --hero-content-inline-padding: 14px;
    --building-width: min(25vw, 220px);
    --building-bottom: 55%;
    --badge-top:25.2%;
    min-height: 820px;
  }

  .hero-content {
    padding-top: 18px;
    padding-inline: 14px;
  }

  .hero-main {
    flex-direction: column;
    gap: 18px;
    margin-top: 50px;
  }

  .hero-kicker {
    font-size: 28px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 28px;
    max-width: 300px;
  }

  .hero-badge {
    /* position: static; */
    min-width: 170px;
    max-width: 210px;
    justify-self: flex-start;
    z-index: auto;
    animation-delay: 1s;
    z-index: 2;
     top: var(--badge-top);
  }

  .hero-building-wrap {
    width: var(--building-width);
    bottom: var(--building-bottom);
  }

  .hero-water {
    bottom: 230px;
  }

  .feature-strip {
    display: none;
  }

  .hero-footer {
    margin-top: 0;
    padding: 14px 12px 14px;
    gap: 14px;
  }
  .hero-footer-wrap {
    gap: 14px;
  }

  .footer-points {
    gap: 10px;
  }

  .footer-points > div {
    width: 100%;
  }

  .footer-ctas {
    gap: 8px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ============================================================
   FOURTH SECTION: LIFESTYLE SLIDER
   ============================================================ */

.lifestyle-slider-section {
  background: #081421;
}

.lifestyle-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 56vw, 760px);
}

.lifestyle-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lifestyle-slide {
  position: relative;
  min-width: 100%;
  min-height: clamp(420px, 56vw, 760px);
}

.lifestyle-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.lifestyle-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.16) 54%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.lifestyle-caption {
  position: absolute;
  left: clamp(22px, 4vw, 54px);
  bottom: clamp(56px, 7.5vw, 108px);
  max-width: min(620px, 88vw);
  z-index: 2;
  color: #fff;
}

.lifestyle-caption h2 {
  margin: 0;
  font-family: var(--font-semibold);
  font-size: clamp(44px, 4.2vw, 98px);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.lifestyle-caption p {
  margin: 14px 0 0;
  font-family: var(--font-light);
  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.lifestyle-dots {
  position: absolute;
  left: clamp(22px, 4vw, 54px);
  bottom: clamp(20px, 2.8vw, 36px);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.lifestyle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  opacity: 0.9;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lifestyle-dot.is-active {
  background: #fff;
  transform: scale(1.04);
}

.lifestyle-arrows {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(30px, 3.7vw, 56px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.lifestyle-arrow {
  width: clamp(56px, 4.4vw, 70px);
  height: clamp(56px, 4.4vw, 70px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: rgba(10, 20, 32, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.lifestyle-arrow img {
  width: clamp(24px, 1.9vw, 30px);
  height: auto;
}

.lifestyle-arrow-prev img {
  transform: scaleX(-1);
}

.lifestyle-arrow:hover {
  background: rgba(10, 20, 32, 0.36);
  border-color: #fff;
}

@media (max-width: 900px) {
  .lifestyle-slider,
  .lifestyle-slide {
    min-height: 560px;
  }

  .lifestyle-caption {
    max-width: min(560px, 92vw);
    bottom: 90px;
  }

  .lifestyle-caption h2 {
    font-size: clamp(34px, 5.7vw, 58px);
  }

  .lifestyle-caption p {
    font-size: clamp(14px, 2.2vw, 18px);
  }
}

@media (max-width: 640px) {
  .lifestyle-slider,
  .lifestyle-slide {
    min-height: 500px;
  }

  .lifestyle-caption {
    left: 14px;
    right: 14px;
    bottom: 86px;
    max-width: none;
  }

  .lifestyle-caption h2 {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  .lifestyle-caption p {
    margin-top: 10px;
    font-size: clamp(14px, 3.7vw, 16px);
  }

  .lifestyle-dots {
    left: 14px;
    bottom: 22px;
    gap: 8px;
  }

  .lifestyle-arrows {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }

  .lifestyle-arrow {
    width: 48px;
    height: 48px;
  }

  .lifestyle-arrow img {
    width: 20px;
  }
}

/* ============================================================
   FIFTH SECTION: AMENITIES
   ============================================================ */

.amenities {
  background: #003a5a;
  color: #e9f4fb;
  padding: clamp(56px, 7vw, 106px) clamp(18px, 4.8vw, 66px);
}

.amenities-container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, 1.03fr) minmax(470px, 1fr);
  gap: clamp(32px, 4.5vw, 84px);
  align-items: start;
}

.amenities-title {
  margin: 0;
  font-family: var(--font-semibold);
  font-size: clamp(56px, 4.8vw, 92px);
  line-height: 0.96;
  color: #f7fbff;
}

.amenities-subtitle {
  margin: clamp(16px, 2.2vw, 30px) 0 0;
  max-width: 620px;
  font-family: var(--font-light);
  font-size: clamp(30px, 2vw, 40px);
  line-height: 1.06;
  color: #f0f8ff;
}

.amenities-subtitle strong {
  font-family: var(--font-semibold);
}

.amenities-description {
  margin: clamp(32px, 3.5vw, 46px) 0 0;
  max-width: 530px;
  font-family: var(--font-light);
  font-size: clamp(18px, 1.34vw, 26px);
  line-height: 1.27;
  color: rgba(226, 240, 250, 0.95);
}

.amenities-grid {
  padding-top: clamp(54px, 5.5vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, minmax(132px, 1fr));
  column-gap: clamp(10px, 2.4vw, 32px);
  row-gap: clamp(20px, 3vw, 32px);
}

.amenity-item {
  min-height: 120px;
}

.amenity-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.amenity-item p {
  margin: 0;
  font-family: var(--font-light);
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.01;
  color: #f5faff;
  text-transform: uppercase;
}

@media (max-width: 1240px) {
  .amenities-container {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    padding-top: 8px;
  }
}

@media (max-width: 900px) {
  .amenities-title {
    font-size: clamp(42px, 8vw, 58px);
  }

  .amenities-subtitle {
    font-size: clamp(32px, 6vw, 46px);
  }

  .amenities-description {
    font-size: clamp(16px, 2.7vw, 20px);
    line-height: 1.34;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    column-gap: 22px;
    row-gap: 26px;
  }

  .amenity-item p {
    font-size: clamp(14px, 1.8vw, 18px);
  }
}

@media (max-width: 640px) {
  .amenities {
    padding: 42px;
  }

  .amenities-subtitle {
    max-width: none;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    row-gap: 25px;
    column-gap: 12px;
  }

  .amenity-item {
    min-height: 94px;
  }

  .amenity-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }
}

/* ============================================================
   SIXTH SECTION: LOCATION AND REACH
   ============================================================ */

.location-reach {
  background: #ededed;
  color: #08385a;
  padding: clamp(46px, 5.4vw, 72px) clamp(16px, 4.8vw, 68px) clamp(48px, 5.8vw, 82px);
}

.location-reach-container {
  max-width: 1420px;
  margin: 0 auto;
}

.location-reach-header {
  text-align: center;
}

.location-reach-header h2 {
  margin: 0;
  font-family: var(--font-semibold);
  font-size: clamp(46px, 3.8vw, 70px);
  line-height: 1.02;
  color: #06395c;
}

.location-reach-header p {
  margin: 8px 0 0;
  font-family: var(--font-medium);
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1.1;
  color: #0b3e5f;
}

.location-metrics {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(7, minmax(100px, 1fr));
  gap: clamp(10px, 1.8vw, 22px);
}

.location-metric-item {
  text-align: center;
}

.location-metric-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
}

.location-metric-distance {
  margin: 0;
  font-family: var(--font-semibold);
  font-size: clamp(18px, 1vw, 26px);
  line-height: 1;
  color: #262626;
}

.location-metric-label {
  margin: 4px 0 0;
  font-family: var(--font-light);
  font-size: clamp(15px, 1.05vw, 22px);
  line-height: 1.06;
  color: rgba(24, 36, 44, 0.76);
}

.location-map-wrap {
  margin: clamp(28px, 3.2vw, 38px) auto 0;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.location-map-wrap iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 34vw, 448px);
  border: 0;
}

@media (max-width: 1200px) {
  .location-metrics {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    row-gap: 24px;
  }
}

@media (max-width: 900px) {
  .location-reach-header h2 {
    font-size: clamp(38px, 6.4vw, 56px);
  }

  .location-reach-header p {
    font-size: clamp(20px, 3.7vw, 30px);
  }

  .location-metrics {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
  }

  .location-metric-distance {
    font-size: clamp(20px, 4vw, 30px);
  }

  .location-metric-label {
    font-size: clamp(14px, 2.2vw, 18px);
  }

  .location-map-wrap iframe {
    height: clamp(290px, 52vw, 380px);
  }
}

@media (max-width: 640px) {
  .location-reach {
    padding: 38px 14px 44px;
  }

  .location-metrics {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 16px 12px;
  }

  .location-map-wrap {
    margin-top: 22px;
  }

  .location-map-wrap iframe {
    height: 300px;
  }
}

/* ============================================================
   SEVENTH SECTION: FOOTER
   ============================================================ */

.site-footer {
  background: #002A44;
  color: rgba(244, 248, 252, 0.92);
  padding: clamp(26px, 5vw, 80px) clamp(18px, 4.8vw, 88px) clamp(20px, 3vw, 25px);
}

.site-footer-container {
  max-width: 1720px;
  margin: 0 auto;
}

.site-footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(100px, 10vw, 180px);
}

.site-footer-logo {
  width: clamp(170px, 10vw, 180px);
  height: auto;
}

.site-footer-bottom {
  margin-top: clamp(48px, 7vw, 116px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-footer-copy {
  margin: 0;
  font-family: var(--font-light);
  font-size: clamp(16px, 1.18vw, 24px);
  line-height: 1.2;
  color: rgba(243, 248, 252, 0.84);
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: var(--font-light);
  font-size: clamp(16px, 1.18vw, 24px);
  line-height: 1.2;
  color: rgba(243, 248, 252, 0.84);
}

.site-footer-nav a {
  transition: opacity 0.2s ease;
}

.site-footer-nav a:hover {
  opacity: 0.78;
}

@media (max-width: 900px) {
  .site-footer {
    padding-inline: 16px;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 54px;
  }

  .site-footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 44px 14px 26px;
  }

  .site-footer-logo-wrap {
    min-height: 120px;
  }

  .site-footer-logo {
    width: 210px;
  }

  .site-footer-bottom {
    margin-top: 40px;
    gap: 16px;
  }

  .site-footer-copy,
  .site-footer-nav {
    font-size: 14px;
  }

  .site-footer-nav {
    gap: 10px;
  }
}
