

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --venetian:    #862022;
  --teal:        #1A8F8F;
  --deep-teal:   #1A6E6E;
  --gold:        #C4943A;
  --parchment:   #F5EEE4;
  --soft-white:  #FDFAF6;
  --charcoal:    #1C1C1A;
  --taupe:       #6B6056;
  --teal-navy:   #1C3A46;
  --gold-light:  rgba(196,148,58,0.18);
  --teal-10:     rgba(26,143,143,0.10);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--parchment);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
@font-face {
  font-family: 'RomauntGaolines';
  src: url('assets/fonts/RomauntGaolines.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}

.font-display   { font-family: 'RomauntGaolines', serif; }
.font-heading   { font-family: 'Cinzel', serif; }
.font-body      { font-family: 'Raleway', sans-serif; }


/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--teal-navy);
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  display: block;
  margin: 28px 0;
}

.gold-rule.center { margin: 28px auto; }

/* Arch watermark pseudo-element mixin via class */
.arch-bg {
  position: relative;
}
.arch-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/Roman Architecture_.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.arch-bg > * { position: relative; z-index: 1; }

/* Logo watermark */
.logo-watermark {
  position: relative;
  overflow: hidden;
}
.logo-watermark::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -80px;
  background-image: url("assets/logo-element.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(28,58,70,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-logo {
  height: 52px;
  width: auto;
  transition: height 0.4s ease;
}
#navbar.scrolled .nav-logo { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-navy);
  background: var(--gold);
  padding: 10px 22px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: #d4a44a;
  transform: translateY(-1px);
}

/* Mobile enquire button */
.mobile-enquire-btn {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-navy);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none !important;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex !important; }
  .nav-hamburger.is-open { display: none !important; }
  .mobile-enquire-btn { display: inline-flex; }
}

/* Mobile drawer: hidden by default at all sizes */
.nav-mobile-drawer {
  display: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/villa_ai.jpg");
  background-size: cover;
  background-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,58,70,0.35) 0%,
    rgba(28,58,70,0.62) 50%,
    rgba(28,58,70,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'RomauntGaolines', serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: normal;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 22px 0 0;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.55s forwards;
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(245,238,228,0.88);
  margin-top: 22px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease 0.85s forwards;
}

.hero-gold-line {
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 36px auto 0;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.2s forwards;
}

.hero-scroll-cue {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(196,148,58,0.7);
  margin-top: 12px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.5s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Parallax JS hook */
.hero-parallax { will-change: transform; }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
#philosophy {
  background: var(--parchment);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 800px;
}

.philosophy-left {
  padding: 96px 72px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--parchment);
}

.philosophy-left .arch-overlay {
  position: absolute;
  inset: 0;
  background-image: url("assets/Roman Architecture_.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}

.philosophy-poem {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 36px;
}

.philosophy-poem em {
  color: var(--teal);
  font-style: normal;
}

.philosophy-body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--taupe);
  max-width: 460px;
}

.philosophy-right {
  position: relative;
  overflow: hidden;
  height: 800px;
}

.philosophy-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.philosophy-right:hover img { transform: scale(1.0); }

.philosophy-right::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

/* ============================================================
   THE VILLAS
   ============================================================ */
#villas {
  background: var(--soft-white);
  padding: 112px 80px;
  position: relative;
}

.villas-header {
  text-align: center;
  margin-bottom: 72px;
}

.villas-header .section-title { font-size: clamp(26px, 3.5vw, 38px); }

.villas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.vdo-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1200px;
  margin: 2px auto;
}
.vdo-card {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  cursor: default;
    width: 100%;
    height: 620px;
}
.vdo-card video {
    height: 100%;
    width: 100%;
}
.villa-card-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.villa-card-img img {
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.villa-card:hover .villa-card-img img { transform: scale(1.05); }

.villa-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,58,70,0.92) 0%, rgba(28,58,70,0.2) 60%, transparent 100%);
}

.villa-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 40px 44px;
  z-index: 2;
}

