/* =============================================
   Worli House — Light Luxury Landing Page
   Inspired layout · #F8F4E7 palette
   ============================================= */

:root {
  --color-bg: #F8F4E7;
  --color-bg-alt: #F0EBD8;
  --color-bg-warm: #E8E2D0;
  --color-surface: #FFFFFF;
  --color-border: rgba(44, 36, 25, 0.08);
  --color-border-strong: rgba(44, 36, 25, 0.16);
  --color-text: #1F1A14;
  --color-text-muted: #5C5348;
  --color-text-light: #8A8175;
  --color-bronze: #7A5C1E;
  --color-bronze-mid: #967048;
  --color-bronze-light: #B8956A;
  --color-gold: #C4A265;
  --color-gold-deep: #8B6914;
  --color-accent: #3D3226;
  --font-serif: 'Ceraph Roman', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 80px;
  --radius: 8px;
  --shadow-soft: 0 4px 24px rgba(44, 36, 25, 0.06);
  --shadow-medium: 0 12px 40px rgba(44, 36, 25, 0.1);
  --shadow-gold: 0 8px 32px rgba(139, 105, 20, 0.18);
  /* Spacing scale */
  --space-section: clamp(4rem, 8vw, 4.5rem);
  --space-block: clamp(2rem, 4vw, 3rem);
  --space-element: 1.25rem;
  --space-tight: 0.75rem;
  --hero-image-height: 608px;
}

@font-face {
  font-family: 'Ceraph Roman';
  src: url('../fonts/Ceraph-Roman.eot');
  src: url('../fonts/Ceraph-Roman.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Ceraph-Roman.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(92%, 1200px);
  margin-inline: auto;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s, box-shadow 0.4s;
}

.nav--scrolled {
  background: rgba(248, 244, 231, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(92%, 1240px);
  margin-inline: auto;
}

.nav__brand { display: block; line-height: 0; }

.nav__brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.nav__links { display: flex; gap: 1.75rem; }

.nav__links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.nav__links a:hover { color: var(--color-bronze); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-text);
  border-radius: 0;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav__cta--mobile {
  display: none;
  padding: 0.65rem 1.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-text);
  border-radius: 100px;
}

.nav__cta--desktop { display: flex; }

.nav__cta--desktop {
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #241B14 0%, #463524 100%);
  box-shadow: 0 18px 40px rgba(36, 27, 20, 0.22);
}

.nav__cta--desktop svg {
  transition: transform 0.35s var(--ease-out), opacity 0.35s ease;
  animation: navCtaArrowDrift 2.8s ease-in-out infinite;
}

.nav__cta:hover,
.nav__cta--mobile:hover {
  background: var(--color-gold-deep);
  transform: translateY(-1px);
}

.nav__cta--desktop:hover {
  background: linear-gradient(135deg, #8B6914 0%, #B8956A 100%);
  box-shadow: var(--shadow-gold);
}

.nav__cta--desktop:hover svg {
  transform: translateX(4px);
  animation-play-state: paused;
}

.nav__actions {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.nav__call {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-bg);
  background: linear-gradient(135deg, #8B6914 0%, #B8956A 100%);
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.28);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav__call svg {
  flex-shrink: 0;
  color: var(--color-bg);
  transition: transform 0.3s var(--ease-out);
}

.nav__call:hover {
  background: linear-gradient(135deg, #7A5C1E 0%, #967048 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav__call:hover svg {
  transform: scale(1.08);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 26px;
}

.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--color-text);
  transition: transform 0.3s;
}

@keyframes navCtaArrowDrift {
  0%, 100% { transform: translateX(0); opacity: 0.9; }
  50% { transform: translateX(3px); opacity: 1; }
}

.nav__toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-text);
}

.mobile-menu__cta {
  margin-top: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-text);
  border-radius: 0px;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--nav-height);
  background: var(--color-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__backdrop {
  display: none;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
  width: min(92%, 1240px);
  margin-inline: auto;
  padding: 2.5rem 0 4rem;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  background: rgba(196, 162, 101, 0.12);
  border: 1px solid rgba(196, 162, 101, 0.35);
  border-radius: 100px;
}

.hero__location {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3C465A;
}

.hero__eyebrow-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(170, 135, 100, 0.9), rgba(170, 135, 100, 0.1));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__developer {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-bronze-mid);
  margin-bottom: 0.85rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 1.35rem;
}

.hero__title-word {
  display: block;
  font-size: 90px;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.hero__title-word--accent {
  font-style: italic;
  color: #AA8764;
}

.hero__tagline {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 500px;
  margin-bottom: 1.6rem;
  color: #3C465A;
}

.hero__tagline-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8E8376;
}

.hero__tagline-title {
  font-family: var(--font-serif);
  font-size: 1.58rem;
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: #3C465A;
}

.hero__tagline-end {
  display: block;
  position: relative;
  padding-left: 1.9rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AA8764;
}

.hero__tagline-end::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 1.3rem;
  height: 1px;
  background: rgba(170, 135, 100, 0.75);
}

.hero__cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

@media (min-width: 769px) {
  .hero__cta-panel {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 460px;
  }

  .hero__cta-panel .btn--primary {
    flex: 1 1 100%;
  }

  .hero__cta-panel .btn--gold,
  .hero__cta-panel .btn--outline { display: none; }
}

.hero__stats {
  display: flex;
  gap: 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-strong);
  max-width: 420px;
}

.hero__stat {
  flex: 1;
  padding-right: 1rem;
  border-right: 1px solid var(--color-border);
}

.hero__stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 1rem;
}

.hero__stat:not(:first-child):not(:last-child) {
  padding-inline: 1rem;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-text);
  line-height: 1.2;
  white-space: nowrap;
}

.hero__stat-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 0.2rem;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  isolation: isolate;
}

.hero__frame img,
.hero__frame picture,
.hero__frame picture img {
  width: 100%;
  height: var(--hero-image-height);
  object-fit: cover;
  border-radius: 0 0 0 100px;
  box-shadow: var(--shadow-medium);
  display: block;
  position: relative;
  z-index: 1;
}

