:root {
  --ink: #f7f8f3;
  --panel: #ffffff;
  --panel-2: #edf1e9;
  --ivory: #16241a;
  --ivory-dim: #4b5b51;
  --brass: #1a365d;
  --brass-bright: #2c5282;
  --brass-soft: rgba(26, 54, 93, 0.14);
  --line: rgba(22, 36, 26, 0.12);
  --line-strong: rgba(22, 36, 26, 0.28);
  --green-deep: #0b120f;
  --success: #3b7650;
  --radius: 2px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

img,
video,
svg,
iframe,
canvas {
  max-width: 100%;
  height: auto;
}

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

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--brass-bright);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--brass);
  padding: 15px 8px;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 11px 18px;
  font-size: 13px;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--green-deep);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.topbar-left .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  color: white;
  font-weight: 600;
}

/* ============ HEADER ============ */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav.main {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.main a {
  font-size: 14px;
  color: var(--ivory-dim);
  font-weight: 600;
  transition: color 0.2s;
}

nav.main a:hover {
  color: var(--brass-bright);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.call-chip:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
}

/* ============ STICKY ENQUIRY TRIGGER ============ */
.enquiry-trigger {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--brass);
  color: var(--ink);
  border: none;
  border-radius: 8px 0 0 8px;
  width: 40px;
  height: 130px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.14);
  transition:
    background 0.2s,
    width 0.2s;
}

.enquiry-trigger:hover {
  background: var(--brass-bright);
  width: 44px;
}

/* ============ ENQUIRY MODAL ============ */
.eq-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 22, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.eq-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.eq-modal {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25);
  transform: scale(0.92) translateY(20px);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.26, 0.64, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.eq-backdrop.open .eq-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* — Left: form panel — */
.eq-form-col {
  background: var(--panel);
  padding: 48px 44px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.eq-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.eq-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

.eq-brand-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.eq-form-col h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ivory);
  margin-bottom: 8px;
  line-height: 1.1;
}

.eq-form-col .eq-desc {
  font-size: 14px;
  color: var(--ivory-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}

.eq-form-col input,
.eq-form-col select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  padding: 13px 16px;
  border-radius: var(--radius);
  font-family: "Manrope";
  font-size: 14px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.eq-form-col input:focus,
.eq-form-col select:focus {
  outline: none;
  border-color: var(--brass);
}

.eq-form-col input::placeholder {
  color: var(--ivory-dim);
}

.eq-disclaimer {
  font-size: 11.5px;
  color: var(--ivory-dim);
  margin-top: 10px;
  line-height: 1.6;
}

/* — Right: image panel — */
.eq-image-col {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.eq-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.eq-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 26, 0.85) 0%,
    rgba(10, 18, 26, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.eq-image-overlay .eq-tagline {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.eq-image-overlay .eq-project-name {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.6vw, 34px);
  color: #fff;
  line-height: 1.1;
}

.eq-image-overlay .eq-project-name em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

/* — Close button — */
.eq-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.eq-close:hover {
  background: rgba(26, 54, 93, 0.9);
}

.eq-close:focus,
.eq-close:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* — Responsive Modal & Nav — */
@media (max-width: 780px) {
  .eq-backdrop {
    padding: 12px;
    align-items: center;
  }

  .eq-modal {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
  }

  .eq-image-col {
    display: none;
  }

  .eq-form-col {
    padding: 28px 20px 24px;
    position: relative;
  }

  .eq-close {
    top: 14px;
    right: 14px;
    background: rgba(26, 54, 93, 0.1);
    color: #1a365d;
    border: 1px solid rgba(26, 54, 93, 0.2);
  }

  .eq-close:hover {
    background: #1a365d;
    color: #ffffff;
  }
}

@media (max-width: 980px) {
  .enquiry-trigger {
    display: flex;
  }
}

/* ============ HERO CAROUSEL ============ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  height: auto;
  overflow: hidden;
  background: #0b120f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 50px;
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 75%;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.45, 0, 0.55, 1);
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

/* Ken-Burns zoom on active slide */
.hero-slide.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center 75%;
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

/* Multi-layer ambient glass overlay — ultra-transparent so background image is razor sharp */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 12, 20, 0.22) 0%,
      rgba(6, 12, 20, 0.4) 100%
    ),
    linear-gradient(
      90deg,
      rgba(6, 12, 20, 0.35) 0%,
      rgba(6, 12, 20, 0.05) 55%,
      transparent 100%
    );
  z-index: 1;
}

/* Content layer — vertically centered for immediate visibility */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto 0;
  padding: 20px 0;
}

.hero-content .wrap {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 36px;
  align-items: center;
}

