/* =============================================
   LATAWA REAL ESTATE — style.css (v4 unified)
   Single source of truth for ALL pages.
   No page-level overrides needed.
   ============================================= */

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

:root {
  --black:      #000000;
  --dark:       #080808;
  --dark2:      #0e0e0e;
  --dark3:      #161616;
  --dark4:      #1e1e1e;
  --silver:     #C8C8C8;
  --silver2:    #A0A0A0;
  --offwhite:   #F0F0F0;
  --white:      #ffffff;
  --accent:     #C9A769;

  --glass-bg:      rgba(255,255,255,0.055);
  --glass-border:  rgba(255,255,255,0.11);
  --glass-hover:   rgba(255,255,255,0.09);

  --container: 1400px;
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  /* Unified type scale — matches homepage exactly */
  --fs-h1:      clamp(40px, 5.5vw, 72px);
  --fs-h2:      clamp(28px, 3.2vw, 44px);
  --fs-h3:      18px;
  --fs-body-lg: 15px;
  --fs-body:    13.5px;
  --fs-body-sm: 12px;
  --fs-eyebrow: 10px;
  --fs-micro:   9px;

  /* Page hero scale (sub-pages) */
  --fs-page-hero: clamp(36px, 4.8vw, 58px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { border: none; background: none; font-family: var(--font-body); cursor: pointer; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }
::selection { background: rgba(255,255,255,0.18); color: white; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

:focus-visible {
  outline: 1px solid rgba(201,167,105,0.8);
  outline-offset: 3px;
}

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; }
.logo-svg-pre {
  width: 60px; margin: 0 auto 24px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.preloader-bar {
  width: 160px; height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 16px; overflow: hidden; border-radius: 1px;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--silver2), var(--silver));
  width: 0%; transition: width 0.08s linear;
}
.preloader-text {
  font-size: var(--fs-micro); letter-spacing: 4px;
  color: rgba(255,255,255,0.3); font-weight: 500;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1340px;
  border-radius: 100px;
  padding: 11px 22px;
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,6,6,0.88);
  border-color: rgba(255,255,255,0.13);
  top: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 9px; }
.logo-svg { width: 30px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; color: white;
}
.logo-sub {
  font-size: 6.5px; letter-spacing: 2px;
  color: rgba(255,255,255,0.45); font-weight: 400; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 12.5px; letter-spacing: 0.2px;
  color: rgba(255,255,255,0.65);
  padding: 8px 13px;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
  font-weight: 500; position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: rgba(255,255,255,0.6);
  transition: width 0.3s ease;
}
.nav-link:hover { color: white; }
.nav-link:hover::after { width: 55%; }
.nav-link.active { color: white; }
.nav-link.active::after { width: 55%; background: var(--accent); }
.nav-link.contact-btn {
  background: rgba(255,255,255,0.09);
  color: white; border: 1px solid rgba(255,255,255,0.14);
}
.nav-link.contact-btn:hover { background: rgba(255,255,255,0.16); }
.nav-link.contact-btn::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: white; transition: var(--transition); }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(4,4,4,0.97);
  backdrop-filter: blur(28px);
  z-index: 999;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { padding: 12px 0; }
.mob-link {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.mob-link:hover, .mob-link.active { color: white; }

/* =============================================
   GLASS CARD
   ============================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: var(--radius);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.17);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: black;
  padding: 14px 30px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px;
  transition: var(--transition); cursor: pointer;
}
.btn-primary:hover { background: var(--silver); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.12); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  color: white; padding: 14px 30px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px;
  transition: var(--transition); cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.22);
  color: white; padding: 13px 28px; border-radius: 100px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px;
  transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-eyebrow {
  font-size: var(--fs-eyebrow); letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; width: 14px; height: 1px; background: var(--accent);
  display: inline-block;
}
.section-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500; line-height: 1.16;
  color: var(--offwhite); margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.section-heading em { font-style: italic; color: rgba(255,255,255,0.42); }
.section-desc {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.42);
  max-width: 480px; line-height: 1.75;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }
.section-header.center .section-eyebrow { justify-content: center; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 100px;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { filter: grayscale(25%) brightness(0.26); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 55%, rgba(8,8,8,0.97) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 780px; padding: 0 24px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: var(--fs-eyebrow); letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 26px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.18); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-page-hero);
  font-weight: 500; line-height: 1.14; color: white;
  margin-bottom: 20px; letter-spacing: -0.4px;
  overflow: hidden;
}
.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.5); }
.hero-title-line {
  display: inline-block;
  opacity: 0; transform: translateY(60%);
  will-change: transform, opacity;
}
.page-hero-sub {
  font-size: var(--fs-body-lg); color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 540px; margin: 0 auto;
  opacity: 0; transform: translateY(14px);
}

/* =============================================
   HERO (homepage)
   ============================================= */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
#heroCanvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.42) 60%, rgba(0,0,0,0.18) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content {
  position: relative; z-index: 3;
  padding: 0 40px; max-width: 900px; margin-left: 8%;
}
.hero-eyebrow {
  font-size: var(--fs-eyebrow); letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 28px;
  opacity: 0; transform: translateY(10px);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 500; line-height: 1.08;
  color: white; margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero-line { display: block; overflow: hidden; }
.hero-line-italic { font-style: italic; }
.hero-line-inner {
  display: block;
  opacity: 0; transform: translateY(105%);
  will-change: transform, opacity;
}
.hero-sub {
  font-size: var(--fs-body-lg); color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
  opacity: 0; transform: translateY(10px);
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(10px);
}
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}
.hero-scroll-indicator span {
  font-size: 8px; letter-spacing: 3px; color: rgba(255,255,255,0.35); text-transform: uppercase;
}

/* =============================================
   TRUST / STATS SECTION
   ============================================= */
.trust-section { padding: 80px 0; background: var(--dark2); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden;
}
.trust-card {
  padding: 44px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.35s; position: relative;
}
.trust-card:last-child { border-right: none; }
.trust-card:hover { background: rgba(255,255,255,0.04); }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 600; color: white; line-height: 1; display: inline;
}
.trust-plus { font-family: var(--font-display); font-size: 28px; color: var(--accent); }
.trust-label {
  font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 10px; font-weight: 500;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap { overflow: hidden; background: var(--dark3); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 16px 0; }
.marquee-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 9px; letter-spacing: 3.5px; font-weight: 600;
  color: rgba(255,255,255,0.28); text-transform: uppercase;
}
.m-dot { color: var(--accent); font-size: 7px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { padding: 110px 0; background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-frame {
  position: relative; border-radius: var(--radius);
  overflow: hidden; height: 520px;
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-float-card {
  position: absolute; bottom: -24px; right: -24px;
  padding: 20px 28px; text-align: center;
}
.float-num { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: white; }
.float-label { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.about-para {
  font-size: var(--fs-body); color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 18px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 32px; }
.tag {
  font-size: 10.5px; letter-spacing: 0.4px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 16px; border-radius: 100px;
}

/* =============================================
   PROPERTIES SECTION
   ============================================= */
.properties-section { padding: 110px 0; background: var(--dark2); }
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prop-card {
  overflow: hidden; border-radius: var(--radius);
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.38s ease, border-color 0.38s, box-shadow 0.38s;
}
.prop-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.prop-card.is-hidden { display: none; }
.prop-img-wrap { position: relative; height: 220px; overflow: hidden; }
.prop-img { transition: transform 0.6s ease; filter: brightness(0.88); }
.prop-card:hover .prop-img { transform: scale(1.07); filter: brightness(0.95); }
.prop-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.38s;
  backdrop-filter: blur(4px);
}
.prop-card:hover .prop-overlay { opacity: 1; }
.prop-view-btn {
  padding: 10px 24px; background: white; color: black;
  border-radius: 100px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.3px;
  transform: translateY(10px); transition: transform 0.38s;
  display: inline-block;
}
.prop-card:hover .prop-view-btn { transform: translateY(0); }
.prop-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.14);
  color: white; font-size: 8.5px; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 5px 11px;
  border-radius: 100px; backdrop-filter: blur(12px);
}
.prop-badge.type-residential { border-color: rgba(201,167,105,0.4); }
.prop-badge.type-commercial   { border-color: rgba(140,180,255,0.4); }
.prop-info { padding: 20px 22px; }
.prop-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: white; margin-bottom: 4px; }
.prop-loc { font-size: 11px; color: rgba(255,255,255,0.32); letter-spacing: 0.2px; margin-bottom: 14px; }
.prop-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06);
}
.prop-price { font-size: 15.5px; font-weight: 600; color: var(--silver); }
.prop-specs { display: flex; gap: 10px; font-size: 10.5px; color: rgba(255,255,255,0.32); }
.no-results {
  text-align: center; padding: 60px 20px;
  color: rgba(255,255,255,0.35); font-size: var(--fs-body);
  display: none;
}
.no-results.show { display: block; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { padding: 110px 0; background: var(--dark3); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 36px 32px; }
.service-icon { width: 44px; height: 44px; margin-bottom: 24px; opacity: 0.85; }
.service-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: white; margin-bottom: 10px; }
.service-desc { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.42); line-height: 1.75; }

