:root {
  --navy: #061a36;
  --navy-2: #0a3164;
  --blue: #1267b2;
  --blue-2: #2d83d7;
  --sky: #79c7f2;
  --ice: #eaf6fd;
  --mist: #f5f9fc;
  --white: #ffffff;
  --orange: #f28a24;
  --orange-dark: #db6d0b;
  --ink: #10243c;
  --muted: #5d6d7e;
  --line: rgba(16, 56, 98, 0.14);
  --shadow: 0 24px 70px rgba(3, 34, 73, 0.16);
  --radius: 24px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Gotham", "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.mct-home-page {
  max-width: none;
  padding: 0;
}

body.admin-bar.mct-home-page .site-header {
  top: 32px;
}

body.menu-open {
  overflow: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.metric-icon,
.service-mark svg,
.model-facts svg,
.amenity-list svg,
.commercial-tags svg,
.location-icon svg,
.contact-direct svg,
.fact-icon svg,
.amenity-card > div > span svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.eyebrow-light {
  color: var(--sky);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 720;
}

h3 {
  font-size: 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue-2);
  box-shadow: 0 14px 30px rgba(26, 113, 193, 0.28);
}

.button-primary:hover {
  background: var(--blue);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 16, 43, 0.2);
}

.button-light:hover {
  background: var(--ice);
}

.button-accent {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(219, 109, 11, 0.3);
}

.button-accent:hover {
  background: var(--orange-dark);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: padding 0.25s ease;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(100%, 1320px);
  min-height: 78px;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
  padding: 8px 10px 8px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(5, 27, 59, 0.13);
  backdrop-filter: blur(18px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
}

.site-header.scrolled .nav-shell {
  min-height: 68px;
  box-shadow: 0 14px 42px rgba(5, 27, 59, 0.19);
}

.brand {
  display: flex;
  width: 164px;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 164px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.main-nav a {
  position: relative;
  color: #28445f;
  font-size: 0.86rem;
  font-weight: 750;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue-2);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 22px;
  color: var(--white);
  background: var(--navy-2);
  border-radius: 13px;
  font-size: 0.84rem;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

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

.hero-media {
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 20, 47, 0.94) 0%, rgba(3, 28, 61, 0.78) 38%, rgba(5, 39, 80, 0.18) 70%, rgba(5, 39, 80, 0.42) 100%),
    linear-gradient(0deg, rgba(3, 17, 38, 0.9) 0%, transparent 46%);
}

.hero-route {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: 85px;
  left: -8%;
  height: 72px;
  background: linear-gradient(90deg, rgba(45, 131, 215, 0), rgba(45, 131, 215, 0.92) 22%, rgba(121, 199, 242, 0.93) 74%, rgba(121, 199, 242, 0));
  clip-path: polygon(0 74%, 26% 38%, 56% 26%, 78% 41%, 100% 76%, 100% 100%, 0 100%);
  opacity: 0.82;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 920px;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: center;
  gap: 80px;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-copy {
  max-width: 790px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.65rem, 7vw, 7rem);
  font-weight: 720;
  letter-spacing: -0.06em;
}

