:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #FDF8EE;
  --dark: #0F1419;
  --dark-2: #1A2230;
  --dark-3: #243040;
  --white: #FFFFFF;
  --cream: #FAFAF7;
  --gray: #6B7B8D;
  --gray-light: #EEF0F3;
  --accent: #E8402A;
  --shadow: 0 4px 32px rgba(15,20,25,0.10);
  --shadow-lg: 0 12px 60px rgba(15,20,25,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

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

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(15,20,25,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: var(--transition) !important;
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: rgba(15,20,25,0.98); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid rgba(201,168,76,0.2); }
  nav.open { display: flex; }
  .mobile-menu-btn { display: block; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Architectural line pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Diagonal gold accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55%;
  height: 140%;
  background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(135deg, #1a2a1a 0%, #243040 50%, #1A2230 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}

.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='400' height='600' viewBox='0 0 400 600' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='40' y='50' width='140' height='180' rx='4' fill='%23C9A84C' opacity='0.06'/%3E%3Crect x='220' y='80' width='140' height='250' rx='4' fill='%23C9A84C' opacity='0.06'/%3E%3Crect x='40' y='270' width='90' height='120' rx='4' fill='%23C9A84C' opacity='0.04'/%3E%3Crect x='150' y='360' width='210' height='160' rx='4' fill='%23C9A84C' opacity='0.06'/%3E%3Cline x1='40' y1='420' x2='360' y2='420' stroke='%23C9A84C' stroke-width='0.5' opacity='0.15'/%3E%3Cline x1='40' y1='450' x2='360' y2='450' stroke='%23C9A84C' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='185' y1='50' x2='185' y2='420' stroke='%23C9A84C' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 48px 80px;
  max-width: 700px;
  animation: heroIn 1s ease forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
}

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

.hero p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 40px;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== SEARCH BAR ===== */
.search-section {
  background: var(--dark-2);
  padding: 0 48px;
  position: relative;
  z-index: 10;
}

.search-bar {
  background: var(--white);
  border-radius: 8px;
  padding: 6px 6px 6px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  transform: translateY(-28px);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 140px;
}

.search-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.search-field select,
.search-field input {
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  width: 100%;
}

.search-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-light);
  flex-shrink: 0;
}

.btn-search-main {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 16px 28px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-search-main:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .search-section { padding: 0 20px; }
  .search-bar { flex-direction: column; padding: 16px; transform: translateY(-20px); }
  .search-field { width: 100%; }
  .search-divider { display: none; }
  .btn-search-main { width: 100%; justify-content: center; }
}

/* ===== SECTION COMMONS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
}

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

.section-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 14px;
}

/* ===== FEATURED PROPERTIES ===== */
.properties-section {
  padding: 80px 48px;
  background: var(--cream);
}

.props-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--gray);
  padding: 8px 18px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

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

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

.prop-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.04);
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.prop-card.featured {
  grid-column: span 2;
}

@media (max-width: 640px) { .prop-card.featured { grid-column: span 1; } }

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

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

.prop-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.prop-card:hover .prop-img-bg { transform: scale(1.05); }

.prop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.prop-badge.premium { background: var(--gold); color: var(--dark); }
.prop-badge.new-launch { background: var(--dark); color: var(--white); }

.prop-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.prop-wishlist:hover { background: white; transform: scale(1.1); }

.prop-info {
  padding: 22px 24px;
}

.prop-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.prop-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  margin-left: 4px;
}

.prop-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.prop-location {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.prop-specs {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.prop-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
}

.prop-spec-icon { font-size: 15px; }

/* Property image gradients as stand-ins */
.img-1 { background: linear-gradient(145deg, #2C3E50 0%, #3D5A80 40%, #1a3a5c 100%); }
.img-2 { background: linear-gradient(145deg, #1a3020 0%, #2d5a3d 40%, #3a7a50 100%); }
.img-3 { background: linear-gradient(145deg, #4a1942 0%, #7b2d6e 40%, #a83d90 100%); }
.img-4 { background: linear-gradient(145deg, #2a1a08 0%, #6b3f12 40%, #9c6228 100%); }
.img-5 { background: linear-gradient(145deg, #0d2b3e 0%, #1a4a6e 40%, #2a6a9e 100%); }

/* SVG building illustrations in property cards */
.prop-svg-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.25;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--dark);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
  .properties-section { padding: 60px 20px; }
  .hero-content { padding: 120px 20px 60px; }
  .hero-stats { gap: 24px; }
}

/* ===== WHY US ===== */
.why-section {
  padding: 100px 48px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-section { padding: 60px 20px; }
}

.why-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--dark-2), var(--dark-3));
}

.why-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.why-visual-stat {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
}

.why-visual-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.why-visual-stat-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Building illustration inside why card */
.why-building {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.12;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.feature-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,168,76,0.1); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== TEAM ===== */
.team-section {
  padding: 100px 48px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.team-section .section-title { color: var(--white); }

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

.team-card {
  background: var(--dark-2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  cursor: pointer;
}

.team-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.team-avatar {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.team-avatar img{ width: 100% }

.team-avatar-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(201,168,76,0.4);
  position: relative;
}

.t1 { background: linear-gradient(145deg, #1a2235, #243050); }
.t2 { background: linear-gradient(145deg, #1a2520, #243530); }
.t3 { background: linear-gradient(145deg, #251a1a, #3a2525); }
.t4 { background: linear-gradient(145deg, #1a1a25, #252535); }
.t5 { background: linear-gradient(145deg, #201a25, #302535); }
.t6 { background: linear-gradient(145deg, #251a20, #352530); }
.t7 { background: linear-gradient(145deg, #1a2520, #253530); }
.t8 { background: linear-gradient(145deg, #251a1a, #352520); }

.team-avatar-ring {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-avatar-ring { opacity: 1; }

.team-info {
  padding: 18px 20px 20px;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.team-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-stats {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.team-stat {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.team-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.team-socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.team-social-btn {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.team-social-btn:hover { background: var(--gold); border-color: var(--gold); }

@media (max-width: 768px) {
  .team-section { padding: 60px 20px; }
  .team-name { font-size: 17px; }
}

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

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

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
}

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

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 18px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-city {
  font-size: 12px;
  color: var(--gray);
  margin-top: 1px;
}

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

@media (max-width: 768px) { .testimonials-section { padding: 60px 20px; } }

/* ===== CTA ===== */
.cta-section {
  background: var(--dark);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title { color: var(--white); margin-bottom: 16px; }

.cta-section .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto 40px; }

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.cta-input::placeholder { color: rgba(255,255,255,0.3); }
.cta-input:focus { border-color: var(--gold); background: rgba(201,168,76,0.06); }

@media (max-width: 768px) { .cta-section { padding: 60px 20px; } }

/* ===== FOOTER ===== */
footer {
  background: #080C10;
  padding: 60px 48px 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } footer { padding: 40px 20px 24px; } }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 260px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }
