﻿:root {
  --bg: #0b0d10;
  --bg-soft: #12161c;
  --panel: #171d24;
  --text: #ece8df;
  --muted: #b5b8bd;
  --gold: #c8a05c;
  --gold-soft: #e2c78f;
  --green: #5d7e67;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 7%, rgba(229, 197, 139, 0.11) 0%, rgba(11, 13, 16, 0) 40%),
    radial-gradient(circle at 88% 9%, rgba(93, 126, 103, 0.14) 0%, rgba(11, 13, 16, 0) 42%),
    linear-gradient(180deg, #090b0e 0%, #0c1015 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
  border: 0;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.center {
  text-align: center;
}

.kicker {
  display: block;
  width: 100%;
  margin: 0 auto 1rem;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  color: #f4dfb6;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2.25rem, 4.9vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.35rem;
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: normal;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.45rem;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(226, 199, 143, 0.15));
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.86);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(226, 199, 143, 0.42);
  background: #e6cf9f;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--gold), #f1ddb3);
  color: #14100b;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  line-height: 1.1;
}

.brand-logo-img {
  display: block;
  height: 64px;
  width: auto;
}

.footer-logo-img {
  display: block;
  display: block;
  height: 70px;
  width: auto;
}

.brand-text strong {
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  font-family: "Cormorant Garamond", serif;
}

.brand-text small {
  display: block;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #c8ccd2;
}

.menu-toggle {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  width: 44px;
  height: 42px;
  display: grid;
  gap: 5px;
  align-content: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ece8df;
}

.site-nav {
  position: absolute;
  top: 92px;
  right: 4vw;
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(11, 13, 16, 0.97);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  min-width: 210px;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  font-size: 0.92rem;
  color: #e6e8eb;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-soft);
}

.phone-pill {
  border: 1px solid rgba(200, 160, 92, 0.6);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--gold-soft) !important;
  font-weight: 700;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7.4rem 0 3.2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("sobha brdidgekeys images/popup.png");
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.88) 0%, rgba(8, 10, 13, 0.6) 52%, rgba(8, 10, 13, 0.85) 100%),
    radial-gradient(circle at 70% 15%, rgba(197, 163, 97, 0.2) 0%, rgba(11, 13, 16, 0.1) 40%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.5rem, 8.2vw, 5.3rem);
  margin-bottom: 0.4rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #f3efe7;
  margin-bottom: 1.25rem;
}

.hero-stats-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-stats-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #e8ebef;
}

.hero-stats-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1.8px solid var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(200, 160, 92, 0.2);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.45rem;
}