.hero__frame-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(196, 162, 101, 0.4);
  border-radius: 0 0 0 60px;
  pointer-events: none;
  z-index: -1;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 10px;
  left: 45%;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3C465A;
}

.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(0deg, rgba(170, 135, 100, 0.9), rgba(170, 135, 100, 0.1));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.btn--hero {
  width: 100%;
  min-height: 52px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border-radius: 0;
  background: linear-gradient(135deg, #241B14 0%, #463524 100%);
  box-shadow: 0 18px 40px rgba(36, 27, 20, 0.26);
}

.btn--hero:hover {
  background: linear-gradient(135deg, #8B6914 0%, #B8956A 100%);
}

.btn--primary {
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-text) 0%, #3D3226 100%);
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-gold-deep) 0%, var(--color-bronze-mid) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--gold {
  color: var(--color-bg);
  background: linear-gradient(135deg, #C4A265 0%, #8B6914 50%, #7A5C1E 100%);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139, 105, 20, 0.28);
  filter: brightness(1.05);
}

.btn--outline {
  color: var(--color-text);
  border: 1.5px solid var(--color-border-strong);
  background: rgba(248, 244, 231, 0.6);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--color-gold-deep);
  color: var(--color-gold-deep);
  background: rgba(196, 162, 101, 0.08);
}

.btn--full { width: 100%; }

.btn[type="submit"].loading,
.btn--submit.loading {
  pointer-events: none;
  background: linear-gradient(135deg, var(--color-gold-deep) 0%, var(--color-bronze-mid) 55%, #6B4F18 100%);
  box-shadow: 0 10px 28px rgba(139, 105, 20, 0.22);
}

.btn[type="submit"].loading .btn__text,
.btn--submit.loading .btn__text {
  opacity: 0;
  visibility: hidden;
}

.btn__loading {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1rem;
}

.btn[type="submit"].loading .btn__loading,
.btn--submit.loading .btn__loading {
  display: flex;
}

.btn__loading-spinner {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(248, 244, 231, 0.28);
  border-top-color: var(--color-gold);
  border-right-color: rgba(196, 162, 101, 0.65);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  flex-shrink: 0;
}

.btn__loading-text {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-bg);
  white-space: nowrap;
  animation: loadingTextShimmer 2.2s ease-in-out infinite;
}

.btn__loading-dots {
  display: inline-flex;
  gap: 0.12rem;
  margin-left: 0.1rem;
}

.btn__loading-dots span {
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: rgba(248, 244, 231, 0.45);
  animation: dotPulse 1.2s ease-in-out infinite;
}

.btn__loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.btn__loading-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-1px); }
}

@keyframes loadingTextShimmer {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

.enquiry-form.is-submitting {
  position: relative;
}

.enquiry-form.is-submitting::before {
  content: '';
  position: absolute;
  inset: -0.35rem;
  border-radius: 12px;
  background: rgba(248, 244, 231, 0.55);
  backdrop-filter: blur(3px);
  z-index: 3;
  pointer-events: none;
  animation: formSubmitFadeIn 0.35s var(--ease-out);
}

.form-submitting-status {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 2rem 1.5rem;
  text-align: center;
  pointer-events: none;
}

.form-submitting-status:not([hidden]) {
  display: flex;
}

.form-submitting-status__spinner {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(122, 92, 30, 0.16);
  border-top-color: var(--color-gold-deep);
  border-right-color: var(--color-bronze-light);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}

.form-submitting-status__text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}

.form-submitting-status__dots {
  display: inline-flex;
  gap: 0.18rem;
  margin-left: 0.1rem;
  padding-bottom: 0.15rem;
}

.form-submitting-status__dots span {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--color-gold-deep);
  animation: dotPulse 1.2s ease-in-out infinite;
}

.form-submitting-status__dots span:nth-child(2) { animation-delay: 0.15s; }
.form-submitting-status__dots span:nth-child(3) { animation-delay: 0.3s; }

.form-submitting-status__sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-bronze-mid);
  animation: loadingTextShimmer 2.4s ease-in-out infinite;
}

@keyframes formSubmitFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Highlights strip ─── */
.highlights {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  overflow: hidden;
}

.highlights__track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.highlights__item {
  flex-shrink: 0;
  padding: 1rem 2.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
  position: relative;
}

.highlights__item::after {
  content: '·';
  position: absolute;
  right: 0;
  color: var(--color-bronze-light);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* duplicate for seamless loop */
.highlights__track::after {
  content: '';
  display: none;
}

/* ─── Sections shared ─── */
.section {
  padding: 6rem 0;
  background: var(--color-bg);
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  margin-bottom: 3rem;
  max-width: 760px;
  position: relative;
  padding-bottom: 1.5rem;
}

.section__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold), transparent);
}

.section__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--color-bronze-mid);
  margin-bottom: 0.5rem;
}

.section__label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.625rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.section__subtitle {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

#architect .section__header,
#developer .section__header {
  max-width: 760px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── Project ─── */
.project__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.project__text p {
  color: var(--color-text-muted);
  margin-bottom: 1.125rem;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
}

.project__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.project__tags li {
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-strong);
  border-radius: 0;
  color: var(--color-bronze);
  font-weight: 500;
}

.project__visual { position: relative; }

.project__visual img {
  width: 100%;
  height: 555px;
  object-fit: cover;
  border-radius: 0 60px 0 0;
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 1;
}

.project__frame-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(196, 162, 101, 0.4);
  border-radius: 0 0 0 0px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Location ─── */
.location__top {
  position: relative;
  margin-bottom: 0.5rem;
}

.location__intro { max-width: 640px; margin-bottom: 2.5rem; }

