/* CRC The Peridona — luxury branded residences landing page */

:root {
  --blue: #6484c6;
  --blue-dark: #3e5fa8;
  --blue-deep: #2c4478;
  --green: #509772;
  --green-dark: #3d7a58;
  --green-light: #e8f5ee;
  --blue-light: #eef2fa;
  --ink: #152033;
  --muted: #6b7280;
  --line: #e5e9f0;
  --canvas: #f7f8fb;
  --white: #ffffff;
  --nav-h: 78px;
  --shadow: 0 12px 40px rgba(44, 68, 120, 0.08);
  --shadow-lift: 0 22px 60px rgba(44, 68, 120, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Montserrat", Arial, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 800;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.block { padding: 56px 0; }
.block-muted { background: var(--canvas); }
section[id] { scroll-margin-top: 88px; }

.section-head { max-width: 720px; margin: 0 auto 28px; text-align: center; }
.section-head h2,
.about-copy h2,
.location-grid h2,
.video-copy h2,
.price-inner h2,
.final-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  color: var(--ink);
}
.section-head p:last-child,
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-head-light h2 { color: white; }
.section-head-light p:last-child { color: rgba(255, 255, 255, 0.78); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow-light { color: #cfe8d9; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(100, 132, 198, 0.24);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { background: var(--blue-dark); color: white; transform: translateY(-2px); }
.btn-lg { min-height: 54px; padding: 0 28px; }
.btn-block { width: 100%; border-radius: 12px; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(80, 151, 114, 0.24); }
.btn-green:hover { background: #3d7a58; color: #fff; }
.btn-white { background: white; color: var(--blue-deep); border: 0; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12); }
.btn-white:hover { background: var(--blue-light); color: var(--blue-deep); }
.btn-primary { background: var(--blue); color: white; }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}
.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(21, 32, 51, 0.06);
}
.nav-bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.logo-img {
  height: 54px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  background: #fff;
}
.logo-project {
  display: none;
  flex-direction: column;
  line-height: 1.1;
  border-left: 1px solid var(--line);
  padding-left: 12px;
}
.logo-project strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
}
.logo-project small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.desktop-nav { display: none; align-items: center; gap: 18px; }
.nav-link {
  position: relative;
  color: #3f4b63;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-link.is-active { color: var(--blue-dark); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.header-phone,
.header-cta { display: none; }
.header-phone {
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-light);
  border: 0;
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.menu-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 39;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  padding: 12px 20px 24px;
  background: white;
  overflow: auto;
  border-top: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a,
.mobile-menu .btn {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}
.mobile-menu .menu-call { color: var(--blue-dark); border-bottom: 0; }
.mobile-menu .btn { margin-top: 8px; border-bottom: 0; }

/* HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(88dvh - var(--nav-h));
  padding: 28px 0 40px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(80, 151, 114, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  color: white;
  max-width: 700px;
}
.badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #dff3e8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-brand {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  color: white;
  text-wrap: balance;
}
.hero-copy h1 span {
  color: #b7e0c8;
  font-style: italic;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-lead {
  margin: 16px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}
.check-row li { display: inline-flex; align-items: center; gap: 8px; }
.check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.72rem;
}
.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: white;
  backdrop-filter: blur(8px);
}
.hero-call-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}
.hero-call small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-call strong {
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.enquiry-desktop { display: none; }
.enquiry-mobile {
  margin-top: -20px;
  padding: 0 0 20px;
  position: relative;
  z-index: 2;
  background: var(--canvas);
}

.enquiry-card {
  padding: 28px 24px 24px;
  border: 1px solid rgba(229, 233, 240, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}
.enquiry-kicker {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.enquiry-card h2,
.modal-dialog h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
}
.enquiry-sub {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
.lead-form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field span { font-size: 0.84rem; font-weight: 650; }
.field abbr { color: var(--green-dark); text-decoration: none; }
.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfe;
  color: var(--ink);
  font-size: 16px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%233E5FA8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(100, 132, 198, 0.16);
  background: white;
}
.field input::placeholder { color: #94a3b8; }
.field.is-invalid input,
.field.is-invalid select { border-color: #dc2626; }
.field-error { min-height: 0; color: #dc2626; font-size: 0.78rem; }
.field.is-invalid .field-error { min-height: 1em; }

/* TRUST */
.trust-strip {
  background: linear-gradient(90deg, #0a0a0a, #1a1a1a 70%);
  color: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  padding: 14px 0;
}
.trust-grid p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
}
.trust-check {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 0.75rem;
}

/* ABOUT */
.about-grid,
.location-grid,
.video-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
.about-grid {
  align-items: start;
}
.about-visual {
  position: relative;
  margin: 0;
  height: 280px;
  max-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.location-visual {
  position: relative;
  margin: 0;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.location-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.about-visual figcaption,
.location-visual figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-deep);
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 0;
}
.about-copy {
  padding-top: 0;
  margin-top: 0;
}
.about-copy .eyebrow {
  margin-top: 0;
}
.about-points {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}
.about-points article {
  padding: 16px 18px;
  border-left: 3px solid var(--green);
  border-radius: 0 14px 14px 0;
  background: var(--canvas);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
}
.about-points h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 800;
}
.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* HIGHLIGHTS */
.highlights {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.78), rgba(18, 18, 18, 0.7)),
    url("../images/cta-bg.jpg") center / cover no-repeat;
  background-attachment: scroll;
}
.highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(520px 240px at 90% 10%, rgba(80, 151, 114, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4));
  pointer-events: none;
}
.highlights .wrap { position: relative; z-index: 1; }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.stat-card {
  padding: 24px 22px 20px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  border: 0;
  border-top: 3px solid var(--green);
  color: var(--ink);
}
.stat-label {
  margin: 0;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stat-value {
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
}
.stat-hint { margin: 0; color: var(--muted); font-size: 0.9rem; }
.text-link {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--green-dark);
  font-weight: 750;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 18px;
}
.loc-card {
  padding: 16px 14px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.loc-card h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
}
.loc-card p {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.lifestyle {
  background: var(--canvas);
}
.lifestyle-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}
.lifestyle-visual {
  position: relative;
  margin: 0;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.lifestyle-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle-visual figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  border: 0;
}
.lifestyle-visual figcaption span {
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lifestyle-visual figcaption strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}
.lifestyle-copy h2 {
  margin: 0 0 10px;
}
.lifestyle-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.lifestyle-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.lifestyle-item:hover {
  transform: translateY(-2px);
  border-color: #9fd4b4;
  box-shadow: var(--shadow-lift);
}
.lifestyle-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, #111 0%, #2a2a2a 100%);
  color: #cfe8d9;
  border: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.lifestyle-item h3 {
  margin: 0 0 2px;
  font-size: 0.98rem;
  font-weight: 800;
}
.lifestyle-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.amenity-card {
  padding: 24px 16px;
  text-align: center;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.amenity-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 1.1rem;
}
.amenity-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}
.amenity-card:hover {
  transform: translateY(-4px);
  background: #f3fbf6;
  border-color: #9fd4b4;
}
.amenity-card:hover .amenity-icon {
  background: var(--green);
  color: white;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 160px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #d8e0ec;
}
.gallery-item:nth-child(1) {
  grid-column: 1 / -1;
  min-height: 240px;
}
.gallery-item:nth-child(6) { grid-column: 1 / -1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(44, 68, 120, 0.55);
  color: white;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay { opacity: 1; }
@media (hover: none) {
  .gallery-overlay {
    inset: auto 0 0;
    height: 42%;
    align-items: end;
    padding-bottom: 12px;
    background: linear-gradient(transparent, rgba(44, 68, 120, 0.78));
    opacity: 1;
  }
}

.video-thumb {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  background: #152033;
  box-shadow: var(--shadow-lift);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 68, 120, 0.08), rgba(44, 68, 120, 0.38));
}
.play-btn {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.4rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.video-copy .btn { margin-top: 16px; }

.price-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.78), rgba(10, 10, 10, 0.68)),
    url("../images/gallery-06.jpg") center / cover no-repeat;
  color: white;
}
.price-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(480px 220px at 92% 120%, rgba(80, 151, 114, 0.22), transparent 70%);
  pointer-events: none;
}
.price-inner,
.final-inner { position: relative; z-index: 1; padding: 48px 0; }
.price-inner { display: grid; gap: 18px; }
.price-inner h2,
.final-inner h2 { color: white; }
.price-inner p,
.final-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}
.price-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-wrap { max-width: 840px; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 14px;
  background: white;
  overflow: hidden;
}
.faq-item.is-open { border-left-color: var(--green); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: white;
  color: var(--blue-deep);
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
}
.faq-question span:last-child {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
}
.faq-question span:last-child::before,
.faq-question span:last-child::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 10px;
  height: 2px;
  background: var(--blue);
}
.faq-question span:last-child::after { transform: rotate(90deg); transition: transform 0.2s; }
.faq-item.is-open .faq-question span:last-child::after { transform: rotate(0deg); background: var(--green); }
.faq-item.is-open .faq-question span:last-child::before { background: var(--green); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > div { overflow: hidden; }
.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(420px 240px at 8% 120%, rgba(80, 151, 114, 0.32), transparent 70%),
    radial-gradient(380px 200px at 96% 0%, rgba(255, 255, 255, 0.05), transparent 68%),
    linear-gradient(145deg, #000000, #1a1a1a 72%);
  text-align: center;
}
.final-actions { justify-content: center; margin-top: 18px; }

.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.78);
  padding: 40px 0 24px;
  border-top: 0;
}
.footer-grid { display: grid; gap: 24px; }
.footer-logo {
  display: block;
  width: auto;
  height: 70px;
  max-width: 180px;
  margin-bottom: 12px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
  padding: 8px 12px;
}
.footer-project {
  margin: 0 0 6px;
  color: white;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
}
.footer-label {
  margin: 0 0 8px;
  color: #c5e6d4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-grid a {
  display: block;
  margin: 4px 0;
  color: white;
  font-weight: 650;
  text-decoration: none;
}
.footer-base {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}
.footer-base p { margin: 0 0 6px; }

