/* ========================================
       RESET & BASE
    ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --base-darkest: #02040a;
  --base-dark: #050814;
  --base-medium: #0b1020;
  --base-panel: #0d1528;
  --base-card: #111b30;
  --gold: #d4af37;
  --gold-light: #e8cb6b;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --neon: #38bdf8;
  --neon-dim: rgba(56, 189, 248, 0.1);
  --white: #ffffff;
  --gray-100: #f1f1f1;
  --gray-200: #c8ccd4;
  --gray-400: #7a8194;
  --glass-bg: rgba(11, 16, 32, 0.55);
  --glass-border: rgba(212, 175, 55, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-pad: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--gray-200);
  background: var(--base-darkest);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
       UTILITY
    ======================================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  padding-left: 38px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.75;
}

/* ========================================
       KEYFRAME ANIMATIONS
    ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes subtlePulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.18);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.9s var(--transition) both;
}

.anim-fade-up-d1 {
  animation-delay: 0.15s;
}
.anim-fade-up-d2 {
  animation-delay: 0.3s;
}
.anim-fade-up-d3 {
  animation-delay: 0.45s;
}
.anim-fade-up-d4 {
  animation-delay: 0.55s;
}

.anim-slide-right {
  animation: slideInRight 0.9s var(--transition) both;
  animation-delay: 0.4s;
}

/* ========================================
       NAVBAR
    ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  background: linear-gradient(
    180deg,
    rgba(2, 4, 10, 0.85) 0%,
    transparent 100%
  );
  transition: background var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-200);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold) !important;
  transition: all var(--transition) !important;
  display: block;
  width: 160px;
  text-align: center;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--base-darkest) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========================================
       HERO
    ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--base-darkest);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 20% 50%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 60% at 80% 30%,
      rgba(56, 189, 248, 0.04) 0%,
      transparent 60%
    ),
    linear-gradient(
      175deg,
      var(--base-darkest) 0%,
      var(--base-dark) 40%,
      var(--base-medium) 100%
    );
  z-index: 1;
}

/* Decorative grid lines */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 20%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black 20%,
    transparent 70%
  );
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 680px;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c9a227);
  color: var(--base-darkest);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.12);
}

/* Floating Hero Card */
.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  animation:
    floatY 6s ease-in-out infinite,
    slideInRight 0.9s ease both;
  animation-delay: 0s, 0.5s;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-card-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero-card-meta {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card-stat {
  text-align: center;
}

.hero-card-stat-value {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.hero-card-stat-label {
  font-size: 0.68rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.2s ease 1.2s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: subtlePulse 2s ease-in-out infinite;
}

/* ========================================
       SIGNATURE FEATURES
    ======================================== */
.features {
  padding: var(--section-pad);
  background: var(--base-dark);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.7s ease both;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(212, 175, 55, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--base-darkest);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ========================================
       PROPERTY SHOWCASE
    ======================================== */
.showcase {
  padding: var(--section-pad);
  background: var(--base-darkest);
  position: relative;
}

.showcase-header {
  margin-bottom: 64px;
}

.showcase-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showcase-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  pointer-events: none;
}

.showcase-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.showcase-img-wrap:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-img-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--base-darkest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  z-index: 2;
}

.showcase-details h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.showcase-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-stat {
  text-align: center;
}

.showcase-stat-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.showcase-stat-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.showcase-highlights {
  list-style: none;
  margin-bottom: 36px;
}

.showcase-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--gray-200);
}

.showcase-highlights li i {
  color: var(--gold);
  font-size: 0.7rem;
  width: 20px;
  text-align: center;
}

.showcase-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.showcase-price strong {
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

/* Property Row Cards */
.property-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.property-card {
  background: var(--base-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.property-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.property-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.property-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-card-img {
  transform: scale(1.08);
}

.property-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(2, 4, 10, 0.75);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 5px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.property-card-body {
  padding: 22px 20px;
}

.property-card-body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.property-card-body p {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.property-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.property-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-card-meta i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ========================================
       GALLERY
    ======================================== */
.gallery {
  padding: var(--section-pad);
  background: var(--base-dark);
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 240px 260px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.gallery-item:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(6) {
  grid-column: 3 / 5;
  grid-row: 3 / 4;
}

.gallery-item:nth-child(7) {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(2, 4, 10, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
}

.gallery-overlay span {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 4px;
}

/* ========================================
       TESTIMONIALS
    ======================================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--base-darkest);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 70%
  );
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--base-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: all var(--transition);
  position: relative;
  animation: fadeInUp 0.7s ease both;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.15s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.3s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.45s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.testimonial-quote-icon {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
}

.testimonial-name {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ========================================
       CTA FOOTER
    ======================================== */
.cta-footer {
  position: relative;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 80px);
  background: var(--base-medium);
  text-align: center;
  overflow: hidden;
}

.cta-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 50% 100%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 70%
    ),
    linear-gradient(0deg, var(--base-darkest) 0%, transparent 40%);
  pointer-events: none;
}

.cta-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
}

.cta-footer .container {
  position: relative;
  z-index: 1;
}

.cta-footer .section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.cta-footer .section-subtitle {
  margin: 0 auto 48px auto;
  max-width: 500px;
  text-align: center;
}

.cta-footer .btn-primary {
  padding: 18px 48px;
  font-size: 0.9rem;
}

.cta-contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.cta-contact-item:hover {
  color: var(--gold);
}

.cta-contact-item i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.cta-contact-item:hover i {
  background: var(--gold);
  color: var(--base-darkest);
  border-color: var(--gold);
}

/* ========================================
       FOOTER
    ======================================== */
.site-footer {
  padding: 40px 0;
  background: var(--base-darkest);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.footer-brand span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ========================================
       RESPONSIVE — TABLET
    ======================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    max-width: 420px;
    animation-name: fadeInUp;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .showcase-img {
    height: 380px;
  }

  .property-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    height: 240px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ========================================
       RESPONSIVE — MOBILE
    ======================================== */
@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--base-card);
    gap: 20px;
    padding: 30px 0;
  }

  .nav-links a {
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle:hover + .nav-links {
    display: flex;
  }

  .hero {
    min-height: 100svh;
  }

  .hero .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .showcase-img {
    height: 260px;
  }

  .showcase-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .property-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 220px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:nth-child(3) {
    max-width: 100%;
  }

  .cta-contact-methods {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
       LARGE SCREENS
    ======================================== */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }

  .hero-title {
    font-size: 5.2rem;
  }

  .gallery-grid {
    grid-template-rows: 340px 300px 320px;
  }
}