.location__map {
  margin-bottom: 2.5rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.location__distances {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.dist-card {
  text-align: center;
  padding: 1.5rem 0.75rem;
  border-right: 1px solid var(--color-border);
}

.dist-card:last-child { border-right: none; }

.dist-card__time {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-bronze);
  margin-bottom: 0.25rem;
}

.dist-card__place {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.location__nearby h3 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 2.25rem;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.nearby-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bronze-mid);
  margin-bottom: 0.75rem;
}

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

.nearby-col li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.nearby-col li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #AA8764;
  box-shadow: 0 0 0 4px rgba(170, 135, 100, 0.12);
  flex-shrink: 0;
}

.location__aerial {
  position: relative;
  margin-top: 50px;
  isolation: isolate;
}

.location__aerial img {
  width: 100%;
  height: 555px;
  object-fit: cover;
  border-radius: 60px 0 0 0;
  position: relative;
  z-index: 1;
}

.location__aerial-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(196, 162, 101, 0.4);
  border-radius: 0 0 0 0px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Gallery ─── */
.section--gallery { padding-bottom: 0; }

.gallery { position: relative; }

.gallery__slides {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--color-bg-warm);
  border-radius: 4px 4px 0 0;
  box-shadow: var(--shadow-soft);
}

.gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery__slide.active { opacity: 1; z-index: 1; }

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(44, 36, 25, 0.75), transparent);
  color: #F8F4E7;
}

.gallery__counter {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.gallery__caption h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.gallery__caption p {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 480px;
}

.gallery__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem min(4%, 48px);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-top: none;
}

.gallery__thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.gallery__thumb {
  width: 36px; height: 36px;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all 0.3s;
}

.gallery__thumb.active,
.gallery__thumb:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.gallery__nav-btns { display: flex; gap: 0.5rem; }

.gallery__btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  border-radius: 0px;
  transition: all 0.3s;
}

.gallery__btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

@media (min-width: 1025px) {
  .gallery__slides {
    min-height: 680px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-bottom: none;
    box-shadow: var(--shadow-soft);
  }

  .gallery__slide img {
    width: 66%;
    height: 100%;
  }

  .gallery__caption {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 34%;
    padding: 3rem 3.25rem;
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(248, 244, 231, 0.98));
    color: #4B5976;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .gallery__caption::before {
    content: '';
    width: 82px;
    height: 1px;
    margin-bottom: 2rem;
    background: rgba(196, 162, 101, 0.55);
  }

  .gallery__counter {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    color: rgba(170, 135, 100, 0.92);
    opacity: 1;
    margin-bottom: 1rem;
  }

  .gallery__caption h3 {
    font-size: clamp(2.2rem, 3vw, 3.05rem);
    line-height: 1.08;
    margin-bottom: 0.85rem;
    color: #4B5976;
  }

  .gallery__caption p {
    max-width: 18rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(92, 83, 72, 0.78);
    opacity: 1;
  }

  .gallery__controls {
    padding: 1.25rem 2rem;
  }
}

/* ─── Architect ─── */
.architect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.architect__visual {
  position: relative;
  isolation: isolate;
}

.architect__visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0 0 60px 0;
  position: relative;
  z-index: 1;
}

.architect__frame-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(196, 162, 101, 0.4);
  border-radius: 0 0 0 0;
  pointer-events: none;
  z-index: 0;
}

.architect__role {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bronze-mid);
}

.architect__profile h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0.25rem 0;
}

.architect__firm {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.architect__quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text);
  border-left: 2px solid var(--color-bronze-light);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.architect__content p {
  color: #3C465A;
  margin-bottom: 1.125rem;
  line-height: 1.8;
  font-size: 1.0625rem;
  font-weight: 500;
}

/* ─── Specifications ─── */
.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.spec-card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.spec-card:hover {
  border-color: rgba(196, 162, 101, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.spec-card__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-bronze);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.spec-card__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.spec-card p {
  font-size: 0.9375rem;
  color: #3C465A;
  line-height: 1.65;
  font-weight: 400;
}

.specs__compare h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.compare-table {
  border: 1px solid rgba(196, 162, 101, 0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,244,231,0.96));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.compare-table__head,
.compare-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-size: 0.9rem;
}

.compare-table__head {
  background: rgba(236, 228, 208, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3C465A;
  font-weight: 500;
  border-bottom: 1px solid rgba(196, 162, 101, 0.18);
}

.compare-table__row {
  border-bottom: 1px solid rgba(44, 36, 25, 0.06);
  color: var(--color-text-muted);
}

.compare-table__row:last-child { border-bottom: none; }

.compare-table__row span:first-child {
  color: var(--color-text);
  font-weight: 500;
}

.compare-table__row span:last-child {
  color: var(--color-gold-deep);
  font-weight: 500;
}

/* ─── Amenities ─── */
.amenities {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.amenities__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: opacity 0.5s;
  position: relative;
  z-index: 1;
}

.amenities__visual {
  position: relative;
  isolation: isolate;
}

.amenities__frame-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(196, 162, 101, 0.4);
  border-radius: 0 0 0 0px;
  pointer-events: none;
  z-index: 0;
}

.amenities__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.amenities__tab {
  padding: 0.45rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 0;
  transition: all 0.3s;
}

.amenities__tab.active,
.amenities__tab:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.amenities__panel { display: none; }
.amenities__panel.active { display: block; }

.amenities__counter {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.5rem;
}

.amenities__panel h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.amenities__panel p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-weight: 500;
}

/* ─── Developer ─── */
.developer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.developer__text p {
  color: var(--color-text-muted);
  margin-bottom: 1.125rem;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
}

.developer__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.dev-stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-bronze);
}

.dev-stat__label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.developer__portfolio-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.developer__portfolio-slides {
  position: relative;
  min-height: 458px;
  overflow: hidden;
  background: var(--color-bg-warm);
  box-shadow: var(--shadow-soft);
}

.developer__portfolio-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}

.developer__portfolio-slide.active {
  opacity: 1;
  z-index: 1;
}

