:root {
  /* Two brand colors only: deep navy (primary) + warm gold (accent). Everything else is neutral. */
  --purple: #1f2a4a;
  --purple-deep: #141b33;
  --lime: #c7972e;
  --lime-deep: #a87c21;
  --ink: #211f26;
  --paper: #faf9f5;
  --gray: #6b6874;
  --line: #e7e4dc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 50px -20px rgba(20, 27, 51, 0.35);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.wrap {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3,
h4 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.03;
}
.script {
  font-family: "Permanent Marker", cursive;
  text-transform: none;
  font-weight: 400;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}
.hl-mark {
  background: linear-gradient(transparent 62%, var(--lime) 62%);
  padding: 0 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14.5px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(199, 151, 46, 0.6);
}
.btn-lime:hover {
  background: var(--lime-deep);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-block {
  width: 100%;
}
section {
  position: relative;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo b {
  font-family: "Anton", sans-serif;
  font-size: 19px;
}
.logo span {
  font-size: 9.5px;
  letter-spacing: 1.6px;
  color: var(--gray);
  margin-top: 3px;
}
nav.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
}
nav.desktop-nav a:hover {
  color: var(--purple);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.call-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13.5px;
}
.call-chip svg {
  width: 15px;
  height: 15px;
  stroke: var(--purple);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* HERO CAROUSEL */
.hero {
  position: relative;
  color: #fff;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(33, 25, 60, 0.12) 0%,
    rgba(33, 25, 60, 0.22) 55%,
    rgba(20, 15, 40, 0.52) 100%
  );
}
.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active {
  background: var(--lime);
  width: 22px;
  border-radius: 5px;
}
.hero-in {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0 44px;
}
.hero-in .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: end;
}
.hero-tag {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(199, 151, 46, 0.25);
}
.hero h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 4px;
}
.hero h1 .script {
  color: var(--lime);
  font-size: 1.1em;
  display: block;
}
.hero-sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 460px;
  margin: 12px 0 20px;
  font-weight: 500;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}
.hero-chips span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* lead form card */
.lead-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.lead-card h3 {
  font-size: 20px;
  margin-bottom: 3px;
}
.lead-card p.sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}
.field {
  margin-bottom: 11px;
}
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 5px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 13px;
  border-radius: 9px;
  border: 1.5px solid var(--line);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background: #fbfbf9;
}
.field input:focus,
.field select:focus {
  outline: 2px solid var(--purple);
  border-color: var(--purple);
  background: #fff;
}
.consent {
  display: flex;
  gap: 8px;
  font-size: 10.5px;
  color: var(--gray);
  margin: 10px 0 14px;
  line-height: 1.5;
}
.consent input {
  margin-top: 3px;
}
.form-msg {
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 10px;
  display: none;
  padding: 9px 11px;
  border-radius: 8px;
}
.form-msg.show {
  display: block;
}
.form-msg.ok {
  background: #e9f8e9;
  color: #1c7a1c;
}
.form-msg.err {
  background: #fdeceb;
  color: #c53030;
}

/* STRIP */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
}
.strip div {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.strip div:last-child {
  border-right: none;
}
.strip b {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  color: var(--lime);
  display: block;
}
.strip span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.4px;
}

.section {
  padding: 60px 0;
}
.section-tight {
  padding: 44px 0;
}
.center {
  text-align: center;
}
.max-w {
  max-width: 1000px;
  margin: 0 auto;
}

/* CONFIG CARDS */
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.config-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.2s;
}
.config-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.config-card img {
  height: 400px;
  object-fit: cover;
  width: 100%;
  filter: blur(6px);
}
.config-card .body {
  padding: 20px;
}
.config-card h4 {
  font-size: 26px;
  color: var(--purple-deep);
}
.config-card p {
  font-size: 12.5px;
  color: var(--gray);
  margin: 6px 0 14px;
}
.config-card .btn {
  width: 100%;
  padding: 11px;
  font-size: 13px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.plan-card img {
  height: 190px;
  object-fit: cover;
  width: 100%;
  background: #f1efe9;
}
.plan-card .body {
  padding: 20px;
}
.plan-card h4 {
  font-size: 17px;
  color: var(--purple-deep);
}
.plan-card p {
  font-size: 12.5px;
  color: var(--gray);
  margin: 6px 0 14px;
}
.plan-card .btn {
  width: 100%;
  padding: 11px;
  font-size: 13px;
}
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--purple-deep);
  color: var(--purple-deep);
}
.btn-outline-dark:hover {
  background: var(--purple-deep);
  color: #fff;
}

