/* ============================================
   Mai Carolina — Real Estate Website
   Light luxury palette — white / black / grey
   ============================================ */

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  /* Primary accent — deep charcoal (replaces teal) */
  --teal: #1A1A1A;
  --teal-dark: #0A0A0A;
  --teal-darker: #000000;
  --teal-light: #2C2C2C;
  --teal-lighter: #525252;

  /* Secondary accent — warm grey (replaces amber) */
  --amber: #525252;
  --amber-dark: #2C2C2C;
  --amber-light: #A3A3A3;
  --amber-glow: rgba(0, 0, 0, 0.08);

  /* Light backgrounds */
  --bg: #FFFFFF;
  --bg-elevated: #FAFAFA;
  --bg-surface: #F0F0F0;
  --bg-warm: #F7F7F7;

  /* Legacy names — remapped to light tones */
  --cream: var(--bg-elevated);
  --warm-white: var(--bg);

  /* Text (dark on light) */
  --text: #0A0A0A;
  --text-light: #525252;
  --text-muted: #A3A3A3;

  --border: rgba(0, 0, 0, 0.08);
  --border-warm: rgba(0, 0, 0, 0.1);
  --border-teal: rgba(0, 0, 0, 0.12);

  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Subtle film-grain texture overlay — adds cinematic feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- INTRO OVERLAY ---- */
.intro-overlay {
  position: fixed; inset: 0;
  z-index: 10000;
  background: #000;
  overflow: hidden;
}
.intro-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.intro-video.ready { opacity: 1; }

/* Loading spinner while video buffers */
.intro-loading {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: opacity 0.3s ease;
}
.intro-loading.hidden { opacity: 0; pointer-events: none; }
.intro-loading-spinner {
  display: block;
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: introSpin 0.9s linear infinite;
}
@keyframes introSpin {
  to { transform: rotate(360deg); }
}

/* Tap-to-play fallback if autoplay is blocked */
.intro-tapplay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center; justify-content: center;
  z-index: 4;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.intro-tapplay[hidden] { display: none; }
.intro-tapplay-btn {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(34, 211, 238,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.intro-tapplay-btn:hover, .intro-tapplay-btn:focus {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(34, 211, 238,0.55);
}
.intro-bottom-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.intro-tagline {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
  width: 100%;
  max-width: 900px;
  opacity: 0;
}
.intro-tagline-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.intro-tagline-text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 80px rgba(0,0,0,0.3);
  margin: 0;
}
.intro-tagline-text em {
  font-style: italic;
  background: linear-gradient(110deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Sound hint — pulsing indicator that disappears on first interaction */
.intro-sound-hint {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 16px;
  border-radius: 22px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  animation: soundHintPulse 2.2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.intro-sound-hint.gone { opacity: 0; pointer-events: none; }
.intro-sound-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  color: var(--teal-light);
}
.intro-sound-icon svg { width: 18px; height: 18px; }
@keyframes soundHintPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
}

/* Lock body scroll while intro is showing — iOS-safe combo */
html.intro-active,
body.intro-active {
  overflow: hidden !important;
  overscroll-behavior: none;
  height: 100vh;
  touch-action: none;
}
body.intro-active {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
}
.intro-overlay { touch-action: none; }

@media (max-width: 600px) {
  .intro-tagline { bottom: 16%; padding: 0 20px; }
  .intro-tagline-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; }
  .intro-sound-hint { top: 14px; right: 14px; padding: 7px 12px; font-size: 0.7rem; gap: 8px; }
  .intro-sound-icon, .intro-sound-icon svg { width: 14px; height: 14px; }
}

/* ---- LOADER ---- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #FFFFFF;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.loader-name {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700; color: #0A0A0A;
}
.loader-title {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500; color: #525252;
  letter-spacing: 0.3em;
}
.loader-bar-wrap {
  width: 120px; height: 2px; background: rgba(0,0,0,0.1);
  border-radius: 2px; margin-top: 20px; overflow: hidden;
}
#loader-bar {
  width: 0%; height: 100%; background: #0A0A0A;
  transition: width 0.3s ease;
}

/* ---- HEADER ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 5vw;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
  padding: 14px 5vw;
}
.header nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--amber); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-light);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 0, 0, 0.03);
}
.btn-white {
  background: #FFFFFF; color: #0A0A0A; font-weight: 700;
  border: 1px solid #FFFFFF;
}
.btn-white:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero-wrapper {
  background:
    radial-gradient(ellipse at 80% 15%, rgba(0, 0, 0, 0.09), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(0, 0, 0, 0.06), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  position: relative;
  overflow: hidden;
}

/* Blurred modern-home backdrop behind the hero */
.hero-bg-house {
  position: absolute;
  inset: -40px;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.5) saturate(0.9);
  opacity: 0.45;
  transform: scale(1.08);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-house::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 15%, rgba(0, 0, 0, 0.07), transparent 60%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(26, 20, 16, 0.7) 100%);
}
.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Animated mesh gradient */
.mesh-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.mesh-bg .blob-a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), transparent 70%);
  top: -120px; left: -100px;
  animation: blobFloat1 18s ease-in-out infinite;
}
.mesh-bg .blob-b {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  bottom: -160px; right: 5%;
  animation: blobFloat2 22s ease-in-out infinite;
}
.mesh-bg .blob-c {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), transparent 70%);
  top: 40%; left: 45%;
  animation: blobFloat3 26s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.1); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, -40px) scale(1.15); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-120px, 60px) scale(0.9); }
}