.mobile-bar {
  position: fixed;
  z-index: 45;
  left: 0; right: 0; bottom: 0;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(196, 165, 116, 0.25);
}
.mobile-bar a,
.mobile-bar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 64px;
  border: 0;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.bar-call { background: var(--blue); border-right: 0; }
.bar-wa { background: var(--green); }
.bar-details { background: #111111; }

.toast {
  position: fixed;
  z-index: 70;
  top: 94px;
  left: 50%;
  width: min(420px, calc(100% - 32px));
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 32px rgba(80, 151, 114, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal[hidden],
.lightbox[hidden] { display: none; }
.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
}
.lightbox { z-index: 85; }
.modal-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 32, 51, 0.62);
}
.modal-dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 30px 24px 24px;
  border-radius: 22px;
  border-top: 4px solid var(--blue);
  background: white;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(44, 68, 120, 0.28);
}
.modal-close,
.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 0;
  background: white;
  color: var(--ink);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--canvas);
  color: var(--ink);
}
.modal-success { text-align: center; padding: 18px 8px 8px; }
.modal-success p {
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}
.success-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(1040px, calc(100% - 88px));
}
.lightbox-figure img {
  width: 100%;
  max-height: calc(100dvh - 120px);
  object-fit: contain;
  border-radius: 14px;
  background: #0f172a;
}
.lightbox-figure figcaption {
  margin-top: 10px;
  color: white;
  text-align: center;
  font-weight: 650;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); }

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding: 42px 12px 12px;
  border-radius: 18px;
  background: #132038;
}
.video-dialog video {
  width: 100%;
  max-height: calc(100dvh - 120px);
  border-radius: 12px;
  background: black;
}
.video-close { background: white; }