.hero h1 em {
  color: var(--sky);
  font-style: normal;
  font-weight: 520;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.developer-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.developer-line strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.offer-card {
  align-self: end;
  margin-bottom: 42px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.offer-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #24a765;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 167, 101, 0.13);
}

.offer-label {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-price {
  margin: 2px 0 0;
  color: var(--navy-2);
  font-size: 5.15rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.08em;
}

.offer-price span {
  margin-right: 3px;
  font-size: 2rem;
  vertical-align: 1.25rem;
}

.offer-price sup {
  position: relative;
  top: -1.45rem;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.offer-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  color: var(--blue);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-footnote {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 20px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.hero-footnote p {
  max-width: 660px;
  margin: 0;
  line-height: 1.45;
}

.hero-footnote a {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 750;
}

/* Facts */
.fact-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-grid > div {
  display: grid;
  min-height: 118px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.fact-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.fact-grid .fact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: var(--ice);
  border-radius: 12px;
}

.fact-grid .fact-icon svg {
  width: 22px;
  height: 22px;
}

.fact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.fact-grid strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

/* Project */
.project-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 80%, rgba(121, 199, 242, 0.17), transparent 26%),
    var(--mist);
}

.project-section::before {
  position: absolute;
  top: 0;
  right: -10%;
  width: 46%;
  height: 100%;
  background: linear-gradient(180deg, rgba(121, 199, 242, 0.13), transparent);
  content: "";
  transform: skewX(-8deg);
  transform-origin: top;
}

.project-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.project-copy h2 {
  max-width: 630px;
  font-size: clamp(2.7rem, 5.1vw, 5rem);
}

.project-copy > p {
  max-width: 610px;
  color: var(--muted);
}

.project-copy .lead {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.68;
}

.project-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.project-points > div {
  display: grid;
  min-height: 132px;
  grid-template-columns: 40px 1fr;
  align-content: center;
  align-items: center;
  column-gap: 12px;
  padding: 21px 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.metric-icon {
  width: 34px;
  height: 34px;
  grid-row: 1 / 3;
  padding: 7px;
  color: var(--blue);
  background: var(--ice);
  border-radius: 10px;
}

.project-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
}

.project-points span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.project-visual {
  position: relative;
  margin: 0;
}

.project-visual::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 72%;
  height: 72%;
  background: var(--blue-2);
  border-radius: 0 28px 0 0;
  content: "";
}

.project-visual img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.project-visual figcaption {
  position: absolute;
  right: -34px;
  bottom: 34px;
  left: 34px;
  padding: 21px 24px;
  color: var(--white);
  background: rgba(5, 31, 67, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  backdrop-filter: blur(16px);
}

.project-visual figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-visual figcaption strong {
  font-size: 1.08rem;
}

.services-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 86px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(7, 39, 74, 0.07);
}

.services-strip > div {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.services-strip > div:last-child {
  border-right: 0;
}

.service-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--blue);
  background: var(--ice);
  border-radius: 12px;
}

.service-mark svg {
  width: 25px;
  height: 25px;
}

.services-strip p {
  margin: 0;
  line-height: 1.35;
}

.services-strip strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.35;
}

/* Models */
.models-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(66, 155, 231, 0.35), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, #073d7c 100%);
}

.models-section::after {
  position: absolute;
  right: -100px;
  bottom: -290px;
  width: 620px;
  height: 620px;
  border: 100px solid rgba(121, 199, 242, 0.08);
  border-radius: 50%;
  content: "";
}

.models-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.models-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.models-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
}

.model-explorer {
  position: relative;
  z-index: 1;
}

.model-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 590px;
  margin-bottom: 18px;
}

.model-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 9px;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

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

.model-tab span {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-tab strong {
  font-size: 1.55rem;
  line-height: 1;
}

.model-tab small {
  justify-self: end;
  font-size: 0.7rem;
}

.model-tab.active {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.model-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) 1.1fr;
  min-height: 600px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 10, 31, 0.28);
}

.plan-frame {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  padding: 70px 50px 44px;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 103, 178, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 103, 178, 0.06) 1px, transparent 1px),
    #eef7fc;
  background-size: 32px 32px;
}

.plan-frame::before {
  position: absolute;
  top: -110px;
  left: -120px;
  width: 310px;
  height: 310px;
  background: rgba(45, 131, 215, 0.13);
  border-radius: 50%;
  content: "";
}

.plan-frame img {
  width: auto;
  max-width: 84%;
  height: auto;
  max-height: 455px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(7, 40, 75, 0.15));
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.plan-frame img.changing {
  opacity: 0;
  transform: scale(0.97);
}