/* Cinematic corner brackets */
.corner-bracket {
  position: absolute;
  width: 36px; height: 36px;
  border: 2px solid var(--teal);
  z-index: 2;
  opacity: 0.6;
  pointer-events: none;
}
.corner-bracket.tl { top: 20px; left: 20px; border-right: 0; border-bottom: 0; }
.corner-bracket.tr { top: 20px; right: 20px; border-left: 0; border-bottom: 0; }
.corner-bracket.bl { bottom: 20px; left: 20px; border-right: 0; border-top: 0; }
.corner-bracket.br { bottom: 20px; right: 20px; border-left: 0; border-top: 0; }
@media (max-width: 768px) {
  .corner-bracket { width: 20px; height: 20px; }
  .corner-bracket.tl, .corner-bracket.tr { top: 12px; }
  .corner-bracket.bl, .corner-bracket.br { bottom: 12px; }
  .corner-bracket.tl, .corner-bracket.bl { left: 12px; }
  .corner-bracket.tr, .corner-bracket.br { right: 12px; }
}
.hero {
  display: flex; align-items: center;
  min-height: 100vh; padding: 120px 5vw 80px;
  max-width: 1200px; margin: 0 auto;
  gap: 40px;
  position: relative; z-index: 1;
}
.hero-left { flex: 1; max-width: 520px; }
.hero-right {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--teal-light); letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 7px 14px;
  border-radius: 20px; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.02;
  color: var(--text); margin-bottom: 20px;
}
.hero-title br { line-height: 1; }
.hero-title-accent {
  display: inline-block;
  background: linear-gradient(110deg, var(--amber-dark) 0%, var(--amber) 25%, var(--amber-light) 50%, var(--amber) 75%, var(--amber-dark) 100%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  animation: tealFlow 6s ease-in-out infinite;
}
@keyframes tealFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Split-text chars */
.split-char {
  display: inline-block;
  line-height: 1;
  vertical-align: top;
  will-change: transform, opacity;
}
.split-char.space {
  display: inline-block;
  width: 0.28em;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.04) 35%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-glow.active { opacity: 1; }
@media (hover: none), (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* Magnetic buttons */
.btn { will-change: transform; }

/* 3D tilt */
.services-grid, .testimonials-grid {
  perspective: 1200px;
}
.service-card, .testimonial-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card .service-icon,
.service-card h3,
.service-card p,
.testimonial-card p,
.testimonial-card .testimonial-stars,
.testimonial-card .testimonial-author {
  transform: translateZ(30px);
}
.hero-subtitle {
  font-size: 1.05rem; font-weight: 400;
  color: var(--text-light); line-height: 1.7;
  margin-bottom: 28px; max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-social { display: flex; gap: 12px; }
.hero-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--text-light);
  transition: all 0.2s;
}
.hero-social a:hover {
  background: var(--teal); color: #FFFFFF; border-color: var(--teal);
}

/* Hero photo — cutout PNG (Mai only, transparent bg) on top of blurred house */
.hero-photo {
  position: relative; z-index: 2;
  max-height: 620px; width: auto;
  /* Drop shadow tinted with golden-hour glow — makes the cutout feel grounded */
  filter:
    drop-shadow(0 12px 30px rgba(0,0,0,0.12))
    drop-shadow(0 0 40px rgba(0, 0, 0, 0.07));
}
.hero-photo-shape { display: none; }

/* Floating house SVG behind the photo */
.hero-house-deco {
  position: absolute;
  top: -40px; left: -30px;
  width: 120px; height: 120px;
  color: var(--teal);
  opacity: 0.35;
  z-index: 0;
  animation: houseFloat 6s ease-in-out infinite;
}
@keyframes houseFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

/* Rotating circular text badge */
.photo-badge {
  position: absolute;
  bottom: -30px; left: -40px;
  width: 150px; height: 150px;
  z-index: 4;
  pointer-events: none;
}
.photo-badge svg {
  width: 100%; height: 100%;
  animation: spinBadge 18s linear infinite;
}
.photo-badge text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  fill: var(--teal-dark);
  text-transform: uppercase;
}
.photo-badge-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.photo-badge-center svg {
  width: 22px; height: 22px;
  animation: none;
}
@keyframes spinBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 768px) {
  .photo-badge { width: 110px; height: 110px; bottom: -20px; left: -15px; }
  .photo-badge-center { width: 34px; height: 34px; }
  .photo-badge-center svg { width: 16px; height: 16px; }
  .hero-house-deco { display: none; }
}
.hero-floating-card {
  position: absolute; bottom: 40px; right: -20px;
  z-index: 3;
  background: rgba(245, 245, 245, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-teal);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 0 30px rgba(0, 0, 0, 0.06);
  max-width: 220px;
}
.floating-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.85rem; color: var(--teal-light); line-height: 1.5;
}

