/* ============================================================
   XIAOLIN LI — LOS ANGELES REAL ESTATE
   styles.css
   Fonts: Cormorant Garamond (serif), DM Sans (sans), Playfair Display (stats)
   Google Fonts: https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Playfair+Display:wght@700&display=swap
   ============================================================ */


/* ─── RESET & ROOT ──────────────────────────────────────────── */

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

:root {
  --cream:          #FAF8F4;
  --warm-white:     #F5F2EC;
  --charcoal:       #1C1A18;
  --charcoal-soft:  #2E2C29;
  --mid:            #6B6760;
  --light:          #B8B4AD;
  --gold:           #C4A96A;
  --gold-light:     #D4BC8A;
  --serif:          'Cormorant Garamond', serif;
  --sans:           'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  overflow-x: hidden;
}


/* ─── NAVIGATION ────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(8px);
  padding: 16px 56px;
  border-bottom: 1px solid rgba(196, 169, 106, 0.2);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: white;
}

nav.scrolled .nav-logo {
  color: var(--charcoal);
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

nav.scrolled .nav-links a {
  color: var(--mid);
}

.nav-links a:hover,
nav.scrolled .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
  font-weight: 400;
}

nav.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--gold);
}

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

/* Chinese language toggle */
.nav-zh {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 10px;
  border-radius: 2px;
  transition: all 0.2s;
  font-family: var(--sans);
}

nav.scrolled .nav-zh {
  color: var(--mid);
  border-color: rgba(28, 26, 24, 0.25);
}

.nav-zh:hover {
  color: var(--gold);
  border-color: var(--gold);
}


/* ─── HERO ──────────────────────────────────────────────────── */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 18, 15, 0.82) 0%,
    rgba(20, 18, 15, 0.25) 45%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 169, 106, 0.18);
  border: 1px solid rgba(196, 169, 106, 0.5);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-badge span {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  color: white;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 12px;
  font-weight: 300;
}

.hero-lang {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
  margin-right: 16px;
  font-weight: 400;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hero-cta-ghost {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.25s;
  font-weight: 400;
}

.hero-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

/* Social proof strip below CTAs */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

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

.hero-rating-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.hero-rating-text a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-rating-text a:hover {
  color: var(--gold-light);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1);   opacity: 0.5; }
  50%       { transform: scaleY(0.5); opacity: 1;   }
}


/* ─── STATS BAR ─────────────────────────────────────────────── */

.stats {
  background: var(--charcoal);
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* Playfair Display 700 for authoritative, sharp numerals */
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  display: block;
}


/* ─── ABOUT ─────────────────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-img {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-img-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(250, 248, 244, 0.95);
  padding: 16px 24px;
  border-left: 3px solid var(--gold);
}

.about-img-label p {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.about-img-label strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  display: block;
  margin-top: 2px;
}

.about-text {
  background: var(--warm-white);
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Shared section label style */
.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.about-text h2 em {
  font-style: italic;
  color: var(--mid);
}

.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid rgba(28, 26, 24, 0.2);
  padding: 8px 16px;
  border-radius: 2px;
}

.about-compass {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(28, 26, 24, 0.1);
}

.about-compass-text {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.06em;
}

.about-compass-brand {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.1em;
}


/* ─── RECENT SALES ──────────────────────────────────────────── */

.sales {
  padding: 96px 80px;
  background: var(--cream);
}

.sales-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.sales-header h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
}

.sales-header h2 em {
  font-style: italic;
  color: var(--mid);
}

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

.sale-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* First card spans 2 columns */
.sale-card:first-child {
  grid-column: span 2;
}

.sale-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  min-height: 300px;
}

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

.sale-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 15, 0.78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

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

.sale-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.35s;
}

.sale-card:hover .sale-info {
  transform: translateY(0);
  opacity: 1;
}

.sale-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
  margin-bottom: 8px;
}

.sale-addr {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 4px;
}

.sale-price {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
}

/* Always-visible badge (before hover) */
.sale-always {
  position: absolute;
  bottom: 20px;
  left: 24px;
}

.sale-always .sale-badge {
  opacity: 0.9;
}


/* ─── REVIEWS ───────────────────────────────────────────────── */

.reviews {
  background: var(--charcoal-soft);
  padding: 96px 80px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews-header h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
}

.reviews-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 4px;
}

.star {
  color: var(--gold);
  font-size: 16px;
}

.reviews-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.review-quote {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
}

.review-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.review-author {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.review-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.skill-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 1px;
}