html.is-locked,
html.is-locked body { overflow: hidden; }

@media (min-width: 640px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(4, 1fr); }
  .lifestyle-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .logo-project { display: flex; }
}

@media (min-width: 768px) {
  .header-phone { display: inline-flex; }
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 0;
  }
  .gallery-grid {
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: 250px 250px 210px;
  }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; min-height: 0; }
  .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
  .gallery-item:nth-child(6) { grid-column: 1 / -1; grid-row: 3; }
  .about-visual {
    height: 360px;
    max-height: 360px;
  }
  .location-visual,
  .location-visual img,
  .video-thumb,
  .video-thumb img { min-height: 480px; }
  .price-inner {
    grid-template-columns: 1.35fr auto;
    align-items: center;
  }
  .mobile-bar { display: none; }
}

@media (min-width: 1024px) {
  .enquiry-desktop { display: block; }
  .enquiry-mobile { display: none; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 390px);
    gap: 36px;
  }
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: start;
  }
  .lifestyle-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: start;
  }
  .lifestyle-visual {
    height: 520px;
    position: sticky;
    top: calc(var(--nav-h) + 16px);
  }
  .location-grid,
  .video-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
  }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-toggle { display: none; }
  .desktop-nav { display: flex; }
  .header-cta { display: inline-flex; }
}