.villa-type {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.villa-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.villa-specs-inline {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.villa-spec-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.villa-spec-val {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.villa-spec-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.villa-divider {
  width: 1px;
  height: 36px;
  background: rgba(196,148,58,0.45);
  align-self: center;
}

.villa-card-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
}

/* ============================================================
   ARCHITECTURE
   ============================================================ */
#architecture {
  background: var(--teal-navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.arch-top-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.arch-inner {
  padding: 100px 80px 80px;
  position: relative;
  z-index: 1;
}

.arch-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.arch-header-left .section-title {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 40px);
}
.arch-header-left .section-eyebrow { color: var(--gold); }

.arch-header-right {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(245,238,228,0.72);
  padding-top: 48px;
}

/* Render scroll gallery */
.render-gallery {
  position: relative;
  overflow: hidden;
}
.render-gallery-track {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.render-gallery-track::-webkit-scrollbar { display: none; }
.render-gallery-track.is-dragging { cursor: grabbing; }
.render-gallery-slide {
  flex: 0 0 calc(75vw - 80px);
  max-width: 920px;
  height: 520px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.render-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.render-gallery-slide:hover img { transform: scale(1.03); }
.render-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.render-dot {
  width: 28px;
  height: 2px;
  background: rgba(196,148,58,0.3);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  border: none;
  padding: 0;
}
.render-dot.active {
  background: var(--gold);
  width: 44px;
}
.render-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(28,58,70,0.72);
  border: 1px solid rgba(196,148,58,0.4);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  backdrop-filter: blur(4px);
}
.render-arrow:hover { background: rgba(28,58,70,0.96); }
.render-arrow.prev { left: 16px; }
.render-arrow.next { right: 16px; }

.arch-bottom-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-top: 80px;
}

/* ============================================================
   VILLA SPECS
   ============================================================ */
#specs {
  background: var(--parchment);
  padding: 112px 80px;
  position: relative;
}

.specs-header {
  text-align: center;
  margin-bottom: 72px;
}
.specs-header .section-title { font-size: clamp(24px, 3vw, 36px); }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.spec-card {
  background: var(--soft-white);
  padding: 40px 28px 36px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-card:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-3px);
}

.spec-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  color: var(--teal);
}

.spec-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-title {
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-navy);
  margin-bottom: 10px;
}

.spec-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--taupe);
}

/* ============================================================
   PROJECT FEATURES STRIP
   ============================================================ */
#project-features {
  background: var(--teal-navy);
  border-top: 1px solid rgba(196,148,58,0.2);
  border-bottom: 1px solid rgba(196,148,58,0.2);
  padding: 28px 80px;
}
.pf-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
.pf-item {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,238,228,0.65);
  white-space: nowrap;
  padding: 4px 0;
}
.pf-divider {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.5;
  line-height: 1;
}
@media (max-width: 768px) {
  #project-features { padding: 24px 20px; }
  .pf-inner { gap: 8px 16px; }
  .pf-item { font-size: 9px; letter-spacing: 0.18em; white-space: normal; text-align: center; }
  .pf-divider { display: none; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
#amenities {
  background: var(--soft-white);
  padding: 112px 80px;
  position: relative;
}

.amenities-header {
  text-align: center;
  margin-bottom: 72px;
}
.amenities-header .section-title { font-size: clamp(22px, 2.8vw, 34px); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-card {
  background: var(--deep-teal);
  border: 1px solid rgba(196,148,58,0.2);
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(28,58,70,0.22), 0 0 0 1px var(--gold);
}

.amenity-img {
  height: 220px;
  overflow: hidden;
}
.amenity-img img {
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.amenity-card:hover .amenity-img img { transform: scale(1.07); }

.amenity-body {
  padding: 28px 28px 32px;
}

.amenity-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.amenity-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(245,238,228,0.72);
}

.amenity-gold-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 0;
}

/* ============================================================
   FLOOR PLANS
   ============================================================ */
#floorplans {
  background: var(--teal-navy);
  padding: 112px 80px;
  position: relative;
}