.hero-pill-row span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.44rem 0.82rem;
  font-size: 0.78rem;
  color: #f3f3f3;
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.btn-gold {
  color: #111;
  background: linear-gradient(160deg, var(--gold), #e9d1a1);
  box-shadow: 0 8px 24px rgba(200, 160, 92, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 14px 28px rgba(200, 160, 92, 0.35);
}

.btn-ghost,
.btn-outline {
  color: #f0f3f5;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-outline {
  width: 100%;
  margin-top: 0.8rem;
}

.btn-block {
  width: 100%;
}

.hero-enquiry {
  background: linear-gradient(180deg, rgba(24, 30, 39, 0.88), rgba(17, 22, 28, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  backdrop-filter: blur(8px);
}

.hero-enquiry h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.lead-form {
  display: grid;
  gap: 0.72rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.lead-form textarea {
  resize: vertical;
  min-height: 90px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(226, 199, 143, 0.95);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #c9ccd0;
  font-size: 0.76rem;
  line-height: 1.5;
}

.consent input {
  margin-top: 0.14rem;
  width: 14px;
  height: 14px;
  accent-color: var(--gold);
}

.consent a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.consent a:hover {
  color: #f5deaf;
}

.floating-contact {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  gap: 0.7rem;
  flex-direction: column;
  z-index: 3;
}

.floating-contact a {
  background: rgba(16, 20, 26, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e9ecef;
}

.overview-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(90deg, #0e1319 0%, #141b22 55%, #11161d 100%);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.3rem 0;
}

.stat-grid article {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-grid p {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-grid h3 {
  margin: 0.4rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #f3f5f7;
}

.about {
  background: linear-gradient(180deg, #0d1218 0%, #121922 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.about-shell {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-visual {
  display: grid;
  gap: 0.9rem;
}

.about-media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-visual:hover .about-media img {
  transform: scale(1.03);
}

.about-media-main img {
  min-height: 400px;
}

.about-media-alt {
  max-width: 72%;
  margin-left: auto;
  margin-top: -4.2rem;
}

.about-location {
  color: var(--gold-soft);
  font-size: 1.02rem;
  font-weight: 600;
  margin: -0.25rem 0 1rem;
}

.about .kicker {
  text-transform: none;
  letter-spacing: 0.05em;
}

.about .section-title {
  margin-top: -0.9rem;
}

.about-copy p {
  color: #d8dbe0;
  font-size: 1rem;
  max-width: 60ch;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lux-card {
  background: linear-gradient(160deg, rgba(32, 39, 48, 0.7), rgba(19, 24, 31, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.lux-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.lux-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 199, 143, 0.7);
}

.highlights {
  background:
    radial-gradient(circle at 8% 6%, rgba(196, 156, 102, 0.08) 0%, rgba(241, 241, 241, 0) 42%),
    radial-gradient(circle at 92% 92%, rgba(28, 44, 63, 0.06) 0%, rgba(241, 241, 241, 0) 40%),
    #f2f2f0;
  padding: 4.75rem 0 5.15rem;
}

.highlights .container {
  width: min(1040px, 90vw);
}

.highlights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 1.4rem 2.3rem;
  align-items: start;
}

.highlights .kicker {
  text-align: left;
  color: #a87434;
  margin-bottom: 0.7rem;
  letter-spacing: 0.24em;
  font-size: 1rem;
  font-weight: 700;
}

.highlights .section-title {
  text-align: left;
  color: #1c2c3f;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.72rem, 3.2vw, 2.85rem);
  line-height: 1.08;
  margin-bottom: 1.8rem;
  max-width: 700px;
}

.highlights .section-title::after {
  display: none;
}

.highlights .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-width: 860px;
}

.highlights .lux-card {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(28, 44, 63, 0.08);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  box-shadow: 0 6px 16px rgba(20, 34, 49, 0.06);
  display: flex;
  align-items: center;
  gap: 0.78rem;
  color: #1c2c3f;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.highlights .lux-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-top: 0;
  flex: 0 0 28px;
  opacity: 0.9;
  filter: sepia(48%) saturate(80%) hue-rotate(348deg);
}

.highlights .lux-card p {
  margin: 0;
  color: #1f2f42;
  font-size: clamp(0.96rem, 1.45vw, 1.15rem);
  line-height: 1.45;
  letter-spacing: 0.005em;
}

.highlights .lux-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 116, 52, 0.32);
  box-shadow: 0 12px 26px rgba(20, 34, 49, 0.1);
}

.highlights-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  border-radius: 18px;
}

.highlights-main-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(24, 37, 50, 0.16);
  display: block;
}

.highlights-small-image {
  position: absolute;
  top: -24px;
  left: -22px;
  width: min(40%, 176px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  border: 1.5px solid #ffffff;
  padding: 0.24rem 0.34rem;
  box-shadow: 0 10px 28px rgba(20, 32, 45, 0.2);
}

@media (max-width: 768px) {
  .highlights {
    padding: 3.8rem 0 4.1rem;
  }

  .highlights-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .highlights .section-title {
    margin-bottom: 1.35rem;
    font-size: clamp(1.48rem, 6.4vw, 2.02rem);
  }

  .highlights .lux-card {
    align-items: flex-start;
    padding: 0.66rem 0.7rem;
  }

  .highlights .lux-card p {
    font-size: clamp(0.93rem, 4vw, 1.03rem);
    line-height: 1.42;
  }

  .highlights-visual {
    min-height: 360px;
  }

  .highlights-main-image {
    height: 360px;
  }

  .highlights-small-image {
    top: -14px;
    left: -8px;
    width: min(46%, 150px);
    padding: 0.2rem 0.28rem;
  }
}

.price {
  background: linear-gradient(160deg, #0c1117 0%, #101720 60%, #11161d 100%);
}

.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-card {
  background: linear-gradient(170deg, rgba(24, 31, 40, 0.92), rgba(14, 19, 25, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.price-card h3 {
  font-size: 1.7rem;
}

.price-card .value {
  font-size: 1.3rem;
  color: var(--gold-soft);
  font-weight: 700;
  margin: 0.45rem 0;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 199, 143, 0.75);
}

.amenities {
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 13, 16, 0.8), rgba(10, 13, 16, 0.85)),
    url("sobha brdidgekeys images/popup.png") center/cover;
  z-index: -1;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.amenity {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(170deg, rgba(19, 26, 33, 0.83), rgba(12, 16, 22, 0.75));
  min-height: 180px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.amenity::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid rgba(200, 160, 92, 0.5);
  background: linear-gradient(130deg, rgba(200, 160, 92, 0.18), rgba(93, 126, 103, 0.24));
  z-index: 2;
}

.amenity::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 11, 15, 0.06), rgba(8, 11, 15, 0.5)),
    var(--amenity-image) center/cover no-repeat;
  z-index: 0;
  transition: transform 0.35s ease;
}

.amenity h3 {
  font-size: 1.35rem;
  position: relative;
  z-index: 2;
  color: #f4f6f8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: rgba(10, 13, 18, 0.44);
  backdrop-filter: blur(3px);
}

.amenity:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 199, 143, 0.8);
}

.amenity:hover::after {
  transform: scale(1.06);
}

.amenity-pool { --amenity-image: url("sobha brdidgekeys images/amenities/tennis-court.jpg"); }
.amenity-kids { --amenity-image: url("sobha brdidgekeys images/amenities/kids-play-area.jpg"); }
.amenity-senior { --amenity-image: url("sobha brdidgekeys images/amenities/senior-citizen-park.jpg"); }
.amenity-mall { --amenity-image: url("sobha brdidgekeys images/amenities/mall.jpg"); }
.amenity-retail { --amenity-image: url("sobha brdidgekeys images/amenities/retail-plazas.jpg"); }
.amenity-tennis { --amenity-image: url("sobha brdidgekeys images/amenities/pool.jpg"); }
.amenity-gym { --amenity-image: url("sobha brdidgekeys images/amenities/outdoor-gym.jpg"); }

.floor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.floor-tab {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #eef1f4;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.84rem;
  cursor: pointer;
}

.floor-tab.is-active {
  border-color: rgba(226, 199, 143, 0.88);
  color: var(--gold-soft);
  background: rgba(200, 160, 92, 0.12);
}

.floor-showcase {
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(31, 39, 49, 0.8), rgba(17, 22, 28, 0.9));
  overflow: hidden;
}

.floor-showcase img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.floor-image-wrap {
  position: relative;
  cursor: pointer;
  min-height: 280px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.floor-image-wrap:focus-visible {
  outline: 2px solid rgba(226, 199, 143, 0.95);
  outline-offset: -2px;
}

.floor-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.24), rgba(7, 9, 12, 0.72));
}