@media (max-width: 767px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .mobile-menu { bottom: calc(78px + env(safe-area-inset-bottom)); }

  .hero {
    min-height: 0;
    max-height: none;
    align-items: flex-start;
    padding: 14px 0 18px;
  }
  .hero-grid { gap: 14px; }
  .badge {
    margin-bottom: 8px;
    padding: 5px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }
  .hero-brand {
    margin-bottom: 4px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }
  .hero-copy h1 {
    font-size: clamp(1.35rem, 6.2vw, 1.7rem);
    line-height: 1.2;
  }
  .hero-location {
    margin-top: 8px;
    font-size: 0.82rem;
  }
  .hero-lead {
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.45;
  }
  .hero-actions {
    margin-top: 12px;
    gap: 8px;
  }
  .hero-actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.72rem;
    flex: 1 1 auto;
  }
  .check-row {
    margin-top: 12px;
    gap: 8px 12px;
    font-size: 0.78rem;
  }
  .check {
    width: 18px;
    height: 18px;
    font-size: 0.62rem;
  }
  .hero-call {
    margin-top: 12px;
    padding: 6px 10px 6px 6px;
  }
  .hero-call-icon {
    width: 34px;
    height: 34px;
  }
  .hero-call strong { font-size: 0.95rem; }

  .enquiry-mobile {
    margin-top: -8px;
    padding-bottom: 14px;
  }
  .enquiry-card {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }
  .enquiry-card h2,
  .modal-dialog h2 { font-size: 1.2rem; }

  .mobile-bar {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 0;
    padding-bottom: 0;
    border-radius: 18px;
    border: 1px solid rgba(100, 132, 198, 0.35);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow:
      0 12px 36px rgba(44, 68, 120, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    overflow: hidden;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  }
  .mobile-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-bar a,
  .mobile-bar button {
    min-height: 58px;
    gap: 3px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    background: transparent;
    position: relative;
    color: var(--ink);
  }
  .mobile-bar a + a,
  .mobile-bar a + button,
  .mobile-bar button + a {
    border-left: 1px solid var(--line);
  }
  .bar-call { background: transparent; border-right: 0; color: var(--blue-dark); }
  .bar-wa { background: transparent; color: var(--green-dark); }
  .bar-details {
    background: linear-gradient(180deg, rgba(100, 132, 198, 0.16), rgba(100, 132, 198, 0.06));
    color: var(--blue-deep);
  }
  .bar-details::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 12px;
    border: 1px solid rgba(100, 132, 198, 0.25);
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