/* =============================================
   GALLERY / PROJECTS
   ============================================= */
.gallery-section { padding: 110px 0; background: var(--dark2); }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; }
.gallery-desc { max-width: 380px; text-align: right; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; display: block;
  background: var(--dark3); cursor: pointer;
  height: 260px;
}
.gallery-item--lg { grid-column: span 2; grid-row: span 2; height: 100%; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.82);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.95); }
.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  transform: translateY(6px); opacity: 0;
  transition: transform 0.38s, opacity 0.38s;
}
.gallery-item:hover .gallery-info { transform: translateY(0); opacity: 1; }
.gallery-tag {
  font-size: 8px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 4px;
}
.gallery-info h3 { font-family: var(--font-display); font-size: 15px; color: white; font-weight: 500; }
.gallery-info p { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section { padding: 110px 0; background: var(--dark); }
.process-timeline { position: relative; margin-top: 56px; }
.process-line {
  position: absolute; top: 18px; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.07);
}
.process-line-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), rgba(201,167,105,0.3));
  transition: none;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.process-step { padding-top: 44px; }
.step-num {
  font-family: var(--font-display); font-size: 9px;
  color: rgba(255,255,255,0.25); letter-spacing: 2px;
  margin-bottom: 6px;
}
.step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  position: absolute; top: 14px;
  box-shadow: 0 0 12px rgba(201,167,105,0.5);
}
.step-title { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: white; margin-bottom: 10px; }
.step-desc { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.42); line-height: 1.75; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 110px 0; background: var(--dark2); }
.testimonials-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; gap: 18px; will-change: transform; }
.testi-card { flex: 0 0 calc(33.333% - 12px); padding: 34px 30px; }
.testi-stars { font-size: 13px; color: var(--accent); letter-spacing: 2px; margin-bottom: 18px; }
.testi-text { font-size: var(--fs-body); color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,167,105,0.18); border: 1px solid rgba(201,167,105,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--accent); flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: white; }
.testi-role { font-size: 10.5px; color: rgba(255,255,255,0.32); margin-top: 2px; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 36px; }
.testi-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.6); font-size: 15px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { border-color: white; color: white; background: rgba(255,255,255,0.06); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: background 0.3s, width 0.3s;
}
.testi-dot.active { background: white; width: 18px; border-radius: 3px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 120px 0; background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 15% 50%, rgba(201,167,105,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 45% 60% at 85% 30%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 500; line-height: 1.16; color: white; margin-bottom: 18px;
}
.cta-heading em { font-style: italic; color: var(--accent); }
.cta-sub {
  font-size: var(--fs-body); color: rgba(255,255,255,0.42);
  line-height: 1.75; margin-bottom: 38px;
}
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { padding: 110px 0; background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-label { font-size: 10px; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 4px; }
.contact-value { font-size: var(--fs-body); color: rgba(255,255,255,0.7); transition: color 0.25s; }
.contact-value:hover { color: white; }
.contact-form-wrap { padding: 38px 36px; }
.form-title { font-family: var(--font-display); font-size: 20px; color: white; margin-bottom: 28px; font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { position: relative; }
.form-input {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: white; font-family: var(--font-body); font-size: var(--fs-body);
  transition: border-color 0.25s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus { outline: none; border-color: rgba(255,255,255,0.3); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark3); color: white; }
textarea.form-input { resize: vertical; min-height: 110px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px; padding-top: 64px; padding-bottom: 48px;
}
.footer-logo { margin-bottom: 14px; display: inline-flex; }
.footer-tagline {
  font-size: var(--fs-micro); letter-spacing: 2.5px;
  color: rgba(255,255,255,0.22); text-transform: uppercase;
  margin-bottom: 12px; margin-top: 2px;
}
.footer-about {
  font-size: var(--fs-body-sm); color: rgba(255,255,255,0.3);
  line-height: 1.75; max-width: 290px;
}
.footer-links-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col-title {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 18px; font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li,
.footer-col ul a {
  font-size: var(--fs-body-sm); color: rgba(255,255,255,0.28); transition: color 0.3s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p, .footer-credit {
  font-size: 10.5px; color: rgba(255,255,255,0.18); letter-spacing: 0.4px;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 10.5px; color: rgba(255,255,255,0.2); transition: color 0.25s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.55); }

/* =============================================
   FILTER BAR
   ============================================= */
.filter-section { padding: 56px 0 0; background: var(--dark2); }
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 44px;
}
.filter-tabs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  font-size: var(--fs-body-sm); font-weight: 500; letter-spacing: 0.2px;
  color: rgba(255,255,255,0.55);
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  cursor: pointer; transition: var(--transition);
}
.filter-tab:hover { color: white; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.05); }
.filter-tab.active { background: white; color: black; border-color: white; }
.results-count { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.34); letter-spacing: 0.3px; }
.results-count strong { color: rgba(255,255,255,0.7); font-weight: 600; }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-section { padding: 88px 0; background: var(--dark3); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); overflow: hidden;
}
.stat-card {
  padding: 44px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.35s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,0.04); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 600; color: white; line-height: 1;
}
.stat-num span { color: rgba(255,255,255,0.28); font-size: 22px; }
.stat-label { font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,0.34); margin-top: 8px; font-weight: 500; }