/* Hero left text column */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============ HERO INLINE ENQUIRY FORM (high transparency glass card) ============ */
.hero-form-card {
  background: rgba(10, 18, 30, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 24px 22px 20px;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: fadeUp 0.9s 0.45s ease both;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 370px;
  box-sizing: border-box;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Form header */
.hero-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.hero-form-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7eb3ff;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(126, 179, 255, 0.55);
}

.hero-form-brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-form-card h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(18px, 1.5vw, 21px);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 2px;
  font-weight: 500;
}

.hero-form-card .hero-form-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
  line-height: 1.45;
}

/* Form fields inside hero card */
.hero-form-card input,
.hero-form-card select {
  width: 100%;
  background: rgba(10, 18, 30, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  margin-bottom: 8px;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  backdrop-filter: blur(4px);
}

.hero-form-card input:focus,
.hero-form-card select:focus {
  outline: none;
  border-color: rgba(126, 179, 255, 0.85);
  background: rgba(10, 18, 30, 0.4);
  box-shadow: 0 0 0 3px rgba(126, 179, 255, 0.22);
}

.hero-form-card input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-form-card select {
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.hero-form-card select option {
  background: #0f1c2e;
  color: #ffffff;
}

.hero-form-card .btn-primary {
  background: rgba(26, 54, 93, 0.7);
  backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1.5px solid rgba(126, 179, 255, 0.65);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 16px;
  margin-top: 2px;
  width: 100%;
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}

.hero-form-card .btn-primary:hover {
  background: rgba(44, 82, 130, 0.9);
  border-color: rgba(126, 179, 255, 0.95);
  box-shadow: 0 6px 22px rgba(26, 54, 93, 0.6);
  transform: translateY(-1px);
}

.hero-form-disclaimer {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
  line-height: 1.5;
  text-align: center;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow .line {
  width: 32px;
  height: 2px;
  background: #fff;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Eyebrow badge */
.hero-eyebrow .eyebrow {
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  background: rgba(26, 54, 93, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px 14px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Main title */
h1.hero-title {
  font-size: clamp(32px, 4.4vw, 60px);
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.05;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.95);
  animation: fadeUp 0.9s 0.12s ease both;
}

h1.hero-title em {
  font-style: italic;
  color: #fff;
  opacity: 0.95;
}

/* Sub-headline */
.hero-sub {
  font-size: 17px;
  color: #fff;
  max-width: 580px;
  margin-bottom: 16px;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  animation: fadeUp 0.9s 0.22s ease both;
}

/* CTA buttons — premium glassmorphism styling */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  animation: fadeUp 0.9s 0.32s ease both;
}

.hero-ctas .btn-primary {
  background: rgba(26, 54, 93, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border: 1.5px solid rgba(126, 179, 255, 0.65);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-ctas .btn-primary:hover {
  background: rgba(44, 82, 130, 0.85);
  border-color: rgba(126, 179, 255, 0.95);
  box-shadow: 0 6px 24px rgba(26, 54, 93, 0.6);
}

.hero-ctas .btn-outline {
  background: rgba(10, 18, 30, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-ctas .btn-outline:hover {
  background: rgba(26, 54, 93, 0.75);
  border-color: #ffffff;
  color: #fff;
  box-shadow: 0 6px 24px rgba(26, 54, 93, 0.5);
}

/* Spec strip & project highlights grid — glass container */
.spec-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(10, 18, 30, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  animation: fadeUp 0.9s 0.42s ease both;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Primary Highlight: Price Banner Card */
.spec-item.primary-spec-item {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    rgba(26, 54, 93, 0.5) 0%,
    rgba(12, 30, 56, 0.5) 100%
  );
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.spec-item.primary-spec-item .k {
  color: #7eb3ff;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.spec-item.primary-spec-item .v {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
}

.spec-item.primary-spec-item .v span {
  color: #7eb3ff;
  font-size: 20px;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(126, 179, 255, 0.5);
}

.spec-item {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.spec-item:nth-child(2n) {
  border-right: none;
}

.spec-item:hover {
  background: rgba(26, 54, 93, 0.55);
}

.spec-item .k {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.spec-item .v {
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
}

.spec-item .v span {
  color: #7eb3ff;
  font-weight: 700;
}

/* Slide navigation arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-nav:hover {
  background: #1a365d;
  border-color: #1a365d;
  transform: translateY(-50%) scale(1.08);
}

.hero-nav.prev {
  left: 24px;
}

.hero-nav.next {
  right: 24px;
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.5);
  box-shadow: 0 0 0 2px #1a365d;
}

/* Fade-up animation for content */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lead bar beneath hero */
.lead-bar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 44px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lead-bar-text .t {
  font-family: "Fraunces", serif;
  font-size: 19px;
  margin-bottom: 3px;
}

.lead-bar-text .s {
  font-size: 13.5px;
  color: var(--ivory-dim);
}

.lead-bar-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-bar-form input {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: "Manrope";
  font-size: 14px;
  width: 180px;
}

.lead-bar-form input::placeholder {
  color: var(--ivory-dim);
}

.lead-bar-form input:focus {
  outline: none;
  border-color: var(--brass);
}

/* Responsive hero & form breakpoints */
@media (max-width: 1180px) and (min-width: 981px) {
  .hero-content .wrap {
    grid-template-columns: 1fr 340px;
    gap: 24px;
  }

  .hero-form-card {
    max-width: 340px;
    padding: 22px 18px 18px;
  }

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

  .spec-item:nth-child(2) {
    border-right: none;
  }

  .spec-item:nth-child(3),
  .spec-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 1100px) {
  .enquiry-trigger {
    display: none !important;
  }
}

@media (max-width: 980px) {
  /* === MOBILE HERO CAROUSEL: Large building image with floating glass highlights overlay === */
  .hero {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    position: relative !important;
    overflow: visible !important;
    display: block !important;
    background: #fff !important;
  }

  /* IMAGE AREA */
  .hero-slides {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 5 / 3 !important;
    overflow: hidden !important;
  }

  .hero-slide,
  .hero-slide.active::after {
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  /* Overlay applies only to image */
  .hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: calc(100vw * 0.6) !important;
    bottom: auto !important;
    background: linear-gradient(
      180deg,
      rgba(6, 12, 20, 0.05) 0%,
      rgba(6, 12, 20, 0.15) 60%,
      rgba(6, 12, 20, 0.4) 100%
    ) !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  /* === NORMAL FLOW CONTENT === */

  .hero-content {
    display: block !important;
    position: static !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-content .wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 !important;
    display: block !important;
  }

  .hero-text-col {
    width: 100% !important;
  }

  /* Hide desktop content */
  .hero-eyebrow,
  h1.hero-title,
  .hero-sub,
  .hero-ctas,
  .hero-form-card {
    display: none !important;
  }

  /* Glass Highlights Spec Strip overlay (as shown in screenshot) */
  .spec-strip {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    width: 100% !important;
    margin: -1px 0 0 !important;
    background: rgba(10, 18, 30, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 0 14px 14px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden !important;
  }

  .spec-item.primary-spec-item {
    grid-column: span 2 !important;
    background: linear-gradient(
      135deg,
      rgba(26, 54, 93, 0.85) 0%,
      rgba(12, 30, 56, 0.85) 100%
    ) !important;
    padding: 10px 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
  }

  .spec-item {
    padding: 10px 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .spec-item.primary-spec-item .v {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  .spec-item:nth-child(2n) {
    border-right: none !important;
  }

  .spec-item .k {
    font-size: 9px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 2px !important;
  }

  .spec-item .v {
    font-size: 13.5px !important;
    color: #ffffff !important;
  }

  /* Carousel navigation controls on mobile */
  .hero-dots {
    bottom: 6px !important;
    z-index: 10 !important;
  }

  .hero-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
    background: rgba(10, 18, 30, 0.5) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    z-index: 10 !important;
  }

  .hero-nav.prev {
    left: 8px !important;
  }
  .hero-nav.next {
    right: 8px !important;
  }

  /* === MOBILE CONTENT SECTION BELOW HERO === */
  .mobile-hero-content {
    display: block !important;
    background: #ffffff;
    padding: 28px 20px 32px;
    border-bottom: 1px solid var(--line);
  }

  /* Hide duplicate spec strip inside mobile-hero-content since it's floating in the hero */
  .mobile-hero-content .mhc-spec-strip {
    display: none !important;
  }
}

@media (min-width: 981px) {
  /* Hide mobile-only block on desktop */
  .mobile-hero-content {
    display: none !important;
  }
}

/* === MOBILE HERO CONTENT SECTION STYLES === */
.mobile-hero-content {
  background: #ffffff;
  padding: 28px 20px 32px;
  border-bottom: 1px solid var(--line);
}

.mobile-hero-content .mhc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-hero-content .mhc-eyebrow .line {
  width: 28px;
  height: 2px;
  background: var(--brass);
  flex-shrink: 0;
}

.mobile-hero-content .mhc-eyebrow .eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.mobile-hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 9vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.mobile-hero-content h1 em {
  font-style: italic;
  color: var(--brass);
}

.mobile-hero-content .mhc-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ivory-dim);
  margin-bottom: 20px;
  max-width: 480px;
}

.mobile-hero-content .mhc-sub strong {
  color: var(--brass);
  font-weight: 700;
}

/* CTA buttons */
.mobile-hero-content .mhc-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-hero-content .mhc-ctas .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Spec strip */
.mobile-hero-content .mhc-spec-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.mobile-hero-content .mhc-spec-item {
  background: #f7f9fc;
  border: 1px solid rgba(26, 54, 93, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
}

.mobile-hero-content .mhc-spec-item.primary {
  grid-column: 1 / -1;
  background: var(--brass);
  border-color: var(--brass);
}

.mobile-hero-content .mhc-spec-item .k {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 3px;
}

.mobile-hero-content .mhc-spec-item.primary .k {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-hero-content .mhc-spec-item .v {
  font-family: "Fraunces", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
}

.mobile-hero-content .mhc-spec-item.primary .v {
  color: #fff;
  font-size: 16px;
}

.mobile-hero-content .mhc-spec-item .v span {
  font-weight: 700;
}

/* Inline form */
.mobile-hero-content .mhc-form-wrap {
  background: #f7f9fc;
  border: 1px solid rgba(26, 54, 93, 0.1);
  border-radius: 14px;
  padding: 20px 16px;
}

.mobile-hero-content .mhc-form-title {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 4px;
}

.mobile-hero-content .mhc-form-desc {
  font-size: 13px;
  color: var(--ivory-dim);
  margin-bottom: 14px;
  line-height: 1.5;
}

.mobile-hero-content .mhc-form-wrap input,
.mobile-hero-content .mhc-form-wrap select {
  width: 100%;
  border: 1px solid rgba(26, 54, 93, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  color: var(--ivory);
  background: #fff;
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.mobile-hero-content .mhc-form-wrap input:focus,
.mobile-hero-content .mhc-form-wrap select:focus {
  border-color: var(--brass);
}

.mobile-hero-content .mhc-form-wrap .btn-primary {
  width: 100%;
  margin-top: 4px;
  font-size: 14px;
  padding: 13px;
}

.mobile-hero-content .mhc-disclaimer {
  font-size: 11px;
  color: var(--ivory-dim);
  margin-top: 10px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 560px) {
  .hero-form-card {
    padding: 18px 14px 14px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  .hero-form-card input,
  .hero-form-card select {
    padding: 9px 11px;
    font-size: 13px;
    margin-bottom: 7px;
  }

  .hero-form-card .btn-primary {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero-content .wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-dots {
    bottom: 16px;
  }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

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

.trust-item {
  text-align: center;
  padding: 26px 12px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item .num {
  font-family: "Fraunces", serif;
  font-size: 28px;
  color: var(--brass-bright);
}

.trust-item .lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 4px;
}

/* ============ PROJECT OVERVIEW ============ */
.po-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}

.po-grid {
  display: block;
  max-width: 960px;
  margin: 0 auto;
}

.po-content h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.po-content h2 em {
  font-style: italic;
  color: #1a365d;
  font-weight: 600;
}

.po-text {
  font-size: 16.5px;
  line-height: 1.85;
  color: #2d3a30;
  margin-bottom: 20px;
}

.po-text:last-of-type {
  margin-bottom: 28px;
}

.po-highlight {
  color: #1a365d;
  font-weight: 700;
  background: rgba(26, 54, 93, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(26, 54, 93, 0.12);
}

.po-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.po-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #1a365d;
}

.po-badge-item svg {
  width: 15px;
  height: 15px;
  stroke: #1a365d;
  flex-shrink: 0;
}

/* Stat Cards Grid */
.po-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.po-stat-card {
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(26, 54, 93, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.po-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 54, 93, 0.12);
  border-color: rgba(26, 54, 93, 0.3);
}

.po-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1a365d;
  opacity: 0.85;
}

.po-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(26, 54, 93, 0.07);
  border: 1px solid rgba(26, 54, 93, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.po-stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: #1a365d;
}

.po-stat-val {
  font-family: "Fraunces", serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a365d;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.po-stat-lbl {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4b5b51;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .po-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .po-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .po-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .po-stat-card {
    padding: 20px 16px;
  }

  .po-stat-val {
    font-size: 32px;
  }
}

/* ============ MASTER PLAN SECTION ============ */
.mp-section {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}

.mp-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.mp-header .sec-tag {
  justify-content: center;
}

.mp-header h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.mp-header h2 em {
  font-style: italic;
  color: #1a365d;
  font-weight: 600;
}

.mp-header p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory-dim);
}

/* Master Plan Main Showcase */
.mp-showcase {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 48px rgba(26, 54, 93, 0.08);
  margin-bottom: 56px;
  overflow: hidden;
}

.mp-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0b121e;
  cursor: pointer;
}

.mp-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  filter: blur(4px);
  opacity: 0.65;
  transform: scale(1.05);
  transition:
    filter 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

.mp-image-wrapper:hover img {
  filter: blur(5px);
  opacity: 0.55;
  transform: scale(1.08);
}

/* Masterplan Blur Overlay CTA */
.mp-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
  gap: 16px;
}

.mp-blur-overlay .mp-lock-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 54, 93, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: mp-lock-pulse 2s ease-in-out infinite;
}

.mp-blur-overlay .mp-lock-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
}

@keyframes mp-lock-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.3);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.5);
  }
}

.mp-blur-overlay .mp-overlay-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #16241a;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.5);
}

.mp-blur-overlay .mp-overlay-sub {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #4b5b51;
  text-align: center;
  max-width: 320px;
  line-height: 1.5;
}

.mp-blur-overlay .mp-overlay-btn {
  pointer-events: auto;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(26, 54, 93, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}

.mp-blur-overlay .mp-overlay-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(26, 54, 93, 0.5);
}

.mp-image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(10, 18, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-zoom-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #1a365d;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.15s;
}

.mp-zoom-btn:hover {
  background: #2c5282;
  transform: translateY(-2px);
}

.mp-caption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--ivory-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 14px;
}

/* Master Plan Features Grid */
.mp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mp-feature-card {
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(26, 54, 93, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.mp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
  border-color: rgba(26, 54, 93, 0.28);
}

.mp-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mp-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(26, 54, 93, 0.07);
  border: 1px solid rgba(26, 54, 93, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mp-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: #1a365d;
}

.mp-feature-title {
  font-size: 15px;
  font-weight: 700;
  color: #16241a;
  line-height: 1.25;
}

.mp-feature-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #4b5b51;
}

/* Masterplan Lightbox Modal */
.mp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(8, 14, 22, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mp-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.mp-lightbox-content {
  position: relative;
  max-width: 1240px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mp-lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.mp-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1a365d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
}

.mp-lightbox-close:hover {
  background: #2c5282;
}

@media (max-width: 980px) {
  .mp-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mp-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .mp-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mp-showcase {
    padding: 10px;
    margin-bottom: 36px;
  }
}

/* ============ GRAND CLUBHOUSE SECTION ============ */
.gc-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}

.gc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.gc-content h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.gc-content h2 em {
  font-style: italic;
  color: #1a365d;
  font-weight: 600;
}

.gc-intro {
  font-size: 16.5px;
  line-height: 1.8;
  color: #2d3a30;
  margin-bottom: 28px;
}

.gc-intro strong {
  color: #1a365d;
  font-weight: 700;
}

/* Feature Cards Grid (2x4) */
.gc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.gc-feature-card {
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.gc-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.1);
  border-color: rgba(26, 54, 93, 0.28);
}

.gc-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 54, 93, 0.07);
  border: 1px solid rgba(26, 54, 93, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: #1a365d;
}

.gc-feature-text {
  font-size: 14px;
  font-weight: 700;
  color: #16241a;
  line-height: 1.3;
}

/* Kid-Safe Banner */
.gc-kid-safe {
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #1a365d;
  border-radius: 10px;
  padding: 20px 24px;
}

.gc-kid-safe-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.gc-kid-safe-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a365d;
}

.gc-kid-safe p {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5b51;
}

/* Right Showcase Image Card */
.gc-image-card {
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 48px rgba(26, 54, 93, 0.08);
  position: relative;
  overflow: hidden;
}

.gc-image-card img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.gc-image-card:hover img {
  transform: scale(1.02);
}

.gc-image-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  background: rgba(10, 18, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gc-image-caption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--ivory-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .gc-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .gc-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .gc-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gc-image-card {
    padding: 10px;
  }
}

/* ============ TOWER PLAN SECTION ============ */
.tp-section {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}

.tp-header {
  margin-bottom: 48px;
}

.tp-header h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.tp-header h2 em {
  font-style: italic;
  color: #1a365d;
  font-weight: 600;
}

.tp-intro {
  font-size: 16.5px;
  line-height: 1.8;
  color: #2d3a30;
  max-width: 860px;
}

.tp-highlight {
  color: #1a365d;
  font-weight: 700;
  background: rgba(26, 54, 93, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(26, 54, 93, 0.12);
}

/* Split Showcase */
.tp-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

/* Left Image Card */
.tp-image-card {
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 48px rgba(26, 54, 93, 0.08);
  position: relative;
  overflow: hidden;
}

.tp-image-card img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.tp-image-card:hover img {
  transform: scale(1.02);
}

.tp-image-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  background: rgba(10, 18, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-image-caption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  color: var(--ivory-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 12px;
}

/* Right 6 Architectural Feature Cards Grid */
.tp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tp-feature-card {
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(26, 54, 93, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.tp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
  border-color: rgba(26, 54, 93, 0.28);
}

.tp-feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 54, 93, 0.07);
  border: 1px solid rgba(26, 54, 93, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tp-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: #1a365d;
}

.tp-feature-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #16241a;
  line-height: 1.25;
}

.tp-feature-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #4b5b51;
}

/* Bottom Spec Ribbon */
.tp-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #ffffff;
  border: 1.5px solid #e8edf2;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(26, 54, 93, 0.04);
}

.tp-ribbon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  border-right: 1px solid #e8edf2;
}

.tp-ribbon-item:last-child {
  border-right: none;
  padding-right: 0;
}

.tp-ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tp-ribbon-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

.tp-ribbon-val {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a365d;
  line-height: 1.2;
}

.tp-ribbon-lbl {
  font-size: 12.5px;
  color: #4b5b51;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .tp-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .tp-ribbon {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-ribbon-item {
    border-right: none;
    border-bottom: 1px solid #e8edf2;
    padding-bottom: 16px;
    padding-right: 0;
  }

  .tp-ribbon-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .tp-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .tp-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tp-image-card {
    padding: 10px;
  }
}