.plan-frame > p {
  position: absolute;
  bottom: 20px;
  left: 25px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-badge {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 24px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.model-details {
  align-self: center;
  padding: clamp(42px, 6vw, 82px);
}

.model-kicker {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-details h3 {
  max-width: 520px;
  margin-bottom: 19px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.model-details > p:not(.model-kicker) {
  max-width: 560px;
  color: var(--muted);
}

.model-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.model-facts > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  column-gap: 8px;
  padding: 16px 13px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.model-facts svg {
  width: 24px;
  height: 24px;
  grid-row: 1 / 3;
  color: var(--blue);
}

.model-facts strong,
.model-facts span {
  display: block;
}

.model-facts strong {
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.model-facts span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.model-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.model-details li {
  position: relative;
  padding-left: 18px;
  color: #3e5367;
  font-size: 0.85rem;
}

.model-details li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--sky);
  border-radius: 50%;
  content: "";
}

.section-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.models-section .section-note {
  color: rgba(255, 255, 255, 0.45);
}

/* Amenities */
.amenities-section {
  overflow: hidden;
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 50px;
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading > p {
  flex: 0 0 250px;
  margin: 0 0 8px;
  color: var(--muted);
}

.slider-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.slider-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.slider-controls button:hover {
  color: var(--white);
  background: var(--blue);
}

.amenities-track {
  display: flex;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2)) 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--sky) var(--ice);
}

.amenity-card {
  position: relative;
  width: clamp(300px, 30vw, 430px);
  min-height: 510px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--navy);
  border-radius: 22px;
  scroll-snap-align: start;
  isolation: isolate;
}

.amenity-card.amenity-large {
  width: clamp(340px, 42vw, 590px);
}

.amenity-card::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 17, 41, 0.9) 0%, rgba(2, 17, 41, 0) 60%);
  content: "";
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.3, 1);
}

.amenity-card:hover img {
  transform: scale(1.035);
}

.amenity-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
  color: var(--white);
}

.amenity-card > div > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: rgba(121, 199, 242, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.amenity-card > div > span svg {
  width: 23px;
  height: 23px;
}

.amenity-card h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.amenity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.amenity-list span,
.commercial-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--blue);
  background: var(--ice);
  border: 1px solid rgba(18, 103, 178, 0.12);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
}

.amenity-list svg,
.commercial-tags svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

/* Location */
.location-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 90%, rgba(121, 199, 242, 0.28), transparent 29%),
    linear-gradient(120deg, #052758, #0b5aa6);
}

.location-section::before {
  position: absolute;
  top: -250px;
  right: -160px;
  width: 650px;
  height: 650px;
  border: 90px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
}

.location-copy > p:not(.eyebrow):not(.location-note) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.71);
  font-size: 1.03rem;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0;
}

.location-cards > div {
  display: grid;
  min-height: 138px;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.location-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy);
  background: var(--sky);
  border-radius: 16px;
}

.location-icon svg {
  width: 28px;
  height: 28px;
}

.location-cards p {
  margin: 0;
}

.location-cards p strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.25;
}

.location-cards p span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.4;
}

.location-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
}

.map-card {
  position: relative;
  min-height: 650px;
  padding-bottom: 96px;
  overflow: hidden;
  background: var(--white);
  border: 8px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 16, 46, 0.28);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
  filter: saturate(0.85) contrast(1.04);
}

.map-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 96px;
  padding: 17px 24px;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.map-label span,
.map-label strong,
.map-label small {
  display: block;
}

.map-label span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label strong {
  font-size: 1rem;
}

.map-label small {
  color: var(--muted);
}

/* Commercial */
.commercial-section {
  background: var(--mist);
}

.commercial-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.commercial-media {
  position: relative;
  margin: 0;
}

.commercial-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.commercial-media figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(4, 35, 75, 0.82);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.commercial-copy > p:not(.eyebrow):not(.section-note) {
  color: var(--muted);
}

.commercial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.commercial-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.commercial-meta > div {
  padding: 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.commercial-meta strong,
.commercial-meta span {
  display: block;
}

.commercial-meta strong {
  color: var(--navy);
}

.commercial-meta span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Gallery */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: 18px;
}