.floor-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.05);
}

.floor-unlock-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
}

.floor-unlock-btn:hover,
.floor-unlock-btn:focus-visible {
  transform: translate(-50%, -50%) translateY(-2px);
}

.floor-lock-note {
  margin-top: 0.75rem;
  color: #d0d5db;
  font-size: 0.92rem;
}

.floor-content {
  padding: 1.1rem;
}

.floor-content h3 {
  font-size: 1.9rem;
  margin-bottom: 0.35rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.location-grid {
  display: grid;
  gap: 1.2rem;
}

.location-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.location-copy li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 0.63rem 0.75rem;
  color: #e8ebef;
}

.map-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
}

.developer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.developer-copy {
  width: min(700px, 100%);
  margin: 0 auto;
}

.lead-wrap {
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(145deg, #10161e 0%, #18212a 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 1.4rem;
}

.lead-form-wide {
  grid-template-columns: 1fr;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  padding: 2.1rem 0 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #090c11 0%, #05070a 100%);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.footer-logo {
  width: 110px;
  border-radius: 10px;
  border: 1px solid rgba(226, 199, 143, 0.35);
  background: #e6cf9f;
}

.footer-brand-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #f2e4c2;
  line-height: 1;
}

.footer-phone {
  font-weight: 700;
  color: var(--gold-soft);
}