.developer__portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.developer__portfolio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.75rem;
  color: #F8F4E7;
  background: linear-gradient(to top, rgba(44, 36, 25, 0.72), transparent);
}

.developer__portfolio-caption span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 0.25rem;
}

.developer__portfolio-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.developer__portfolio-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.developer__portfolio figure { overflow: hidden; }

/* ─── Enquire ─── */
.section--enquire {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 9, 7, 0.78) 0%, rgba(12, 9, 7, 0.64) 34%, rgba(12, 9, 7, 0.4) 62%, rgba(12, 9, 7, 0.52) 100%),
    url('../assets/images/Avighna_Commercial_desktop.webp') center center / cover no-repeat;
  isolation: isolate;
}

.section--enquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 244, 231, 0.04), rgba(248, 244, 231, 0)),
    radial-gradient(circle at 18% 32%, rgba(196, 162, 101, 0.16), transparent 32%),
    linear-gradient(0deg, rgba(10, 7, 5, 0.54), rgba(10, 7, 5, 0.54));
  z-index: -1;
}

.section--enquire .container {
  position: relative;
  z-index: 1;
}

.enquire__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 720px;
}

.enquire__intro {
  max-width: 470px;
  color: #F6F0E2;
}

.section--enquire .section__num {
  color: rgba(212, 174, 116, 0.92);
}

.section--enquire .section__label {
  color: rgba(244, 232, 210, 0.78);
}

.section--enquire .section__title {
  color: #FFF9EF;
  text-shadow: 0 10px 30px rgba(18, 12, 8, 0.18);
}

.section--enquire .lead {
  color: rgba(255, 247, 232, 0.84);
  max-width: 28rem;
}

.enquire__contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.enquire__contact > div {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 241, 215, 0.22);
}

.enquire__contact-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(223, 187, 129, 0.9);
  margin-bottom: 0.35rem;
}

.enquire__contact p,
.enquire__contact a {
  font-size: 0.95rem;
  color: rgba(255, 249, 238, 0.82);
}

.enquire__contact a:hover { color: #F8E2BD; }

.enquire__form-wrap {
  width: min(100%, 580px);
  justify-self: end;
  padding: clamp(1.75rem, 3vw, 2.6rem);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.88), rgba(248, 242, 231, 0.78));
  border: 1px solid rgba(255, 248, 235, 0.4);
  box-shadow: 0 28px 70px rgba(14, 10, 6, 0.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  position: relative;
  border-radius: 0;
}

.enquire__form-wrap::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(167, 129, 77, 0.16);
  border-radius: 0;
  pointer-events: none;
}

/* ─── Forms ─── */
.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(77, 61, 42, 0.82);
  margin-bottom: 0.55rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid rgba(124, 95, 56, 0.16);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-bronze);
  background: rgba(251, 245, 233, 0.95);
  box-shadow: 0 0 0 4px rgba(196, 162, 101, 0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A0784C' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

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

.form-group.error input,
.form-group.error select { border-color: #c45c5c; }

.form-group .error-msg {
  font-size: 0.7rem;
  color: #c45c5c;
  margin-top: 0.3rem;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text);
  transition: background-color 9999s ease-out 0s;
  box-shadow: 0 0 0 1000px #FFFCF6 inset;
}

.form-consent { margin-bottom: 1.25rem; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border: 1px solid #e8b4b4;
  background: #fdf3f3;
  color: #9b3b3b;
}

.form-status[hidden] { display: none; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.65rem;
  color: rgba(77, 61, 42, 0.86);
  line-height: 1.5;
}

.checkbox-label input { position: absolute; opacity: 0; width: 0; height: 0; }

.checkbox-custom {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  border: 1px solid rgba(124, 95, 56, 0.2);
  border-radius: 0;
  position: relative;
  background: rgba(255, 250, 241, 0.7);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--color-text);
  border-color: var(--color-text);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid var(--color-bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: rgba(92, 83, 72, 0.78);
  text-align: center;
}

.section--enquire .btn--primary {
  min-height: 58px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #241B14 0%, #463524 100%);
  box-shadow: 0 18px 40px rgba(36, 27, 20, 0.26);
  border-radius: 0;
}

.section--enquire .btn--primary:hover {
  background: linear-gradient(135deg, #8B6914 0%, #B8956A 100%);
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ─── FAQ (AEO / GEO) ─── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 820px;
}

.faq__item {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq__item[open] {
  border-color: rgba(196, 162, 101, 0.35);
  box-shadow: var(--shadow-soft);
}

.faq__question {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--color-bronze);
  transition: transform 0.3s;
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding: 0 1.25rem 1.15rem;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.faq__answer a {
  color: var(--color-bronze);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer a:hover { color: var(--color-gold-deep); }

/* ─── Footer ─── */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(196, 162, 101, 0.16), transparent 30%),
    linear-gradient(180deg, #F3ECDD 0%, #ECE3CF 100%);
  border-top: 1px solid rgba(122, 92, 30, 0.12);
  color: var(--color-text);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 45%),
    linear-gradient(180deg, rgba(196, 162, 101, 0.05), transparent 30%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__top {
  margin-bottom: 2rem;
}

.footer__logo {
  display: block;
  height: 53px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(92, 83, 72, 0.86);
}

.footer__brand-tag {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(150, 112, 72, 0.9);
}


.footer__body {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 280px);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer__rera,
.footer__qr-card {
  position: relative;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(246, 239, 224, 0.72));
  border: 1px solid rgba(122, 92, 30, 0.12);
  box-shadow: 0 18px 40px rgba(44, 36, 25, 0.08);
}

.footer__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(150, 112, 72, 0.92);
}

.footer__rera-text {
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(61, 50, 38, 0.9);
}

.footer__rera-text strong {
  color: var(--color-bronze);
  font-weight: 500;
}

.footer__rera-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding-bottom: 0.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-bronze);
  border-bottom: 1px solid rgba(122, 92, 30, 0.28);
  transition: color 0.3s, border-color 0.3s;
}