/* ============ SECTION HEADERS ============ */
.sec {
  padding: 88px 0;
}

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}

.sec-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
}

.sec-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sec-tag .line {
  width: 28px;
  height: 1px;
  background: var(--brass);
}

.sec-desc {
  max-width: 420px;
  color: var(--ivory-dim);
  font-size: 15px;
}

/* ============ CONFIGURATIONS (floor plans) ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan-card {
  background: #fff;
  border: 1.5px solid #e8edf2;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 2px 10px rgba(26, 54, 93, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}

.plan-card:hover {
  box-shadow: 0 10px 36px rgba(26, 54, 93, 0.13);
  transform: translateY(-3px);
  border-color: rgba(26, 54, 93, 0.28);
}

/* Card header — light, with a left accent stripe */
.plan-header {
  background: #f7f9fc;
  border-bottom: 1.5px solid #e8edf2;
  border-left: 4px solid #1a365d;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Popular card: top accent stripe instead of full navy bg */
.plan-card.popular .plan-header {
  background: #f0f4fa;
  border-left-color: #1a365d;
  border-top: 3px solid #1a365d;
}

.plan-bhk-badge {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a365d;
  line-height: 1;
}

.plan-type-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a365d;
  background: rgba(26, 54, 93, 0.08);
  border: 1px solid rgba(26, 54, 93, 0.2);
  padding: 4px 10px;
  border-radius: 30px;
}

