/* ===========================
   DONNA RANEY REALTY
   Design: Warm Luxury · Refined Elegance
   Color: Deep Forest Green + Champagne Gold + Ivory
   =========================== */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --forest: #1A3A2A;
  --forest-mid: #2D5940;
  --forest-light: #3E7A56;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDDA;
  --ivory: #FAF8F3;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --border: rgba(201,168,76,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light, .section-label.light { color: var(--gold-light); }
.section-title.center, .section-label.center, .center { text-align: center; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--forest); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--forest);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.35); }
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--white); }
.btn--outline-light {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-light);
}
.btn--outline-light:hover { background: var(--gold); color: var(--forest); }
.btn--text {
  background: transparent;
  color: var(--gold);
  padding: 0;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.btn--text:hover { border-color: var(--gold); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .logo-name { color: var(--forest); }
.logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.nav.scrolled .logo-tag { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav.scrolled .nav__link { color: var(--text-mid); }
.nav__link:hover, .nav__link.active { color: var(--gold-light); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active { color: var(--gold); }
.nav__link--cta {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.nav.scrolled .nav__burger span { background: var(--forest); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image-wrap {
  position: absolute;
  inset: 0;
}
.hero__img--house {
  height: 100%;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,0.88) 0%, rgba(26,58,42,0.65) 50%, rgba(26,58,42,0.4) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  max-width: 680px;
  margin-left: 8vw;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}
.badge {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(201,168,76,0.3);
}
.badge:last-child { border-right: none; }
.badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.badge span { font-size: 0.7rem; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; }
.hero__scroll-hint {
  position: absolute;
  bottom: 3rem; right: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================
   MARQUEE
   ============================ */
.marquee-bar {
  background: var(--forest);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 1.5rem;
}
.marquee-track .sep { color: var(--gold); padding: 0; }

/* ============================
   INTRO / ABOUT SECTION
   ============================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro__photo-col { position: relative; }
.intro__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro__photo {
  height: 550px;
  object-position: top;
  transition: transform 0.6s ease;
}
.intro__photo-frame:hover .intro__photo { transform: scale(1.03); }
.intro__photo-accent {
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.intro__card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}
.intro__card-icon { font-size: 1.5rem; }
.intro__card strong { display: block; font-size: 0.9rem; color: var(--forest); }
.intro__card span { font-size: 0.75rem; color: var(--text-light); }
.intro__text-col { padding-left: 1rem; }
.intro__body { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }
.intro__pillars {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  padding: 0.5rem 1rem;
  background: var(--gold-pale);
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ============================
   SERVICES
   ============================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card--featured {
  background: var(--forest);
  border-color: var(--forest);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.75); }
.service-card--featured .card-link { color: var(--gold-light); }
.service-card--featured::before { background: var(--gold-light); }
.service-card__icon { font-size: 2rem; margin-bottom: 1.25rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.card-link:hover { letter-spacing: 0.08em; }

/* ============================
   LISTINGS PREVIEW
   ============================ */
.listings-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.listings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.listing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.listing-card__img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.listing-card__img-wrap img { height: 100%; transition: transform 0.5s ease; }
.listing-card:hover .listing-card__img-wrap img { transform: scale(1.06); }
.listing-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 1;
}
.listing-badge--active { background: #22C55E; color: white; }
.listing-badge--pending { background: var(--gold); color: var(--forest); }
.listing-badge--sold { background: var(--forest); color: white; }
.listing-card__body { padding: 1.5rem; }
.listing-card__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.25rem;
}
.listing-card__address { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1rem; }
.listing-card__specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.listing-card__specs span { font-size: 0.8rem; color: var(--text-mid); }
.listing-card__desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.25rem; }

/* ============================
   AREAS
   ============================ */
.areas__sub { color: var(--text-mid); max-width: 520px; margin: 0 auto 2.5rem; }
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.area-pill {
  padding: 0.6rem 1.5rem;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  transition: var(--transition);
  cursor: default;
}
.area-pill:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }

/* ============================
   STATS
   ============================ */
.stats { background: var(--forest); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-preview { padding: 7rem 0; }
.testimonials__slider { max-width: 680px; margin: 3rem auto 1.5rem; text-align: center; }
.testimonial { display: none; animation: fadeIn 0.5s ease; }
.testimonial.active { display: block; }
.testimonial__stars { font-size: 1.4rem; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.1em; }
.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial__author { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.testimonial__dots { display: flex; justify-content: center; gap: 0.6rem; }
.dot-nav {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot-nav.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================
   HOME VALUATION
   ============================ */
.valuation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.valuation__text .section-title { color: var(--forest); }
.valuation__text p { color: var(--text-mid); line-height: 1.75; }
.valuation__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.valuation__form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* ============================
   INSTAGRAM
   ============================ */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
}
.insta-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}
.insta-tile img { height: 100%; transition: transform 0.4s ease; }
.insta-tile:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,42,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  opacity: 0;
  transition: var(--transition);
}
.insta-tile:hover .insta-overlay { opacity: 1; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #111C16;
  padding-top: 5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 1.25rem 0;
  max-width: 280px;
}
.footer__brand .logo-name { color: var(--white); }
.footer__brand .logo-tag { color: var(--gold); }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  font-size: 1.4rem;
  transition: var(--transition);
  display: inline-block;
}
.footer__social a:hover { transform: translateY(-3px); }
.footer__nav h4, .footer__contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__nav a:hover { color: var(--gold-light); padding-left: 4px; }
.footer__contact p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.footer__contact a { color: var(--gold-light); }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ============================
   PAGE HEADER (inner pages)
   ============================ */
.page-header {
  background: var(--forest);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .section-label { color: var(--gold); }
.page-header .section-title { color: var(--white); }
.page-header .section-title em { color: var(--gold-light); }

/* ============================
   ABOUT PAGE
   ============================ */
.about-story .container { max-width: 820px; }
.about-story__body { font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; }
.about-story__body p { margin-bottom: 1.25rem; }
.about-quote {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-info__icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-info__value { font-size: 0.95rem; color: var(--text-dark); }
.contact-info__value a { color: var(--forest); font-weight: 500; }
.contact-info__value a:hover { color: var(--gold); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--font-display); font-size: 2rem; color: var(--forest); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group textarea { height: 130px; resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success h3 { font-family: var(--font-display); font-size: 2rem; color: var(--forest); margin-bottom: 1rem; }
.form-success .check { font-size: 3rem; margin-bottom: 1rem; }

/* ============================
   BUYERS & SELLERS PAGES
   ============================ */
.process__steps { margin-top: 4rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.process__steps::before {
  content: '';
  position: absolute;
  top: 2rem; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold));
}
.step {
  text-align: center;
  padding: 1.5rem;
}
.step__num {
  width: 52px; height: 52px;
  background: var(--forest);
  color: var(--gold-light);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--gold-pale);
}
.step h4 { font-size: 1rem; font-weight: 600; color: var(--forest); margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

/* ============================
   TESTIMONIALS PAGE
   ============================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.review-card__text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.review-card__author { font-size: 0.8rem; font-weight: 600; color: var(--forest); letter-spacing: 0.05em; }

/* ============================
   LISTINGS PAGE
   ============================ */
.listing-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .listings__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .intro__grid { gap: 3rem; }
  .valuation__inner { gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--white); padding: 5rem 2rem 2rem; box-shadow: -8px 0 40px rgba(0,0,0,0.15); z-index: 999; }
  .nav__links.open { display: flex; }
  .nav__link { color: var(--text-mid) !important; padding: 0.75rem 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav__link--cta { border: none; margin-top: 1rem; border-radius: var(--radius); justify-content: center; display: flex; }
  .nav__burger { display: flex; z-index: 1001; }
  .hero__content { margin-left: 0; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__photo { height: 380px; }
  .intro__card { right: 0; }
  .services__grid { grid-template-columns: 1fr; }
  .listings__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .valuation__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__scroll-hint { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .listings-preview__header { align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero__badges { gap: 1rem; }
  .badge strong { font-size: 1.2rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}