.footer__rera-link:hover {
  color: var(--color-gold-deep);
  border-color: rgba(139, 105, 20, 0.65);
}

.footer__qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}

.footer__qr {
  width: 148px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0;
  background: #fff;
  padding: 0.45rem;
  border: 1px solid rgba(122, 92, 30, 0.12);
}

.footer__qr-card p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(92, 83, 72, 0.82);
}

.footer__legal {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(122, 92, 30, 0.1);
}

.footer__legal p {
  font-size: 0.72rem;
  color: rgba(92, 83, 72, 0.78);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

/* ─── Sticky Download Brochure (desktop) ─── */
.sticky-brochure {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
}

.sticky-brochure__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  padding: 1.35rem 0.7rem 1.85rem;
  background: #FFFFFF;
  border: none;
  border-radius: 22px 0 0 22px;
  box-shadow: -6px 6px 24px rgba(44, 36, 25, 0.12);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.sticky-brochure__btn:hover {
  transform: translateX(-4px);
  box-shadow: -10px 8px 32px rgba(44, 36, 25, 0.16);
}

.sticky-brochure__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4A265 0%, #8B6914 100%);
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(139, 105, 20, 0.28);
}

.sticky-brochure__icon {
  flex-shrink: 0;
}

.sticky-brochure__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5C5348;
  white-space: nowrap;
  line-height: 1;
}

@media (min-width: 769px) {
  .sticky-brochure {
    display: block;
  }
}