/* MASTER PLAN — single blurred hero image */
.plan-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 28px;
  height: 420px;
}
.plan-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px);
  transform: scale(1.08);
}
.plan-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px;
  background: linear-gradient(
    180deg,
    rgba(20, 27, 51, 0.55) 0%,
    rgba(20, 27, 51, 0.72) 100%
  );
}
.plan-hero-overlay .eyebrow::before {
  display: none;
}
.plan-hero-overlay p {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
}

/* GALLERY CAROUSEL */
.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar {
  height: 6px;
}
.gallery-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}
.gallery-track figure {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 230px;
}
.gallery-track figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-track figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(33, 31, 38, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
}
.gallery-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.gallery-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
}
.gallery-nav button:hover {
  background: var(--lime);
  border-color: var(--lime);
}

/* AMENITIES GRID */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 12px;
}
.amenity-grid figure {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.amenity-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.amenity-grid figure:hover img {
  transform: scale(1.06);
}
.amenity-grid figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(33, 31, 38, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
}
.amenity-grid figure.tall {
  grid-row: span 2;
}

/* AMENITIES GRID (icon cards) */
@keyframes amenFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.amen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.amen-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  transition: 0.2s;
}
.amen-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--purple-deep);
}
.amen-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--paper);
  font-size: 19px;
}
.amen-item p {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

/* generic reusable tab component (used by both Amenities and Location/Distances) */
.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.tab-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.2s;
}
.tab-btn:hover {
  border-color: var(--purple-deep);
}
.tab-btn.active {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: #fff;
}
.tab-panels {
  margin-top: 16px;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: amenFade 0.35s ease;
}
.dist-tab-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 16px;
}
.dist-tab-list p {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.dist-tab-list p:last-child {
  border-bottom: none;
}
.dist-tab-list p b {
  color: var(--ink);
  font-weight: 800;
}
.amen-item p {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.rounded-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.band-purple {
  background: var(--purple);
  color: #fff;
}
.band-lime {
  background: var(--lime);
}
.lead-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.lead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
}
.band-purple .lead-list li::before {
  background: var(--lime);
}

/* location condensed */
.dist-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.dist-mini div {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
}
.dist-mini h5 {
  font-size: 12px;
  color: var(--purple-deep);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.dist-mini p {
  font-size: 12.5px;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}
.dist-mini p b {
  color: var(--ink);
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  opacity: 0.7;
}
.brand-strip span {
  font-family: "Anton", sans-serif;
  font-size: 13.5px;
  color: var(--gray);
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.legacy-stats div {
  border-left: 2px solid var(--lime);
  padding-left: 14px;
}
.legacy-stats b {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  display: block;
  color: var(--lime);
}
.legacy-stats span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.final-cta {
  background: linear-gradient(120deg, var(--purple-deep), var(--purple));
  color: #fff;
  border-radius: 22px;
  padding: 44px;
}
.final-cta h2 {
  font-size: 28px;
  color: #fff;
  max-width: 520px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 22px;
  max-width: 460px;
  font-size: 14.5px;
}

/* SCHEDULE SITE VISIT (replaces developer band + final CTA band) */
.visit-section {
  background: linear-gradient(120deg, var(--purple-deep), var(--purple));
  padding: 64px 0;
}
.visit-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.45);
}
.visit-card-img {
  position: relative;
  min-height: 380px;
}
.visit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.visit-card-form {
  padding: 40px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-card-form h3 {
  font-family: "Anton", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 20px;
}
.pill-group {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.pill {
  flex: 1;
  padding: 12px 6px;
  border-radius: 9px;
  border: 1.5px solid var(--line);
  background: #fbfbf9;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: 0.15s;
}
.pill:hover {
  border-color: var(--purple-deep);
}
.pill.active {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: #fff;
}

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 24px;
}
footer h5 {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 700;
}
footer li {
  margin-bottom: 8px;
}
footer a:hover {
  color: var(--lime);
}
.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.float-wa {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 150;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.4);
}
.float-wa svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33, 31, 38, 0.65);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.modal-top {
  background: var(--purple);
  color: #fff;
  padding: 20px 24px;
  position: relative;
}
.modal-top .script {
  font-size: 22px;
  color: var(--lime);
}
.modal-top h3 {
  font-size: 18px;
  color: #fff;
  margin-top: 4px;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
}
.modal-body {
  padding: 20px 24px 24px;
}

.mobile-bar {
  display: none;
}
.drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 300;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transition: right 0.25s ease;
  padding: 22px;
}
.drawer.open {
  right: 0;
}
.drawer a {
  display: block;
  padding: 13px 4px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  margin-bottom: 12px;
  cursor: pointer;
}
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 290;
  display: none;
}
.drawer-scrim.show {
  display: block;
}

/* Footer contact block — Mahalaxmi-Kohinoor */
.footer-contact {
  text-align: center;
  padding: 40px 0px;
}
.footer-brand {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.footer-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
.footer-contact-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
}
.footer-contact-line a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.footer-contact-line a:hover {
  color: var(--lime);
}
.footer-divider {
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 auto 22px;
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-logos img {
  width: 200px;
}

.footer-logo-badge {
  font-family: "Anton", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--lime);
  border: 1px solid rgba(199, 151, 46, 0.4);
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(199, 151, 46, 0.06);
}
.footer-logo-badge.small {
  font-size: 12px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}
.footer-logo-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
}
.footer-partner-label {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  nav.desktop-nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .call-chip {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-in .wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .config-grid {
    grid-template-columns: 1fr;
  }
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .dist-mini {
    grid-template-columns: 1fr;
  }
  .legacy-stats {
    grid-template-columns: 1fr 1fr;
  }
  footer .cols {
    grid-template-columns: 1fr 1fr;
  }
  .final-cta {
    padding: 30px 22px;
  }
  .final-cta h2 {
    font-size: 24px;
  }
  .plan-hero {
    height: 340px;
  }
  .plan-hero-overlay p {
    font-size: 14.5px;
  }
  .visit-section {
    padding: 40px 0;
  }
  .visit-card {
    grid-template-columns: 1fr;
  }
  .visit-card-img,
  .visit-card-img img {
    min-height: 220px;
  }
  .visit-card-form {
    padding: 28px 24px;
  }
  body {
    padding-bottom: 62px;
  }
  .mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 180;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
    border-top: 1px solid var(--line);
  }
  .mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 9px 4px;
    font-size: 10.5px;
    font-weight: 700;
    border-right: 1px solid var(--line);
  }
  .mobile-bar a:last-child {
    border-right: none;
    background: var(--lime);
  }
  .mobile-bar svg {
    width: 18px;
    height: 18px;
  }
  .float-wa {
    bottom: 74px;
    right: 14px;
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 18px;
  }
  h1,
  h2 {
    font-size: 26px !important;
  }
  .hero-in {
    padding: 44px 0 30px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-sub {
    font-size: 14.5px;
  }
  .section {
    padding: 42px 0;
  }
  .amenity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .legacy-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }
  .legacy-stats b {
    font-size: 22px;
  }
  .lead-card {
    padding: 18px;
  }
  .final-cta h2 {
    font-size: 20px;
  }
  .gallery-track figure {
    flex-basis: 240px;
    height: 180px;
  }
  .plan-hero {
    height: 280px;
  }
  .plan-hero-overlay {
    padding: 22px;
  }
  .visit-card-form h3 {
    font-size: 20px;
  }
  .pill {
    font-size: 12px;
    padding: 10px 4px;
  }
}

.logo img {
  width: 120px;
}