.floorplans-header {
  text-align: center;
  margin-bottom: 64px;
}
.floorplans-header .section-title { color: #fff; font-size: clamp(22px, 2.8vw, 34px); }
.floorplans-header .section-eyebrow { color: var(--gold); }

.fp-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  border: 1px solid rgba(196,148,58,0.3);
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.fp-tab {
  flex: 1;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 14px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  position: relative;
}

.fp-tab.active {
  background: var(--gold);
  color: var(--teal-navy);
}

.fp-tab:not(.active):hover { color: rgba(255,255,255,0.8); }

.fp-panel {
  display: none;
}
.fp-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease;
}

.fp-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,148,58,0.2);
}
.fp-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fp-image:hover img { transform: scale(1.04); }

.fp-details {}

.fp-villa-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.fp-villa-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(245,238,228,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

/* 2-column spec grid */
.fp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(196,148,58,0.2);
  border-left: 1px solid rgba(196,148,58,0.08);
}

.fp-spec-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(196,148,58,0.1);
  border-right: 1px solid rgba(196,148,58,0.08);
}

.fp-spec-key {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.fp-spec-val {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
}

.fp-spec-val .unit {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-left: 2px;
}

/* ============================================================
   NEW FLOOR PLANS SECTION
   ============================================================ */
#floorplans-new {
  background: var(--teal-navy);
  position: relative;
}
.fpnew-inner {
  padding: 100px 80px 80px;
}
.fpnew-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Outer tabs */
.fpnew-tabs {
  display: flex;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto 64px;
  border: 1px solid rgba(196,148,58,0.3);
}
.fpnew-tab {
  flex: 1;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}
.fpnew-tab.active {
  background: var(--gold);
  color: var(--teal-navy);
}
.fpnew-tab:not(.active):hover { color: rgba(255,255,255,0.8); }

/* Panels */
.fpnew-panel { display: none; }
.fpnew-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* 3-column grid of floor plan images */
.fpnew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.fpnew-floor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.fpnew-img-wrap {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,148,58,0.2);
  padding: 16px;
  transition: border-color 0.3s ease;
}
.fpnew-img-wrap:hover { border-color: rgba(196,148,58,0.5); }
.fpnew-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* portrait images: constrain max height */
  max-height: 560px;
}
.fpnew-floor-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 18px 0 0;
}

/* Mobile */
@media (max-width: 768px) {
  .fpnew-inner { padding: 72px 20px 56px; }
  .fpnew-grid { grid-template-columns: 1fr; gap: 40px; }
  .fpnew-tabs { max-width: 100%; }
  .fpnew-tab { font-size: 10px; letter-spacing: 0.14em; padding: 12px 14px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fpnew-inner { padding: 80px 40px 64px; }
  .fpnew-grid { gap: 20px; }
}

/* ============================================================
   LOCATION
   ============================================================ */
#location {
  position: relative;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.location-left {
  background: var(--parchment);
  padding: 96px 72px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.location-left .arch-bg::before { opacity: 0.04; }

.location-points {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.location-point-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.location-point-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.location-point-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-navy);
  margin-bottom: 6px;
}
.location-point-text p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--taupe);
}

.location-connectivity {
  margin-top: 44px;
  padding: 24px 28px;
  background: var(--soft-white);
  border-left: 2px solid var(--gold);
}
.location-connectivity p {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}
.location-connectivity strong {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--teal-navy);
  line-height: 1.7;
  display: block;
}

.location-right {
  position: relative;
  overflow: hidden;
}
.location-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.location-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245,238,228,0.15) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.location-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}

/* ============================================================
   WHY INVEST
   ============================================================ */
#invest {
  background: var(--parchment);
  padding: 112px 80px;
  position: relative;
}

.invest-header {
  text-align: center;
  margin-bottom: 72px;
}
.invest-header .section-title { font-size: clamp(22px, 2.8vw, 34px); }

.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.invest-card {
  background: var(--soft-white);
  padding: 44px 36px;
  border-top: 1px solid rgba(196,148,58,0.15);
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.invest-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.invest-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.invest-title {
  font-family: 'Cinzel', serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-navy);
  margin-bottom: 14px;
  line-height: 1.4;
}

.invest-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--taupe);
}

/* ============================================================
   DEVELOPER
   ============================================================ */
#developer {
  background: var(--deep-teal);
  padding: 96px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#developer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/Roman Architecture_.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}

.dev-top-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 72px;
}
.dev-bottom-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-top: 72px;
}

.developer-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 36px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.developer-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.developer-sub {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}

.developer-copy {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245,238,228,0.8);
  max-width: 680px;
  margin: 0 auto;
}

.developer-stats {
  display: flex;
  justify-content: center;
  gap: 72px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(196,148,58,0.2);
}

.dev-stat-val {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  display: block;
}
.dev-stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   CTA
   ============================================================ */
#cta {
  background: var(--teal-navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1414016642750-7fdd7b806433?w=1600&q=85&fit=crop");
  background-size: cover;
  background-position: center 40%;
  opacity: 0.18;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Left panel */
.cta-left {
  padding: 96px 72px 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(196,148,58,0.2);
}

.cta-title {
  font-family: 'RomauntGaolines', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  color: #fff;
  font-weight: normal;
  line-height: 1.08;
  margin: 20px 0;
}

.cta-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(245,238,228,0.68);
  margin-bottom: 0;
  line-height: 1.75;
}

.cta-contact-info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cta-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-contact-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.cta-contact-val {
  font-family: 'Raleway', sans-serif;
  font-variant-numeric: lining-nums;
  font-weight: 400;
  font-size: 14.5px;
  color: rgba(255,255,255,0.82);
}
.cta-link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.cta-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.sv-logo {
    width: 20%;
    margin-bottom: 4px;
    transition: opacity 0.3s ease;
}
.cta-dev-logo {
  width: 20%;
  margin-top: 6px;
  transition: opacity 0.3s ease;
}
.cta-dev-logo:hover { opacity: 1; }

/* Right panel: inline form */
.cta-right {
  padding: 80px 80px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(28,58,70,0.45);
  backdrop-filter: blur(2px);
}

.cta-form-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.cta-form-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.cta-form-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form .form-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,238,228,0.55);
}

.cta-form .form-input {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,148,58,0.25);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
  border-radius: 0;
}
.cta-form .form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.cta-form .form-input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form .form-input option { background: var(--teal-navy); color: #fff; }

.cta-form-submit {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-navy);
  background: var(--gold);
  padding: 15px;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cta-form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cta-form-submit:hover::before { transform: scaleX(1); }
.cta-form-submit:hover { transform: translateY(-1px); }

.cta-form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.cta-form-success .s-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.cta-form-success .s-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}
.cta-form-success h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cta-form-success p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  color: rgba(245,238,228,0.65);
  line-height: 1.7;
}

/* CTA btn (kept for floor plan "Request Brochure") */
.cta-btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-navy);
  background: var(--gold);
  padding: 18px 52px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.cta-btn:hover::before { transform: scaleX(1); }
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196,148,58,0.35);
}

/* ============================================================
   FOOTER BAR (minimal)
   ============================================================ */
#footer-bar {
  background: var(--teal-navy);
  border-top: 1px solid rgba(196,148,58,0.2);
  padding: 20px 40px;
}
.footer-bar-inner {
  text-align: center;
}
.footer-rera-bar {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
    .social-logo{
        width:32px;
        height: 32px;
    }

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,58,70,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--parchment);
  max-width: 520px;
  width: 100%;
  padding: 60px 52px;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#modal-overlay.open .modal-box { transform: scale(1); }

.modal-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/Roman Architecture_.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--taupe);
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}
.modal-close:hover { color: var(--charcoal); }

