/* =============================================
   DESIGN SYSTEM - LUXE REALTY
   Aesthetic: Refined Luxury | Dark Gold Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A30;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --white: #F5F0E8;
  --white-muted: #C8C0B0;
  --text-muted: #888880;
  --border: rgba(201,168,76,0.2);
  --border-light: rgba(201,168,76,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.15);
  --radius: 2px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

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

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--black); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

p { color: var(--white-muted); font-weight: 300; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

ul { list-style: none; }

/* =============================================
   UTILITIES
   ============================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

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

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.gold-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

.gold-line.center { margin: 1.5rem auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 80px; }

.section-pad { padding: 7rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: var(--transition);
}

.btn-gold:hover::after { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 3rem; }

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
}

.nav-cta:hover { background: var(--gold); color: var(--black); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.6) 100%);
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.slide-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.slide-title em { font-style: italic; color: var(--gold); }

.slide-sub {
  font-size: 0.9rem;
  color: var(--white-muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.slider-nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.slider-arrow:hover { border-color: var(--gold); color: var(--gold); background: rgba(0,0,0,0.7); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid var(--border);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects-section { background: var(--dark); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.project-card:hover { border-color: var(--border); }

.project-img-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .project-img-wrap img { transform: scale(1.06); }

.project-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  z-index: 2;
}

.project-body {
  padding: 1.8rem;
  background: var(--dark-2);
}

.project-location {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.project-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.project-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
}

.project-meta-item {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.project-meta-item strong {
  display: block;
  color: var(--white);
  font-weight: 400;
  margin-top: 2px;
}

/* Featured Project - larger card */
.project-card.featured {
  grid-column: span 2;
}

.project-card.featured .project-img-wrap {
  aspect-ratio: 16/9;
}

.project-card.featured .project-name { font-size: 2rem; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--black); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.feature-item {
  background: var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.feature-item:hover::before { width: 100%; }
.feature-item:hover { background: var(--dark-2); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }

/* =============================================
   LEAD FORM SECTION
   ============================================= */
.lead-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.lead-section::before {
  content: 'ENQUIRE';
  position: absolute;
  top: -0.2em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 700;
  color: rgba(201,168,76,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}

.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.lead-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }

.lead-info p { font-size: 0.9rem; margin-bottom: 2rem; }

.contact-quick { display: flex; flex-direction: column; gap: 1rem; }

.contact-quick a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.contact-quick a:hover { color: var(--gold); }

.contact-quick .icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* FORM */
.lead-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.form-group select { cursor: pointer; appearance: none; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

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

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

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  background: var(--dark-2);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.author-role { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--text-muted); }

.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.footer-logo span { color: var(--gold); }

.footer-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: 0.75rem; }

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact-item .icon { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

.footer-contact-item p { font-size: 0.82rem; color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.footer-bottom a { color: var(--gold); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
}

.page-title em { font-style: italic; color: var(--gold); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro { background: var(--dark); }
.about-intro .grid-2 { gap: 6rem; }

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 4px solid var(--dark);
}

.about-years {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  text-align: center;
  z-index: 2;
}

.about-years .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.about-years .text { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }

.about-text-content { padding-bottom: 3rem; }

.about-text-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }

.about-text-content p { margin-bottom: 1.2rem; font-size: 0.9rem; }

.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.value-item { display: flex; gap: 1rem; align-items: flex-start; }

.value-icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.value-text h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.3rem; }

.value-text p { font-size: 0.82rem; color: var(--text-muted); }

/* Team */
.team-section { background: var(--black); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.team-card { text-align: center; }

.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1.5rem;
}

.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.team-card:hover .team-img-wrap img { transform: scale(1.04); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay { opacity: 1; }

.team-overlay a {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.team-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; color: var(--white); margin-bottom: 0.3rem; }
.team-role { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* =============================================
   PROJECTS PAGE
   ============================================= */
.project-filters { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.filter-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* PROJECT DETAIL */
.project-detail-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.project-detail-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.project-detail-hero-content {
  position: absolute;
  bottom: 3rem;
  left: 0; right: 0;
}

.project-detail-body { background: var(--dark); }

.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

.gallery-main {
  grid-column: span 2;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-thumb:hover img { transform: scale(1.05); }

.project-description h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin: 2rem 0 1rem;
}

.project-description p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.9; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--white-muted);
}

.amenity-icon { color: var(--gold); font-size: 1rem; }

/* Sidebar */
.project-sidebar { position: sticky; top: 7rem; }

.sidebar-card {
  border: 1px solid var(--border);
  background: var(--dark-2);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.spec-list { display: flex; flex-direction: column; gap: 1rem; }

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
}

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

.spec-key { color: var(--text-muted); }
.spec-val { color: var(--white); font-weight: 400; }

.location-map {
  background: var(--dark-3);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.map-pin { font-size: 2.5rem; color: var(--gold); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--dark); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 3rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.info-block { margin-bottom: 2rem; }

.info-block-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-block-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
}

.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2rem;
}

/* Large contact form */
.contact-form-section .lead-form { gap: 1.5rem; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .project-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .lead-form-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-years { left: 0; top: 0; }
  .section-pad { padding: 4rem 0; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .project-gallery { grid-template-columns: 1fr; }
  .gallery-main { grid-column: span 1; }
  .amenities-grid { grid-template-columns: 1fr; }

  .slide-title { font-size: clamp(2rem, 8vw, 3rem); }
  .slider-arrows { display: none; }

  .container { padding: 0 1.2rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .project-filters { gap: 0.5rem; }
  .filter-btn { padding: 0.5rem 1rem; font-size: 0.62rem; }
}
