/* =========================================================
   THE UPTOWN — Master Stylesheet
   Design: Real estate luxury / warm Mediterranean residential
   Palette: Brown #4A3728 | Terracotta #C17B4A | Gold #C9A84C | Cream #F8F6F2
   Fonts: Playfair Display (headings) | Inter (body)
   ========================================================= */

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

:root {
  --navy:        #4A3728;
  --navy-light:  #6B5344;
  --gold:        #C17B4A;
  --gold-light:  #D4956A;
  --cream:       #F8F6F2;
  --white:       #FFFFFF;
  --charcoal:    #2D2D2D;
  --gray:        #6B7280;
  --light-gray:  #E8E8E8;
  --green:       #2D5A3D;
  --accent-gold: #C9A84C;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(74,55,40,0.10);
  --shadow-lg:   0 12px 48px rgba(74,55,40,0.18);
  --trans:       all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.8;
}

.section-cta-wrap { text-align: center; margin-top: 56px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,123,74,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(74, 55, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--trans);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--trans);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #4A3728 0%, #6B5344 30%, #8B7355 60%, #4A3728 100%);
  background-size: 400% 400%;
  animation: bgShift 12s ease infinite;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Grid pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193,123,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193,123,74,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(193,123,74,0.8), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== NEIGHBORHOOD ===== */
.neighborhood-section { background: var(--cream); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border-bottom: 3px solid transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== PROPERTY INTRO ===== */
.property-intro-section { background: var(--white); }

.property-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.property-intro-image {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.prop-img-box {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, #6B5344 50%, #8B7355 100%);
  display: flex;
  align-items: flex-end;
  padding: 48px;
}

/* Decorative building pattern */
.prop-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(193,123,74,0.06) 40px, rgba(193,123,74,0.06) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(193,123,74,0.06) 60px, rgba(193,123,74,0.06) 61px);
}

.prop-img-label {
  position: relative;
  z-index: 1;
  background: rgba(193,123,74,0.2);
  border: 1px solid rgba(193,123,74,0.5);
  border-radius: var(--radius);
  padding: 20px 28px;
  backdrop-filter: blur(10px);
}

.prop-img-label span {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.prop-img-label small { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }

.property-intro-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.property-intro-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.85;
}

.property-intro-content .btn { align-self: flex-start; margin-top: 12px; }

/* ===== AMENITIES ===== */
.amenities-section { background: var(--white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-item {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.amenity-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--trans);
}

.amenity-item:hover {
  background: var(--cream);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.amenity-item:hover::before { transform: scaleX(1); }

.amenity-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.amenity-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.amenity-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== LIFESTYLE ===== */
.lifestyle-section { background: var(--navy); }
.lifestyle-section .section-label { color: var(--gold); }
.lifestyle-section .section-title { color: var(--white); }

.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifestyle-text > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.85;
}

.lifestyle-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lifestyle-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.li-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lifestyle-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.lifestyle-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Lifestyle visual card stack */
.lifestyle-visual { position: relative; height: 420px; }

.lc {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(193,123,74,0.3);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--trans);
}

.lc strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.lc small { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.lc-1 { top: 20px; left: 0; right: 60px; }
.lc-2 { top: 130px; right: 0; left: 60px; }
.lc-3 { top: 240px; left: 20px; right: 80px; }
.lc-4 { top: 330px; right: 20px; left: 100px; }

.lc:hover {
  background: rgba(193,123,74,0.15);
  border-color: var(--gold);
  transform: scale(1.02);
}

/* ===== MAP ===== */
.map-section { background: var(--cream); padding-top: 80px; }
.map-section .section-title { color: var(--navy); }

.map-wrapper {
  margin-top: 40px;
  border-radius: 0;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.map-wrapper iframe { display: block; width: 100%; height: 450px; }

.map-points-bar {
  background: var(--navy);
  padding: 32px 0;
}

.map-points-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.map-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: default;
}

.map-point > span { font-size: 1.6rem; }

.map-point div { display: flex; flex-direction: column; }
.map-point strong { font-size: 0.85rem; color: var(--white); }
.map-point small { font-size: 0.75rem; color: var(--gold); }

.map-point:hover { background: rgba(193,123,74,0.1); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border: 1px solid transparent;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured-t {
  background: var(--navy);
  border-color: var(--gold);
}

.testimonial-card.featured-t::before { color: var(--gold); opacity: 0.4; }
.testimonial-card.featured-t p { color: rgba(255,255,255,0.85); }
.testimonial-card.featured-t .t-author strong { color: var(--white); }
.testimonial-card.featured-t .t-author small { color: var(--gold); }

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.t-author div { display: flex; flex-direction: column; }
.t-author strong { color: var(--navy); font-size: 0.95rem; }
.t-author small { color: var(--gray); font-size: 0.8rem; }

/* ===== FLOOR PLANS ===== */
.floorplans-section { background: var(--white); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plan-card.plan-featured {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--white);
}

.plan-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 4px 14px;
  margin-bottom: 28px;
}

.plan-badge.popular-badge {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.plan-icon { font-size: 3rem; margin-bottom: 16px; }

.plan-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.plan-card.plan-featured h3 { color: var(--white); }

.plan-size {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.plan-card.plan-featured .plan-size { color: rgba(255,255,255,0.6); }

.plan-price {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.plan-card.plan-featured .plan-price { color: var(--white); }

.plan-price strong {
  font-size: 1.6rem;
  font-family: var(--font-head);
}

.plan-card ul {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card ul li {
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
}

.plan-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.plan-card.plan-featured ul li { color: rgba(255,255,255,0.75); }

.plan-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-section { background: var(--cream); }

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  transition: var(--trans);
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--trans);
  font-weight: 300;
  line-height: 1;
}

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

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

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

.faq-a p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

/* ===== FINAL CTA ===== */
.final-cta-section {
  position: relative;
  background: var(--navy);
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(193,123,74,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(193,123,74,0.10) 0%, transparent 50%);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193,123,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193,123,74,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-content .hero-btns { justify-content: center; }

/* ===== FOOTER ===== */
.site-footer {
  background: #2E1F15;
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-main { font-size: 1.3rem; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }

.office-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.45) !important;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .area-showcase { grid-template-columns: 1fr !important; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .map-points-grid { grid-template-columns: repeat(3, 1fr); }
  .property-intro-inner { grid-template-columns: 1fr; }
  .property-intro-image { min-height: 300px; }
  .property-intro-content { padding: 56px 40px; }
  .lifestyle-inner { grid-template-columns: 1fr; gap: 50px; }
  .lifestyle-visual { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(74, 55, 40, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--trans);
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 28px; text-align: center; }
  .main-nav a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .plans-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .map-points-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-headline { font-size: 2.2rem; }
  .lc-2, .lc-4 { display: none; }
  .lifestyle-visual { height: 200px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }
  .amenities-grid { grid-template-columns: 1fr; }
  .map-points-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-actions { flex-direction: column; }
}