.gallery-item.gallery-wide {
  grid-column: span 8;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 22, 49, 0.74), transparent 58%);
  content: "";
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item > span {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 20px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Developer */
.developer-section {
  padding-top: 72px;
  background: var(--white);
}

.developer-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding: 0;
}

.developer-logo-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--ice);
  border: 1px solid rgba(18, 103, 178, 0.13);
  border-radius: 24px;
}

.developer-logo-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.developer-logo-card img {
  width: 100%;
  height: auto;
  margin-top: 18px;
  object-fit: contain;
}

.developer-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
}

.developer-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 850;
}

/* FAQ */
.faq-section {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 86px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -6px 50px 28px 0;
  color: var(--muted);
}

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(121, 199, 242, 0.34), transparent 30%),
    linear-gradient(135deg, #041a39, #075096);
}

.contact-section::after {
  position: absolute;
  right: -20%;
  bottom: -150px;
  width: 85%;
  height: 250px;
  background: rgba(121, 199, 242, 0.13);
  content: "";
  transform: rotate(-7deg);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.contact-copy > p:not(.eyebrow):not(.contact-hours) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
}

.contact-direct {
  display: grid;
  grid-template-columns: minmax(145px, 0.78fr) minmax(220px, 1.22fr);
  gap: 10px;
  margin: 34px 0 20px;
}

.contact-direct a {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  padding: 17px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
}

.contact-direct svg {
  width: 22px;
  height: 22px;
  grid-row: 1 / 3;
  justify-self: center;
  color: var(--sky);
}

.contact-direct span,
.contact-direct strong {
  display: block;
}

.contact-direct span {
  margin-bottom: 5px;
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: 0.82rem;
}