/* Clickable source link under each review */
.review-source {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.review-source:hover {
  color: var(--gold-light);
}


/* ─── SERVICE AREAS ─────────────────────────────────────────── */

.areas {
  padding: 80px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.areas-left h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
}

.areas-left h2 em {
  font-style: italic;
  color: var(--mid);
}

.areas-left p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 20px;
  font-weight: 300;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal);
  border: 1px solid rgba(28, 26, 24, 0.18);
  padding: 12px 24px;
  border-radius: 2px;
  cursor: default;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.area-tag:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}


/* ─── CONTACT ───────────────────────────────────────────────── */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-img {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 18, 15, 0.4), transparent);
}

.contact-form {
  background: var(--charcoal);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-form h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-form p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Price range anchor — sets expectations before form */
.contact-price-anchor {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: -28px;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.contact-price-anchor span {
  color: var(--gold-light);
}

/* Quick-start message suggestions */
.form-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.form-suggestion {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  font-family: var(--sans);
  background: none;
}

.form-suggestion:hover {
  border-color: rgba(196, 169, 106, 0.5);
  color: var(--gold-light);
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 18px;
  font-size: 13px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

input:focus,
textarea:focus {
  border-color: rgba(196, 169, 106, 0.6);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  display: block;
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--sans);
  transition: background 0.25s;
  margin-top: 8px;
  font-weight: 400;
}

.form-submit:hover {
  background: var(--gold-light);
}

.contact-info {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.contact-info-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info-value a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: var(--gold-light);
}

/* Inline WhatsApp button inside contact form */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: rgba(37, 211, 102, 0.9);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.25s;
  font-weight: 400;
}

.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.whatsapp-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* ─── LEAD MAGNET ───────────────────────────────────────────── */

.lead-magnet {
  background: var(--charcoal);
  padding: 64px 80px;
  text-align: center;
  border-top: 1px solid rgba(196, 169, 106, 0.2);
}

.lead-magnet-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lead-magnet p.eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.lead-magnet h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead-magnet p.sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.6;
}

.lead-magnet-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.lead-magnet-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 14px 18px;
  font-size: 13px;
  font-family: var(--sans);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.lead-magnet-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.lead-magnet-form input:focus {
  border-color: rgba(196, 169, 106, 0.6);
}

.lead-magnet-form button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--sans);
  white-space: nowrap;
  transition: background 0.2s;
  font-weight: 400;
}

.lead-magnet-form button:hover {
  background: var(--gold-light);
}

.lead-magnet-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 14px;
}


/* ─── FLOATING WHATSAPP BUTTON ──────────────────────────────── */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s;
  font-family: var(--sans);
  font-weight: 500;
}

.wa-float:hover {
  background: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 18px;
  height: 18px;
  fill: white;
  flex-shrink: 0;
}

.wa-float-pulse {
  animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
}


/* ─── FOOTER ────────────────────────────────────────────────── */

footer {
  background: #131210;
  padding: 48px 80px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.02em;
}

.footer-compass {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-langs {
  text-align: right;
}

.footer-langs p {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

.footer-lang-list {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.footer-lang-list span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-copy,
.footer-dre {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.06em;
}


/* ─── SCROLL FADE-IN ANIMATIONS ─────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }


/* ─── RESPONSIVE — MOBILE (max 900px) ───────────────────────── */

@media (max-width: 900px) {

  nav            { padding: 20px 28px; }
  nav.scrolled   { padding: 14px 28px; }
  .nav-links     { display: none; }

  .hero-content  { padding: 0 32px 64px; }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about         { grid-template-columns: 1fr; }
  .about-text    { padding: 56px 32px; }

  .sales         { padding: 64px 28px; }
  .sales-grid    { grid-template-columns: 1fr; }
  .sale-card:first-child { grid-column: span 1; }

  .reviews       { padding: 64px 28px; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .areas {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 36px;
  }

  .contact       { grid-template-columns: 1fr; }
  .contact-img   { min-height: 360px; }
  .contact-form  { padding: 56px 28px; }
  .form-row      { grid-template-columns: 1fr; }

  .lead-magnet        { padding: 48px 28px; }
  .lead-magnet-form   { flex-direction: column; }

  footer         { padding: 40px 28px 24px; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .footer-langs  { text-align: left; }
  .footer-lang-list { justify-content: flex-start; }

  .wa-float span { display: none; }   /* show icon only on mobile */
  .wa-float      { padding: 14px; border-radius: 50%; }
}