/* Popular badge variant */
.plan-card.popular .plan-type-tag {
  background: rgba(26, 54, 93, 0.12);
  border-color: rgba(26, 54, 93, 0.3);
  font-weight: 700;
}

/* Card body */
.plan-body {
  padding: 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Price row — minimal, no heavy bg */
.plan-price-row {
  border-left: 3px solid #1a365d;
  border-radius: 0 6px 6px 0;
  background: #f7f9fc;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.plan-price-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 600;
}

.plan-price-value {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a365d;
  line-height: 1.15;
}

/* Popular card price is slightly more prominent */
.plan-card.popular .plan-price-value {
  font-size: 22px;
}

/* Info rows */
.plan-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #edf0f4;
}

.plan-info-row:last-of-type {
  border-bottom: none;
}

.plan-info-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(26, 54, 93, 0.06);
  border: 1px solid rgba(26, 54, 93, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-info-icon svg {
  width: 14px;
  height: 14px;
  stroke: #1a365d;
}

.plan-info-text {
  flex: 1;
}

.plan-info-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a8fa8;
  margin-bottom: 2px;
}

.plan-info-value {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e2d3d;
  line-height: 1.2;
}

/* Feature table */
.plan-features {
  list-style: none;
  margin: 0;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.plan-features li {
  font-size: 13.5px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #edf0f4;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li span:first-child {
  color: #5a7080;
  font-size: 13px;
  font-weight: 500;
}

.plan-features li span:last-child {
  color: #1e2d3d;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  font-weight: 700;
}

/* Card CTA — outline style, not solid fill */
.plan-cta {
  padding: 0 24px 22px;
}

.plan-cta .btn {
  background: transparent;
  color: #1a365d;
  border: 1.5px solid #1a365d;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 8px;
  width: 100%;
  padding: 13px;
  font-size: 14px;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}

.plan-cta .btn:hover {
  background: #1a365d;
  color: #fff;
  transform: translateY(-1px);
}

/* Popular card button — same outline style as all other cards */
.plan-card.popular .plan-cta .btn {
  background: transparent;
  color: #1a365d;
  border: 1.5px solid #1a365d;
}

.plan-card.popular .plan-cta .btn:hover {
  background: #1a365d;
  color: #fff;
}

/* ============ MOBILE PRICE TABLE (Matching Reference Layout) ============ */
.plans-mobile-table-wrap {
  display: none;
  width: 100%;
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #e8edf2;
  box-shadow: 0 6px 20px rgba(26, 54, 93, 0.06);
  background: #ffffff;
}

.plans-mobile-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.plans-mobile-table th {
  background: #1a365d;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.plans-mobile-table th:last-child {
  border-right: none;
}

.plans-mobile-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #e8edf2;
  font-size: 13px;
  vertical-align: middle;
}