.modal-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--teal-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.modal-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--taupe);
  margin-bottom: 36px;
  line-height: 1.6;
}

.modal-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form-input {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--charcoal);
  background: var(--soft-white);
  border: 1px solid rgba(107,96,86,0.2);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  border-radius: 0;
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,143,143,0.1);
}
.form-input::placeholder { color: rgba(107,96,86,0.5); }

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

.form-submit {
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-white);
  background: var(--teal-navy);
  padding: 16px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  width: 100%;
}
.form-submit:hover {
  background: var(--deep-teal);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success .success-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success .success-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.form-success h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--teal-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-success p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.7;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #navbar { padding: 18px 32px; }
  #navbar.scrolled { padding: 12px 32px; }
  .nav-links { gap: 24px; }

  #villas, #specs, #amenities, #floorplans, #invest, #developer {
    padding-left: 40px; padding-right: 40px;
  }
  #architecture .arch-inner { padding: 80px 40px 60px; }
  #location .location-left { padding: 80px 40px 80px 40px; }
  #cta .cta-inner { grid-template-columns: 1fr; }
  #cta .cta-left { padding: 72px 40px 56px; border-right: none; border-bottom: 1px solid rgba(196,148,58,0.2); }
  #cta .cta-right { padding: 56px 40px 72px; }
  #footer { padding: 56px 40px 32px; }

  .villas-grid { gap: 3px; }
  .render-gallery-slide { height: 340px; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-panel.active { grid-template-columns: 1fr; gap: 36px; }
  .fp-specs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 16px 20px; }
  #navbar.scrolled { padding: 12px 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile nav drawer */
  .nav-mobile-drawer {
    display: flex;
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--teal-navy);
    z-index: 1010;
    padding: 80px 40px 40px;
    transition: right 0.4s cubic-bezier(0.22,1,0.36,1);
    flex-direction: column;
    gap: 28px;
  }
  .nav-mobile-drawer.open { right: 0; }
  .nav-mobile-drawer a {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    display: block;
    transition: color 0.3s;
  }
  .nav-mobile-drawer a:hover { color: #fff; }
  .nav-mobile-close {
    position: absolute;
    top: 22px; right: 20px;
    font-size: 22px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    background: none;
    border: none;
  }

  #philosophy { grid-template-columns: 1fr; }
  .philosophy-left { padding: 72px 28px; }
  .philosophy-right { height: 480px; min-height: unset; }

  #villas { padding: 72px 20px; }
  .villas-grid { grid-template-columns: 1fr; }
  .villa-card-img { height: 340px; }

  #architecture .arch-inner { padding: 72px 20px 56px; }
  .arch-header { grid-template-columns: 1fr; gap: 28px; }
  .render-gallery-slide { flex: 0 0 85vw; height: 260px; }
  .render-arrow { display: none; }

  #specs { padding: 72px 20px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }

  #amenities { padding: 72px 20px; }
  .amenities-grid { grid-template-columns: 1fr; }

  #floorplans { padding: 72px 20px; }
  .fp-panel.active { grid-template-columns: 1fr; gap: 28px; }
  .fp-image img { height: 280px; }
  .fp-specs-grid { grid-template-columns: 1fr 1fr; }

  #location { grid-template-columns: 1fr; }
  .location-left { padding: 72px 28px; }
  .location-right { height: 320px; }

  #invest { padding: 72px 20px; }
  .invest-grid { grid-template-columns: 1fr; }

  #developer { padding: 72px 20px; }
  .developer-stats { gap: 36px; flex-wrap: wrap; }

  #cta .cta-inner { grid-template-columns: 1fr; }
  #cta .cta-left { padding: 60px 24px 48px; border-right: none; border-bottom: 1px solid rgba(196,148,58,0.2); }
  #cta .cta-right { padding: 48px 24px 64px; }
  .cta-contact-info { gap: 18px; }

  #footer { padding: 56px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .modal-box { padding: 44px 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .developer-stats { flex-direction: column; align-items: center; gap: 28px; }
}