.footer-phone-list {
  display: grid;
  gap: 0.35rem;
}

.footer-title {
  margin: 0 0 0.6rem;
  color: #f1e0bf;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-link-group {
  display: grid;
  align-content: start;
}

.footer-legal p {
  margin: 0 0 0.55rem;
}

.small {
  font-size: 0.78rem;
  color: #98a0a8;
}

.partner-line {
  margin: 0;
  line-height: 1.15;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text .partner-line,
.footer-brand .partner-line {
  margin-top: 0.05rem;
  font-size: 0.65rem;
  color: #c8ccd2;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.footer-links a {
  color: #d9ddd8;
  font-size: 0.86rem;
}

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

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  align-items: center;
}

.footer-bottom a {
  color: var(--gold-soft);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 28;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 13, 17, 0.95);
  backdrop-filter: blur(10px);
}

.mobile-cta a,
.mobile-cta button {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #f1f4f8;
  padding: 0.85rem 0.4rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.84rem;
}

.mobile-cta button {
  border-right: 0;
  color: #1a1206;
  background: linear-gradient(160deg, var(--gold), #e8d3a9);
}

.wa-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  z-index: 27;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  box-shadow: none;
  isolation: isolate;
}

.wa-float img {
  position: relative;
  z-index: 1;
  display: block;
  height: 65px;
  width: auto;
  max-width: 360px;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: 1rem;
  display: none;
  place-items: center;
  background: rgba(4, 5, 8, 0.7);
  backdrop-filter: blur(6px);
}

.modal.is-open {
  display: grid;
}

.modal-panel {
  width: min(520px, 100%);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #151a21, #10151b);
  box-shadow: var(--shadow);
  padding: 1.15rem;
  position: relative;
}

.modal-panel h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-wide {
  width: min(920px, 100%);
}

.legal-modal-panel {
  width: min(940px, 100%);
  padding: 1.15rem;
}

.legal-modal-panel h3 {
  margin-bottom: 0.7rem;
  margin-right: 2rem;
}

.legal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.legal-tab {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: #d8dde3;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.legal-tab.is-active {
  border-color: rgba(226, 199, 143, 0.8);
  background: linear-gradient(160deg, rgba(226, 199, 143, 0.2), rgba(226, 199, 143, 0.08));
  color: #f2e4c2;
}

.legal-content {
  display: none;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.legal-content.is-active {
  display: grid;
}

.legal-content[hidden] {
  display: none;
}

.legal-content p {
  margin: 0;
  color: #d6dbe1;
  line-height: 1.62;
  font-size: 0.9rem;
}

.legal-content strong {
  color: #f2d9a8;
}

.legal-content a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.floor-modal-layout {
  display: grid;
  gap: 1rem;
}

.floor-modal-layout img {
  border-radius: 12px;
  min-height: 240px;
  object-fit: cover;
  filter: blur(6px);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 5.8rem;
  transform: translateX(-50%) translateY(22px);
  opacity: 0;
  background: rgba(16, 22, 30, 0.95);
  border: 1px solid rgba(226, 199, 143, 0.5);
  color: #ece8df;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  z-index: 45;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 0.84rem;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.18fr 0.82fr;
    align-items: center;
  }

  .site-nav {
    right: 1.5rem;
  }

  .stat-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .about-shell,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .about-shell {
    gap: 2.4rem;
  }

  .about-visual {
    position: relative;
    display: block;
    padding: 0 1.15rem 1.7rem 0;
  }

  .about-media-alt {
    position: absolute;
    width: min(58%, 280px);
    max-width: none;
    margin: 0;
    right: 0;
    bottom: 0;
  }

  .about-copy {
    padding-top: 0;
  }

  .amenity-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .floor-showcase {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lead-wrap {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 0.8fr 0.7fr 1.5fr;
  }

  .lead-form-wide {
    grid-template-columns: 1fr;
  }

  .lead-form-wide .consent,
  .lead-form-wide .lead-actions {
    grid-column: auto;
  }

  .floor-modal-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .floating-contact {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    border: 0;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    background: transparent;
  }

  .mobile-cta {
    display: none;
  }

  .wa-float {
    bottom: 1rem;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .hero {
    padding-top: 8.8rem;
  }

  .about-media-main img {
    min-height: 500px;
  }
}