.plans-mobile-table tr:last-child td {
  border-bottom: none;
}

.plans-mobile-table tr:nth-child(even) {
  background: #f7f9fc;
}

.plans-mobile-table .cell-type {
  text-align: center;
  width: 28%;
}

.plans-mobile-table .cell-type strong {
  display: block;
  font-size: 14px;
  color: #16241a;
  line-height: 1.2;
}

.plans-mobile-table .cell-type .cell-sub {
  font-size: 11px;
  color: #4b5b51;
  font-family: "IBM Plex Mono", monospace;
}

.plans-mobile-table .cell-area {
  text-align: center;
  width: 32%;
  color: #2d3a30;
  font-weight: 600;
  font-size: 12.5px;
}

.plans-mobile-table .cell-price {
  text-align: center;
  width: 40%;
}

.plans-mobile-table .price-val {
  font-size: 13px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 5px;
  line-height: 1.2;
}

.plans-mobile-table .btn-breakup {
  background: #1a365d;
  color: #ffffff;
  border: none;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  display: inline-block;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 2px 6px rgba(26, 54, 93, 0.2);
}

.plans-mobile-table .btn-breakup:hover {
  background: #2c5282;
}

@media (max-width: 768px) {
  .plans-grid {
    display: none !important;
  }

  .plans-mobile-table-wrap {
    display: block !important;
  }
}