/* ---- STATS BAR — premium dark accent break ---- */
.stats-bar {
  background: #0A0A0A;
  padding: 56px 5vw;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 64px;
  position: relative; z-index: 1;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700; color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-suf {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500; color: rgba(255, 255, 255, 0.7);
}
.stat-label {
  display: block;
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase; letter-spacing: 0.22em;
  margin-top: 12px;
}
.stat-divider {
  width: 1px; height: 60px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---- TAG ---- */
.tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  color: var(--amber); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ---- ABOUT ---- */
/* Hidden by default — only revealed when user clicks "Sobre Mí" in the menu */
.about {
  display: none;
  padding: 100px 5vw;
  background: var(--cream);
}
.about.revealed { display: block; }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 60px; align-items: center;
}
.about-image {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 85%; height: 85%;
  border: 2px solid var(--teal);
  border-radius: 20px;
  z-index: 0;
}
.about-photo {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px; height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  display: block;
}
.about-text { flex: 1; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 20px;
}
.about-text h2 em {
  color: var(--amber); font-style: italic;
}
.about-text p {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 16px;
}
.about-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.badge {
  font-size: 0.75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 6px;
  border: 1px solid var(--border-warm);
  color: var(--amber);
  background: rgba(0, 0, 0, 0.02);
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 5vw;
}
.services-inner {
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.services-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 48px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: left;
}
.service-card {
  background: var(--cream); padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.06));
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  color: var(--amber); margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.6;
}

/* ---- PROCESS ---- */
.process {
  padding: 100px 5vw;
  background: var(--cream);
}
.process-inner {
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.process-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 48px;
}
.process-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 600px; margin: 0 auto; text-align: left;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; left: 28px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--amber-dark));
  opacity: 0.35;
}
.process-step {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 20px 0;
  position: relative;
}
.step-number {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  position: relative; z-index: 1;
}
.step-content {
  padding-top: 12px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; margin-bottom: 4px;
}
.step-content p {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.6;
}

/* ---- MARQUEE ---- */
.marquee {
  padding: 20px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  white-space: nowrap; will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 600; color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* ---- GEORGIA HOME BANNER ---- */
.georgia-banner {
  position: relative; min-height: 460px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 5vw;
  overflow: hidden;
}
.georgia-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.georgia-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15) 100%);
}
.georgia-content {
  position: relative; z-index: 1; max-width: 640px;
}
.georgia-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--text); margin-bottom: 18px;
  line-height: 1.2;
}
.georgia-content h2 em {
  font-style: italic;
  color: var(--teal-light);
}
.georgia-content p {
  font-size: 1.05rem; color: rgba(0, 0, 0, 0.85);
  line-height: 1.7; margin-bottom: 28px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 5vw;
}
.testimonials-inner {
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.testimonials-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; text-align: left;
}
.testimonial-card {
  background: var(--cream); padding: 28px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-warm);
}
.testimonial-stars {
  color: var(--amber); font-size: 0.9rem;
  margin-bottom: 12px; letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.7; font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.testimonial-author strong {
  display: block; font-size: 0.9rem;
}
.testimonial-author span {
  font-size: 0.8rem; color: var(--text-muted);
}

/* ---- FREE GUIDE ---- */
.free-guide {
  padding: 80px 5vw;
}
.free-guide-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
  background:
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.12), transparent 60%),
    linear-gradient(135deg, #F0F0F0 0%, #E5E5E5 100%);
  border: 1px solid var(--border-warm);
  border-radius: 20px; padding: 48px 56px;
  position: relative; overflow: hidden;
}
.free-guide-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), transparent 70%);
  border-radius: 50%;
}
.guide-content {
  flex: 1;
  position: relative; z-index: 1;
}
.guide-content .tag {
  color: rgba(0, 0, 0, 0.60);
}
.guide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  color: var(--text); margin-bottom: 16px; line-height: 1.3;
}
.guide-content h2 em {
  font-style: italic; color: var(--teal-light);
}
.guide-content p {
  font-size: 1rem; color: rgba(0, 0, 0, 0.80);
  line-height: 1.7; margin-bottom: 24px;
}
.guide-content .btn-primary {
  background: #0A0A0A; color: #FFFFFF; font-weight: 700;
}
.guide-content .btn-primary:hover {
  background: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.guide-visual {
  color: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  position: relative; z-index: 1;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 5vw;
  background: #0A0A0A;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}

/* Animated keychain */
.keychain-wrap {
  position: absolute;
  top: 0; left: 8%;
  width: 140px; height: 260px;
  pointer-events: none;
  z-index: 1;
  color: rgba(202, 240, 248, 0.85);
}
.keychain-svg {
  width: 100%; height: 100%;
  overflow: visible;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
}
.keychain-pendulum {
  transform-origin: 70px 28px;
  animation: keychainSwing 4s ease-in-out infinite;
}
@keyframes keychainSwing {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(12deg); }
}
.keys-sparkle {
  opacity: 0;
  animation: sparkleFlash 3.5s ease-in-out infinite;
  transform-origin: center;
}
.keys-sparkle-1 { animation-delay: 0.2s; }
.keys-sparkle-2 { animation-delay: 1.4s; }
.keys-sparkle-3 { animation-delay: 2.6s; }
@keyframes sparkleFlash {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.15); }
}
@media (max-width: 900px) {
  .keychain-wrap { left: 2%; width: 100px; height: 200px; opacity: 0.55; }
}
@media (max-width: 600px) {
  .keychain-wrap { top: 10px; left: auto; right: 10px; width: 70px; height: 130px; opacity: 0.7; }
}
.closing::before {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.closing-inner {
  max-width: 700px; margin: 0 auto;
  position: relative; z-index: 1;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #FFFFFF;
  line-height: 1.3; margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.closing h2 em {
  font-style: italic; color: rgba(255, 255, 255, 0.75);
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 5vw;
  background: var(--cream);
}
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 60px; align-items: flex-start;
}
.contact-info { flex: 1; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 16px;
}
.contact-info h2 em { color: var(--amber); font-style: italic; }
.contact-info > p {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.7; margin-bottom: 28px;
}
.contact-details {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.contact-item svg { color: var(--teal); flex-shrink: 0; }
.contact-item:hover { color: var(--teal); }
.contact-form-wrap { flex: 1; }
.contact-form {
  display: flex; flex-direction: column; gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 14px 18px; border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-surface);
  color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-color: var(--bg-surface);
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.contact-form select:invalid { color: var(--text-muted); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  background: rgba(245, 245, 245, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.07);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.form-status { font-size: 0.9rem; margin-top: 8px; min-height: 1.2em; }

/* ---- FOOTER ---- */
.footer {
  padding: 48px 5vw 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
}
.footer-brand p {
  font-size: 0.85rem; color: var(--text-muted);
  margin-top: 4px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.85rem; color: var(--text-light);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 20px 0; text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem; color: var(--text-muted);
}

/* ---- FLOATING CTA ---- */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 54px; height: 54px; border-radius: 50%;
  background: #0A0A0A;
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15); }
  50% { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15), 0 0 0 12px rgba(0, 0, 0, 0.00); }
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ---- HAMBURGER ---- */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 201;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- TABLET ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center;
    justify-content: center; gap: 28px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.1rem; }

  /* Hero — tight one-viewport fit on mobile, content hugged to the top */
  .hero {
    flex-direction: column-reverse;
    padding: 56px 16px 12px;
    min-height: 100vh;
    min-height: 100svh;
    text-align: center;
    gap: 6px;
    justify-content: flex-start;
  }
  .hero-wrapper::before { width: 240px; height: 240px; top: -90px; right: -90px; }
  .hero-left { max-width: 100%; }
  .hero-title {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    line-height: 0.98 !important;
    margin-bottom: 6px;
  }
  .hero-title br { line-height: 0.98; }
  .hero-title-accent { line-height: 0.98 !important; display: inline-block; }
  .split-char {
    line-height: 0.98 !important;
    vertical-align: top !important;
  }
  .hero-subtitle {
    max-width: 100%; font-size: 0.78rem;
    margin-bottom: 10px; line-height: 1.4;
  }
  .hero-badge {
    font-size: 0.62rem; padding: 5px 10px;
    margin-bottom: 8px; gap: 6px;
  }
  .hero-badge-dot { width: 6px; height: 6px; }
  .hero-actions { justify-content: center; gap: 8px; margin-bottom: 10px; }
  .hero-actions .btn { flex: 1; min-width: 0; padding: 10px 12px; font-size: 0.78rem; }
  .hero-social { justify-content: center; gap: 10px; }
  .hero-social a { width: 32px; height: 32px; }
  .hero-right { width: 100%; display: flex; justify-content: center; margin-bottom: -10px; }
  .hero-photo { max-height: 400px; max-width: 84%; }
  .hero-photo-shape { display: none; }
  .photo-badge { display: none; }
  .hero-house-deco { display: none; }
  .hero-floating-card {
    right: 50%; transform: translateX(50%); bottom: -8px;
    padding: 7px 12px; max-width: 160px;
  }
  .floating-quote { font-size: 0.7rem; }
  .hero-bg-house { filter: blur(20px) brightness(0.45) saturate(0.9); opacity: 0.5; }

  /* Stats — tighter */
  .stats-bar { padding: 24px 5vw; }
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
    width: 100%;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.65rem; }

  /* About — compact */
  .about { padding: 48px 5vw; }
  .about-inner { flex-direction: column; gap: 24px; }
  .about-image::before { display: none; }
  .about-photo { max-width: 260px; }
  .about-text { text-align: center; }
  .about-text h2 { font-size: 1.7rem; margin-bottom: 14px; }
  .about-text p { font-size: 0.92rem; margin-bottom: 12px; line-height: 1.65; }
  .about-badges { justify-content: center; margin-top: 16px; }
  .badge { font-size: 0.68rem; padding: 5px 11px; }

  /* Services */
  .services { padding: 48px 5vw; }
  .services-inner h2 { margin-bottom: 28px; font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 22px 18px; }
  .service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.85rem; }

  /* Process — tighter steps */
  .process { padding: 48px 5vw; }
  .process-inner h2 { margin-bottom: 28px; font-size: 1.7rem; }
  .process-steps::before { left: 24px; top: 20px; bottom: 20px; }
  .process-step { padding: 14px 0; gap: 18px; }
  .step-number { width: 48px; height: 48px; min-width: 48px; font-size: 1.15rem; }
  .step-content { padding-top: 8px; }
  .step-content h3 { font-size: 1.02rem; }
  .step-content p { font-size: 0.88rem; line-height: 1.55; }

  /* Marquee — shorter */
  .marquee { padding: 14px 0; }
  .marquee-track span { font-size: 1.1rem; }

  /* Georgia banner */
  .georgia-banner { min-height: 300px; padding: 56px 22px; }
  .georgia-content h2 { font-size: 1.6rem; margin-bottom: 12px; }
  .georgia-content p { font-size: 0.95rem; margin-bottom: 20px; }

  /* Testimonials */
  .testimonials { padding: 48px 5vw; }
  .testimonials-inner h2 { margin-bottom: 28px; font-size: 1.7rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-card { padding: 22px; }
  .testimonial-card p { font-size: 0.9rem; }

  /* Free guide */
  .free-guide { padding: 40px 5vw; }
  .free-guide-inner { flex-direction: column; padding: 26px 20px; text-align: center; }
  .guide-content h2 { font-size: 1.35rem; }
  .guide-content p { font-size: 0.92rem; }
  .guide-visual { display: none; }

  /* Closing */
  .closing { padding: 56px 5vw; min-height: 340px; }
  .closing h2 { font-size: 1.55rem; }

  /* Contact — full-width edge-to-edge on mobile */
  .contact { padding: 48px 18px; }
  .contact-inner {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .contact-info,
  .contact-form-wrap { width: 100%; flex: 1 1 100%; }
  .contact-info { text-align: center; }
  .contact-info h2 { font-size: 1.75rem; margin-bottom: 10px; }
  .contact-info > p { font-size: 0.92rem; margin-bottom: 20px; }
  .contact-details {
    align-items: stretch;
    text-align: left;
    gap: 12px;
    width: 100%;
  }
  .contact-item { font-size: 0.9rem; }
  .contact-form { width: 100%; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .contact-form textarea { min-height: 100px; }

  /* Footer */
  .footer { padding: 32px 5vw 0; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; padding-bottom: 18px; }
  .footer-bottom { padding: 14px 0; }

  /* Floating CTA */
  .floating-cta { width: 44px; height: 44px; bottom: 16px; right: 16px; }
  .floating-cta svg { width: 18px; height: 18px; }

  /* Reduce the tagline in the rotating photo badge on mobile */
  .marquee-track span { letter-spacing: 0.02em; }
}

/* ---- SMALL PHONES ---- */
@media (max-width: 420px) {
  .hero { padding: 80px 18px 30px; }
  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stat-num { font-size: 1.8rem; }
  .service-card { padding: 24px 20px; }
}