/* ─── Sticky CTA ─── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: linear-gradient(135deg, #C4A265, #8B6914);
  border-radius: 0;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}

.sticky-cta__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.sticky-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.sticky-cta__eyebrow {
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.sticky-cta__title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sticky-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal.active { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.54), rgba(20, 14, 10, 0.66)),
    radial-gradient(circle at center, rgba(196, 162, 101, 0.08), transparent 42%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: 1.85rem;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(248, 242, 231, 0.88));
  border: 1px solid rgba(255, 248, 235, 0.45);
  border-radius: 0;
  box-shadow: 0 34px 80px rgba(14, 10, 6, 0.32);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}

.modal.active .modal__panel { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(92, 83, 72, 0.86);
  border: 1px solid rgba(124, 95, 56, 0.16);
  background: rgba(255, 250, 241, 0.7);
  border-radius: 0;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}

.modal__close:hover {
  color: var(--color-text);
  border-color: rgba(139, 105, 20, 0.3);
  background: rgba(255, 247, 232, 0.92);
  transform: rotate(90deg);
}

.modal__header {
  margin-bottom: 1.5rem;
  padding-right: 3.25rem;
}

.modal__header .section__label {
  color: rgba(150, 112, 72, 0.86);
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1.08;
  color: var(--color-text);
}

.modal .form-group label {
  color: #000000;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
  background: #ffffff;
  border: 1px solid rgba(124, 95, 56, 0.16);
  border-radius: 0;
}

.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
  background: rgba(251, 245, 233, 0.95);
  box-shadow: 0 0 0 4px rgba(196, 162, 101, 0.12);
}

.modal .form-group.error input,
.modal .form-group.error select {
  border-color: rgba(196, 92, 92, 0.75);
  box-shadow: 0 0 0 3px rgba(196, 92, 92, 0.08);
}

.modal .form-group .error-msg {
  color: rgba(196, 92, 92, 0.88);
}

.modal .checkbox-label {
  color: rgba(77, 61, 42, 0.86);
}

.modal .checkbox-custom {
  background: rgba(255, 250, 241, 0.72);
}

.modal .btn--primary {
  min-height: 58px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #241B14 0%, #463524 100%);
  box-shadow: 0 18px 40px rgba(36, 27, 20, 0.26);
  border-radius: 0;
}

.modal .btn--primary:hover {
  background: linear-gradient(135deg, #8B6914 0%, #B8956A 100%);
}

@media (min-width: 769px) {
  .modal__panel {
    width: min(100%, 720px);
    padding: 2rem 2.25rem;
  }

  .modal .enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
  }

  .modal .enquiry-form .form-row .form-group {
    margin-bottom: 1rem;
  }

  .modal .enquiry-form > .form-group,
  .modal .enquiry-form > .form-consent,
  .modal .enquiry-form > .btn--primary {
    width: 100%;
  }
}

.modal .form-note {
  color: rgba(92, 83, 72, 0.78);
}

.modal .form-success p {
  color: rgba(92, 83, 72, 0.88);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__layout,
  .project__grid,
  .architect__grid,
  .amenities,
  .developer__grid,
  .enquire__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section--enquire {
    background-position: 62% center;
  }

  .enquire__grid {
    min-height: 0;
    align-items: start;
  }

  .enquire__intro {
    max-width: 100%;
  }

  .enquire__form-wrap {
    max-width: 760px;
    width: 100%;
    justify-self: stretch;
  }

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

  .footer__qr-card {
    max-width: 320px;
    justify-self: start;
  }

  /* Mobile/tablet hero — building visible at top, content below */
  .hero {
    min-height: auto;
    justify-content: flex-start;
  }

  .hero__backdrop {
    display: none;
  }

  .hero__layout {
    width: 100%;
    max-width: 100%;
    padding: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__visual {
    display: block;
    order: -1;
    width: 100%;
    position: relative;
  }

  .hero__visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
  }

  .hero__frame-accent {
    display: none;
  }

  .hero__frame img,
  .hero__frame picture,
  .hero__frame picture img {
    width: 100%;
    height: clamp(240px, 44vh, 420px);
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 0;
    box-shadow: none;
    display: block;
  }

  .hero__copy {
    padding: 1.5rem 4% 1.75rem;
    background: var(--color-bg);
  }

  .hero__cta-panel { max-width: 100%; }
  .hero__stats { max-width: 100%; }

  .project__visual img {
    height: clamp(300px, 55vw, 555px);
  }

  .location__aerial img {
    height: clamp(300px, 58vw, 555px);
  }

  .developer__portfolio-slides {
    min-height: clamp(340px, 58vw, 458px);
  }

  .specs__grid { grid-template-columns: repeat(2, 1fr); }
  .location__distances { grid-template-columns: repeat(3, 1fr); }
  .dist-card:nth-child(3) { border-right: none; }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__links,
  .nav__cta--desktop,
  .nav__cta--mobile { display: none; }

  .nav__actions { display: flex; }
  .nav__toggle { display: flex; }
  .nav__brand-logo { height: 38px; }

  .hero__frame img,
  .hero__frame picture img {
    height: clamp(220px, 40vh, 360px);
    object-position: center 25%;
  }

  .hero__copy {
    padding: 1.15rem 4% 1.25rem;
  }

  .hero__title-word {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .hero__tagline {
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .hero__developer {
    margin-bottom: 0.85rem;
  }

  /* CTAs — compact glass panel */
  .hero__cta-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.85rem;
    background: var(--color-surface);
    border: 1px solid rgba(196, 162, 101, 0.28);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
  }

  .hero__cta-panel .btn--primary {
    grid-column: 1 / -1;
    min-height: 50px;
    font-size: 0.68rem;
  }

  .hero__cta-panel .btn--gold {
    min-height: 46px;
  }

  .hero__cta-panel .btn--outline {
    grid-column: 1 / -1;
    min-height: 44px;
  }

  .hero__stats {
    padding: 0.75rem 0.4rem;
    background: var(--color-bg-alt);
    border-radius: 10px;
    border: 1px solid var(--color-border);
  }

  .hero__stat-value {
    font-size: 1rem;
  }

  .hero__stat-label {
    font-size: 0.5rem;
  }

  .section { padding: 4rem 0; }

  .location__distances { grid-template-columns: repeat(2, 1fr); }
  .dist-card { border-bottom: none; }
  .dist-card:nth-child(2n-1) { border-right: 1px solid var(--color-border); }
  .dist-card:nth-child(n+3) { border-top: 1px solid var(--color-border); }
  .dist-card:nth-child(2n) { border-right: none; }

  .nearby-grid { grid-template-columns: 1fr; }
  .specs__grid { grid-template-columns: 1fr; }

  .compare-table__head { display: none; }
  .compare-table__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem;
  }

  .gallery__controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .gallery__thumbs {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(0.2rem, 1vw, 0.35rem);
    width: 100%;
  }

  .gallery__thumb {
    width: auto;
    height: auto;
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1;
    max-width: 2.35rem;
    font-size: clamp(0.55rem, 2.4vw, 0.7rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gallery__nav-btns { justify-content: center; }

  .developer__portfolio-slider { gap: 0.75rem; }
  .developer__stats {
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .dev-stat {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }
  .dev-stat__label {
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.35;
    letter-spacing: 0.06em;
    font-size: clamp(0.5rem, 2.2vw, 0.65rem);
  }
  .footer__logo { height: 40px; }

  .form-row { grid-template-columns: 1fr; }
  .enquire__form-wrap { padding: 1.5rem; }

  /* Show sticky CTA sooner on mobile — hero already has CTAs */
  .sticky-cta {
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
  }

  .sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .sticky-cta__btn {
    width: 100%;
    justify-content: space-between;
    text-align: left;
    min-height: 64px;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    background: linear-gradient(135deg, #241B14 0%, #463524 100%);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(36, 27, 20, 0.18);
  }

  .sticky-cta__content {
    gap: 0.15rem;
  }

  .sticky-cta__eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    opacity: 0.72;
  }

  .sticky-cta__title {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
  }

  .sticky-cta__icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(248, 236, 207, 0.18);
    background: rgba(255, 255, 255, 0.05);
  }

  .hero__scroll-hint { display: none; }
}

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

  .hero__stats {
    flex-wrap: wrap;
  }

  .hero__stat {
    flex: 1 1 30%;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem;
    text-align: center;
  }

  .hero__stat:last-child {
    border-bottom: none;
    padding-left: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .highlights__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* =============================================
   Typography & Spacing Refresh
   Larger type · balanced rhythm
   ============================================= */

/* Navigation */
.nav__brand-main { font-size: 1.45rem; }
.nav__brand-sub { font-size: 0.72rem; letter-spacing: 0.18em; }
.nav__links a { font-size: 13px; letter-spacing: 0.1em; font-weight: 500; }
.mobile-menu nav a { font-size: 1.6rem; }
.mobile-menu__cta { font-size: 0.8125rem; padding: 0.85rem 2rem; }

/* Hero */
.hero__layout { gap: 3rem; padding: 2rem 0 3rem; }
.hero__badge { font-size: 0.75rem; padding: 0.45rem 1rem; letter-spacing: 0.12em; }
.hero__location { font-size: 14px; letter-spacing: 0.12em; color: #3C465A; }
.hero__title { margin-bottom: 0.75rem; line-height: 0.95; }
.hero__title-word { font-size: 90px; }
.hero__tagline { display: flex; flex-direction: column; gap: 0.35rem; max-width: 500px; margin-bottom: 1.35rem; color: #3C465A; }
.hero__tagline-kicker { font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: #8E8376; }
.hero__tagline-title { font-family: var(--font-serif); font-size: 1.58rem; line-height: 1.04; letter-spacing: -0.018em; color: #3C465A; }
.hero__tagline-end { display: block; position: relative; padding-left: 1.9rem; margin-top: 0.35rem; font-size: 0.82rem; line-height: 1.55; letter-spacing: 0.1em; text-transform: uppercase; color: #AA8764; }
.hero__tagline-end::before { content: ''; position: absolute; left: 0; top: 0.72rem; width: 1.3rem; height: 1px; background: rgba(170, 135, 100, 0.75); }
.hero__cta-panel { gap: 0.75rem; margin-bottom: 1.5rem; max-width: 480px; }
.hero__stats { padding-top: 1.25rem; max-width: 480px; }
.hero__stat-value { font-size: 1.5rem; }
.hero__stat-label { font-size: 0.6875rem; letter-spacing: 0.1em; margin-top: 0.35rem; }

/* Buttons */
.btn { padding: 1rem 1.875rem; font-size: 0.8125rem; letter-spacing: 0.1em; }
.btn--hero { min-height: 54px; font-size: 0.8125rem; }

/* Highlights */
.highlights__item { padding: 1.125rem 2rem; font-size: 0.8125rem; }

/* Sections */
.section { padding: var(--space-section) 0; }
.section__header { margin-bottom: var(--space-block); padding-bottom: 1.25rem; }
.section__num { font-size: 28px; margin-bottom: 0.375rem; }
.section__label { font-size: 14px; letter-spacing: 0.2em; margin-bottom: 0.625rem; }
.section__title { font-size: 56px; line-height: 1.1; }
.section__subtitle { font-size: 1rem; margin-top: 0.625rem; }

/* Project */
.project__grid { gap: 3rem; }
.lead { font-size: 18px; line-height: 1.8; color: var(--color-text-muted); font-weight: 500; }
.project__text p { font-size: 18px; margin-bottom: 1.125rem; line-height: 1.8; font-weight: 500; }
.project__tags { gap: 0.625rem; margin-top: 1.25rem; }
.project__tags li { font-size: 0.75rem; padding: 0.5rem 1.125rem; border-radius: 0; font-weight: 500; }

/* Location */
.location__intro { margin-bottom: 2rem; }
.location__map { margin-bottom: 2rem; }
.location__distances { margin-bottom: 2.5rem; }
.dist-card { padding: 1.25rem 0.875rem; }
.dist-card__time { font-size: 1.625rem; margin-bottom: 0.375rem; }
.dist-card__place { font-size: 0.75rem; letter-spacing: 0.08em; }
.location__nearby h3 { font-size: 38px; margin-bottom: 2.25rem; }
.location__nearby { margin-bottom: 2rem; }
.nearby-grid { gap: 1.75rem; margin-bottom: 2rem; }
.nearby-col h4 { font-size: 0.75rem; margin-bottom: 0.625rem; }
.nearby-col li { font-size: 1rem; padding: 1rem 0; }

/* Gallery */
.section--gallery { padding-bottom: 0; }
.gallery__caption { padding: 2rem; }
.gallery__counter { font-size: 0.75rem; margin-bottom: 0.375rem; }
.gallery__caption h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.gallery__caption p { font-size: 1rem; line-height: 1.6; }
.gallery__controls { padding: 1rem 1.5rem; }
.gallery__thumb { width: 40px; height: 40px; font-size: 0.75rem; }
.gallery__btn { padding: 0.625rem 1.375rem; font-size: 0.75rem; }

/* Architect */
.architect__grid { gap: 3rem; }
.architect__role { font-size: 0.75rem; }
.architect__profile h3 { font-size: 2.25rem; }
.architect__firm { font-size: 1rem; margin-bottom: 1.25rem; }
.architect__quote { font-size: 1.35rem; line-height: 1.7; padding-left: 1.375rem; margin-bottom: 1.25rem; }
.architect__content p { font-size: 1.0625rem; margin-bottom: 1.125rem; color: #3C465A; font-weight: 500; }

/* Specifications */
.specs__grid { gap: 1rem; margin-bottom: 3rem; }
.spec-card { padding: 1.75rem; }
.spec-card__value { font-size: 2.25rem; margin-bottom: 0.375rem; }
.spec-card__label { font-size: 0.75rem; margin-bottom: 0.625rem; }
.spec-card p { font-size: 0.9375rem; line-height: 1.65; color: #3C465A; font-weight: 400; }
.specs__compare h3 { font-size: 1.75rem; margin-bottom: 1.25rem; }
.compare-table__head,
.compare-table__row { padding: 1.125rem 1.375rem; font-size: 0.9375rem; }
.compare-table__head { font-size: 0.75rem; }

/* Amenities */
.amenities { gap: 2.5rem; }
.amenities__tabs { gap: 0.5rem; margin-bottom: 1.25rem; }
.amenities__tab { padding: 0.55rem 1rem; font-size: 0.75rem; border-radius: 0; }
.amenities__counter { font-size: 0.75rem; margin-bottom: 0.375rem; }
.amenities__panel h3 { font-size: 1.75rem; margin-bottom: 0.625rem; }
.amenities__panel p { font-size: 18px; line-height: 1.75; font-weight: 500; }

/* Developer */
.developer__grid { gap: 3rem; }
.developer__text p { font-size: 18px; margin-bottom: 1.125rem; font-weight: 500; }
.developer__stats { gap: 1.75rem; margin-top: 1.5rem; padding-top: 1.5rem; }
.dev-stat__num { font-size: 2rem; }
.dev-stat__label { font-size: 0.75rem; }
.developer__portfolio-slider { gap: 0.875rem; }
.developer__portfolio-controls { justify-content: flex-end; }
.developer__portfolio-caption { padding: 1.25rem 1.5rem; }
.developer__portfolio-caption h3 { font-size: 1.35rem; }
.developer__portfolio-caption span { font-size: 0.75rem; }

/* Enquire & Forms */
.enquire__grid { gap: 3rem; }
.enquire__contact { margin-top: 1.5rem; gap: 1.25rem; }
.enquire__contact-label { font-size: 0.75rem; margin-bottom: 0.25rem; }
.enquire__contact p,
.enquire__contact a { font-size: 1.0625rem; }
.enquire__form-wrap { padding: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; margin-bottom: 0.375rem; }
.form-group input,
.form-group select,
.form-group textarea { padding: 0.875rem 1.125rem; font-size: 1rem; }
.checkbox-label { font-size: 0.65rem; gap: 0.65rem; }
.form-note { font-size: 0.8125rem; margin-top: 0.625rem; }
.form-success h3 { font-size: 2rem; }
.form-success p { font-size: 1.0625rem; }
.modal__title { font-size: 2rem; }
.modal__panel { padding: 2.25rem; }

/* Footer */
.footer { padding: 2.5rem 0 1.75rem; }
.footer__logo { height: 53px; width: auto; }
.footer__brand p { font-size: 0.9375rem; }
.footer__brand-tag { font-size: 0.625rem; }
.footer__legal p { font-size: 0.8125rem; }
.sticky-cta__btn { font-size: 0.8125rem; padding: 0.9375rem 1.625rem; }

/* Mobile refinements */
@media (max-width: 768px) {
  html { font-size: 16px; }

  .hero__layout { padding: 0; gap: 0rem; }
  .hero__copy { padding: 0rem 5% 3rem; }
  .hero__location { font-size: 14px; letter-spacing: 0.12em; color: #3C465A; font-weight: 500; }
  .hero__title-word { font-size: 60px; }
  .hero__tagline { margin-bottom: 1rem; max-width: 100%; gap: 0.28rem; }
  .hero__tagline-kicker { font-size: 0.78rem; letter-spacing: 0.2em; }
  .hero__tagline-title { font-size: 1.38rem; line-height: 1.08; }
  .hero__tagline-end { padding-left: 1.45rem; margin-top: 0.28rem; font-size: 0.82rem; line-height: 1.5; letter-spacing: 0.08em; }
  .hero__tagline-end::before { top: 0.62rem; width: 1rem; }
  .hero__cta-panel {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }
  .hero__cta-panel .btn--primary { min-height: 52px; font-size: 0.8125rem; }
  .hero__cta-panel .btn--gold { min-height: 48px; font-size: 0.8125rem; }
  .hero__cta-panel .btn--outline { min-height: 46px; font-size: 0.8125rem; }
  .hero__stat-value { font-size: 1.125rem; }
  .hero__stat-label { font-size: 0.625rem; }
  .hero__stats {
    padding: 1.25rem 0 0;
    background: none;
    border: none;
    border-radius: 0;
    max-width: 480px;
  }
  .hero__stat {
    padding-right: 1rem;
    padding-left: 0;
    text-align: left;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }
  .hero__stat:last-child {
    padding-left: 1rem;
    border-right: none;
  }

  .section { padding: 3.5rem 0; }
  .section--gallery { padding-bottom: 0; }
  .section__header { margin-bottom: 2rem; }
  .section__title { font-size: 45px; }
  .section__subtitle { font-size: 16px; margin-top: 0.625rem; font-weight: 500; }
  .lead { font-size: 16px; line-height: 1.8; color: var(--color-text-muted); font-weight: 500; }
  .project__text p { font-size: 16px; margin-bottom: 1.125rem; line-height: 1.8; font-weight: 500; }
  .location__nearby h3 { font-size: 29px; margin-bottom: 2.25rem; }
  .architect__content p { font-size: 16px; margin-bottom: 1.125rem; color: #3C465A; font-weight: 500; }
  .specs__compare h3 { font-size: 30px; margin-bottom: 1.25rem; }
  .amenities__panel p { font-size: 16px; line-height: 1.75; font-weight: 500; }
  .developer__text p { font-size: 16px; margin-bottom: 1.125rem; font-weight: 500; }
  .developer__stats {
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .dev-stat {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 0 0.1rem;
  }
  .dev-stat__num {
    white-space: nowrap;
  }
  .dev-stat__label {
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.35;
    letter-spacing: 0.06em;
    font-size: clamp(0.5rem, 2.2vw, 0.65rem);
  }

  .project__grid,
  .architect__grid,
  .amenities,
  .developer__grid,
  .enquire__grid { gap: 2rem; }

  .compare-table__head {
    display: grid;
  }

  .compare-table__row,
  .compare-table__head {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0.75rem;
    padding: 1rem 0.875rem;
  }

  .footer__top {
    margin-bottom: 1.5rem;
  }

  .footer__body {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(246, 239, 224, 0.72));
    border: 1px solid rgba(122, 92, 30, 0.12);
    box-shadow: 0 18px 40px rgba(44, 36, 25, 0.08);
  }

  .footer__rera,
  .footer__qr-card {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .footer__rera-text {
    font-size: 0.95rem;
  }

  .footer__qr-card {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer__qr {
    width: 132px;
  }

  .modal__panel {
    width: min(100%, 100%);
    padding: 1.2rem;
  }

  .modal__header {
    margin-bottom: 1.5rem;
    padding-right: 3rem;
  }

  .modal__title {
    font-size: 1.7rem;
  }

  .modal__close {
    top: 0.9rem;
    right: 0.9rem;
    width: 40px;
    height: 40px;
  }

  .section--enquire {
    background-position: 68% center;
  }

  .section--enquire::before {
    background:
      linear-gradient(180deg, rgba(10, 7, 5, 0.7), rgba(10, 7, 5, 0.42) 36%, rgba(10, 7, 5, 0.76) 100%),
      radial-gradient(circle at 20% 18%, rgba(196, 162, 101, 0.12), transparent 34%);
  }

  .enquire__contact {
    margin-top: 1.5rem;
    gap: 1.1rem;
  }

  .enquire__contact > div {
    padding-top: 1rem;
  }

  .enquire__form-wrap {
    padding: 1.2rem;
    border-radius: 0;
  }

  .enquire__form-wrap::before {
    inset: 10px;
    border-radius: 0;
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1rem;
    border-radius: 0;
  }

  .gallery__caption h3 { font-size: 1.375rem; }
  .gallery__caption p { font-size: 0.9375rem; }
  .gallery__caption { padding: 1.5rem; }

  .gallery__thumbs {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(0.2rem, 1vw, 0.35rem);
    width: 100%;
  }

  .gallery__thumb {
    width: auto;
    height: auto;
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1;
    max-width: 2.35rem;
    font-size: clamp(0.55rem, 2.4vw, 0.7rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