/* Popular card CTA is solid by default */
.plan-card.popular .plan-cta .btn {
  background: #1a365d;
  color: #fff;
}

.plan-card.popular .plan-cta .btn:hover {
  background: #2c5282;
}

@media (max-width: 980px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ AMENITIES ============ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.amenity-card {
  background: var(--panel);
  padding: 30px 24px;
}

.amenity-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
}

.amenity-card h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope";
  margin-bottom: 6px;
}

.amenity-card p {
  font-size: 13px;
  color: var(--ivory-dim);
}

/* ============ GALLERY (Architectural Renders) ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 20px;
}

.gpanel {
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  min-height: 290px;
  border-radius: 14px;
  border: 1.5px solid #e8edf2;
  box-shadow: 0 6px 20px rgba(26, 54, 93, 0.06);
  cursor: pointer;
}

.gpanel.small {
  grid-row: span 1;
}

.gpanel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gpanel:hover img {
  transform: scale(1.06);
}

.gpanel .label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 18, 30, 0.82);
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 2;
}

.gpanel-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 18, 30, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
}

.gpanel:hover .gpanel-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ============ GALLERY LIGHTBOX MODAL ============ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 12, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-modal {
  position: relative;
  max-width: 1050px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.34, 1.26, 0.64, 1);
}

.gallery-lightbox.open .gallery-lightbox-modal {
  transform: scale(1);
}

.gallery-lightbox-modal img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.gallery-lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.15s;
}

.gallery-lightbox-close:hover {
  background: #1a365d;
  border-color: #1a365d;
  transform: scale(1.1);
}

.gallery-lightbox-caption {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 18, 30, 0.9);
  padding: 8px 20px;
  border-radius: 20px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============ LOCATION ============ */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.landmark-list {
  list-style: none;
  margin-top: 22px;
}