/* =============================================
   LEGAL PAGES (privacy, terms)
   ============================================= */
.legal-section { padding: 80px 0 110px; background: var(--dark2); }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: white; margin: 44px 0 14px; letter-spacing: -0.2px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: var(--fs-body); color: rgba(255,255,255,0.5);
  line-height: 1.85; margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc; padding-left: 22px;
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px;
}
.legal-content ul li { font-size: var(--fs-body); color: rgba(255,255,255,0.48); line-height: 1.8; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta {
  font-size: var(--fs-body-sm); color: rgba(255,255,255,0.28);
  margin-bottom: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-toc {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 24px 28px; margin-bottom: 44px;
}
.legal-toc h3 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; font-weight: 600; }
.legal-toc ol { list-style: decimal; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.legal-toc ol li { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.45); }
.legal-toc ol li a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.25s; }
.legal-toc ol li a:hover { color: white; }

/* =============================================
   ANIMATION HELPERS
   ============================================= */
.reveal-up { opacity: 0; transform: translateY(28px); }

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1 !important; transform: none !important; }
  .hero-title-line { opacity: 1 !important; transform: none !important; }
  .page-hero-sub, .hero-eyebrow, .hero-sub, .hero-btns { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame { height: 380px; }
  .about-float-card { right: 0; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card:nth-child(2) { border-right: none; }
  .trust-card { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--lg { grid-column: span 1; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .process-line { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar { width: calc(100% - 26px); top: 12px; padding: 11px 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 20px; margin-left: 0; }
  .about-section, .properties-section, .services-section,
  .gallery-section, .process-section, .testimonials-section,
  .cta-section, .contact-section { padding: 72px 0; }
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 220px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .testi-card { flex: 0 0 100%; }
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 18px 20px; }
  .footer-legal-links { justify-content: center; }
  .page-hero { padding-top: 84px; min-height: 52vh; }
  .hero-scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-links-wrap { grid-template-columns: 1fr; }
}