.contact-hours {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.lead-form {
  padding: clamp(28px, 5vw, 52px);
  color: var(--ink);
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(0, 13, 39, 0.32);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading span,
.form-heading strong {
  display: block;
}

.form-heading span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 6px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #31495f;
  font-size: 0.76rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder {
  color: #8a98a6;
}

.field input:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(45, 131, 215, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 0.75rem;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.lead-form .button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.form-status {
  min-height: 1.1em;
  color: var(--blue);
  font-weight: 750;
}

/* Footer */
.site-footer {
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #031329;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}

.footer-grid > div:first-child > strong {
  color: var(--sky);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.footer-grid p {
  margin: 4px 0 0;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-credit {
  justify-self: end;
  text-align: right;
}

.footer-credit span,
.footer-credit strong {
  display: block;
}

.footer-credit span {
  font-size: 0.75rem;
}

.footer-credit strong {
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 0.13em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

/* Lightbox */
.lightbox {
  width: min(92vw, 1100px);
  max-height: 90vh;
  padding: 16px;
  overflow: visible;
  background: var(--white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 35px 100px rgba(0, 10, 30, 0.55);
}

.lightbox::backdrop {
  background: rgba(1, 13, 32, 0.84);
  backdrop-filter: blur(9px);
}

.lightbox img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: var(--mist);
  border-radius: 11px;
}

.lightbox p {
  margin: 11px 5px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  color: #073c24;
  background: #effff6;
  border: 1px solid rgba(28, 180, 96, 0.24);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(0, 32, 17, 0.2);
  font-size: 0.75rem;
}

.whatsapp-float span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: #24b66f;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.whatsapp-float strong {
  font-weight: 850;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.3, 1);
}

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

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 16px;
  }

  .nav-shell {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.77rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.4vw, 6rem);
  }

  .project-grid,
  .location-grid,
  .commercial-grid {
    gap: 52px;
  }

  .project-visual figcaption {
    right: 24px;
  }

  .services-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-strip > div:nth-child(2) {
    border-right: 0;
  }

  .services-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .model-panel {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .plan-frame {
    padding-inline: 30px;
  }

  .contact-direct {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    padding: 7px 9px 7px 16px;
  }

  .brand {
    width: 145px;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 20, 47, 0.94), rgba(3, 28, 61, 0.56)),
      linear-gradient(0deg, rgba(3, 17, 38, 0.96) 0%, transparent 62%);
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 150px;
    padding-bottom: 130px;
  }

  .hero-copy {
    padding-top: 50px;
  }

  .offer-card {
    width: min(100%, 390px);
    justify-self: end;
    margin-bottom: 20px;
  }

  .hero-footnote {
    position: relative;
    z-index: 3;
    bottom: auto;
    display: block;
    margin-top: -90px;
    padding-bottom: 24px;
  }

  .hero-footnote p {
    max-width: 720px;
  }

  .hero-footnote a {
    display: none;
  }

  .hero-route {
    bottom: 35px;
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-grid > div:nth-child(2) {
    border-right: 0;
  }

  .fact-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .project-grid,
  .location-grid,
  .commercial-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .project-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .project-visual img {
    aspect-ratio: 1.25 / 1;
  }

  .models-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .models-heading > p {
    max-width: 650px;
  }

  .model-panel {
    grid-template-columns: 1fr;
  }

  .plan-frame {
    min-height: 480px;
  }

  .map-card {
    min-height: 520px;
  }

  .map-card iframe {
    min-height: 420px;
  }

  .commercial-media {
    order: 2;
  }

  .developer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .developer-logo-card {
    max-width: 480px;
  }

  .faq-heading {
    position: static;
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-copy {
    max-width: 680px;
  }

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

  .footer-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 9px;
  }

  .nav-shell {
    min-height: 66px;
    border-radius: 14px;
  }

  .brand,
  .brand img {
    width: 130px;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hero-layout {
    padding-top: 115px;
    padding-bottom: 110px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16.5vw, 5rem);
    line-height: 0.98;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .offer-card {
    justify-self: stretch;
  }

  .developer-line {
    flex-wrap: wrap;
  }

  .hero-footnote {
    margin-top: -76px;
    padding-bottom: 18px;
  }

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

  .fact-grid > div,
  .fact-grid > div:nth-child(2),
  .fact-grid > div:first-child {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

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

  .project-points > div {
    min-height: 0;
  }

  .project-visual img {
    aspect-ratio: 0.9 / 1;
  }

  .project-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .services-strip {
    grid-template-columns: 1fr;
  }

  .services-strip > div,
  .services-strip > div:nth-child(2) {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-strip > div:last-child {
    border-bottom: 0;
  }

  .model-tabs {
    grid-template-columns: 1fr;
  }

  .model-tab {
    grid-template-columns: auto 1fr auto;
  }

  .model-tab span {
    grid-column: auto;
  }

  .model-tab small {
    justify-self: end;
  }

  .plan-frame {
    min-height: 410px;
    padding: 58px 28px 42px;
  }

  .plan-frame img {
    max-height: 330px;
  }

  .model-details {
    padding: 34px 24px 42px;
  }

  .model-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .model-facts strong {
    font-size: 1.25rem;
  }

  .model-details ul {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading > p {
    display: none;
  }

  .amenity-card,
  .amenity-card.amenity-large {
    width: min(82vw, 370px);
    min-height: 470px;
  }

  .location-cards {
    grid-template-columns: 1fr;
  }

  .location-cards > div {
    min-height: 0;
  }

  .map-card {
    min-height: 460px;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .commercial-meta,
  .contact-direct,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item,
  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall {
    display: block;
    width: 100%;
    height: 300px;
    margin-bottom: 12px;
  }

  .developer-grid {
    gap: 34px;
  }

  .developer-logo-card {
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .developer-logo-card img {
    max-width: 430px;
    margin-top: 14px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 0.9rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

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

  .lead-form {
    border-radius: 20px;
  }

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

  .footer-credit {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 6px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 8px;
  }

  .whatsapp-float strong {
    display: none;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar.mct-home-page .site-header {
    top: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