.landmark-list li {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}

.landmark-list li:first-child {
  border-top: none;
}

.landmark-list .d {
  font-family: "IBM Plex Mono", monospace;
  color: var(--brass-bright);
  font-size: 13px;
}

.map-frame {
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  position: relative;
  overflow: hidden;
}

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-item {
  background: var(--ink);
  padding: 34px;
  display: flex;
  gap: 20px;
}

.why-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--brass);
  flex-shrink: 0;
  padding-top: 4px;
}

.why-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Manrope";
}

.why-item p {
  font-size: 14px;
  color: var(--ivory-dim);
}

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.testi-stars {
  color: var(--brass);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14.5px;
  color: var(--ivory);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-who {
  font-size: 13px;
  color: var(--ivory-dim);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.testi-who b {
  color: var(--ivory);
  font-weight: 700;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: "Fraunces", serif;
  font-size: 18px;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-q .plus {
  font-family: "IBM Plex Mono", monospace;
  color: var(--brass);
  font-size: 20px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding-bottom: 22px;
  color: var(--ivory-dim);
  font-size: 14.5px;
  max-width: 620px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.final-form {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.final-form h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.final-form .s {
  color: var(--ivory-dim);
  font-size: 13.5px;
  margin-bottom: 22px;
}

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

.form-field {
  grid-column: span 2;
}

.form-row input,
.form-row select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  padding: 13px 14px;
  border-radius: var(--radius);
  font-family: "Manrope";
  font-size: 14px;
}

.form-row input::placeholder {
  color: var(--ivory-dim);
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brass);
}

.form-disclaimer {
  font-size: 11.5px;
  color: var(--ivory-dim);
  margin-top: 12px;
}

/* ============ FOOTER ============ */
footer {
  padding: 56px 0 130px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-col h5 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--brass-bright);
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 11.5px;
  color: var(--ivory-dim);
  line-height: 1.8;
}

/* ============ RESPONSIVE ============ */
/* ============ RESPONSIVE & BREAKPOINTS ============ */

/* Mobile Navigation Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ivory);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--ivory);
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: block;
  }

  nav.main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    z-index: 99;
  }

  nav.main.mobile-active {
    display: flex;
  }

  nav.main a {
    font-size: 15px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(22, 36, 26, 0.06);
  }

  .header-cta .call-chip {
    display: none;
  }

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

  .trust-item:nth-child(3n) {
    border-right: none;
  }

  .trust-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .gpanel {
    grid-row: auto;
    min-height: 280px;
  }

  .gpanel.wide {
    grid-column: span 2;
  }

  .location-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .lead-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-bar-form input {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2n) {
    border-right: none;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 560px) {
  .wrap {
    padding: 0 16px;
  }

  .sec {
    padding: 48px 0;
  }

  h1.hero-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Compact project highlights */
  .spec-strip {
    grid-template-columns: 1fr 1fr;
    border-radius: 9px;
  }

  .spec-item {
    min-width: 0;
    padding: 9px 10px;
  }

  .spec-item .k {
    font-size: 8px;
    letter-spacing: 0.09em;
    margin-bottom: 3px;
    white-space: nowrap;
  }

  .spec-item .v {
    font-size: 13px;
    line-height: 1.15;
  }

  .spec-item .v span {
    font-size: 14px;
  }

  /* Compact price banner */
  .spec-item.primary-spec-item {
    padding: 9px 12px;
    gap: 8px;
  }

  .spec-item.primary-spec-item .k {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .spec-item.primary-spec-item .v {
    font-size: 13px;
    line-height: 1.15;
    text-align: right;
  }

  .spec-item.primary-spec-item .v span {
    font-size: 15px;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
  }

  .gpanel {
    min-height: 260px;
    grid-row: auto;
  }

  .gpanel.wide {
    grid-column: span 1;
  }

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

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

  .form-field {
    grid-column: span 1;
  }

  .enquiry-trigger {
    width: 36px;
    height: 110px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .spec-strip {
    grid-template-columns: 1fr;
  }

  .spec-item {
    padding: 9px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .spec-item .v {
    font-size: 14px;
  }

  .spec-item .v span {
    font-size: 15px;
  }

  .spec-item.primary-spec-item {
    padding: 10px 12px;
  }

  .spec-item.primary-spec-item .v {
    font-size: 14px;
  }

  .spec-item.primary-spec-item .v span {
    font-size: 16px;
  }

  .spec-item:last-child {
    border-bottom: none;
  }

  .po-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Fixed Bottom Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 18, 30, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  padding: 8px 12px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 8px;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
}

.mobile-bottom-bar .mbb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  box-sizing: border-box;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-bar .mbb-item:active {
  transform: scale(0.96);
}

.mobile-bottom-bar .mbb-call {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-bottom-bar .mbb-enquire {
  background: #1a365d;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.5);
}

.mobile-bottom-bar .mbb-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

@keyframes mapPulse {
  0% {
    r: 10px;
    opacity: 0.8;
  }

  100% {
    r: 30px;
    opacity: 0;
  }
}

.glow-circle {
  animation: mapPulse 2s infinite ease-out;
  transform-origin: center;
}
@media (max-width: 560px) {
  .hero-slide,
  .hero-slide.active::after {
    background-position: center 90%;
  }
}
