
/* ---- TOP BAR ---- */
.top-bar {
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 102;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.top-bar__phone:hover { color: var(--gold); }
.top-bar__phone svg { color: var(--gold); flex-shrink: 0; }
.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-bar__social {
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  transition: color var(--transition), transform var(--transition);
}
.top-bar__social svg {
  width: 17px;
  height: 17px;
}
.top-bar__social:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

/* Nav sits directly below top bar — 40px = 10px padding top + 10px padding bottom + ~20px text */
.nav { top: 40px !important; }

/* Hero content clears top bar (40px) + nav (68px) + breathing room */
.hero__content { padding-top: 160px !important; }

/* Tighten nav links gap slightly to give logo more room */
.nav__inner { gap: 20px; }
.nav__links { gap: 22px; }

@media (max-width: 768px) {
  .nav { top: 40px !important; }
  .hero__content { padding-top: 140px !important; }
}
@media (max-width: 480px) {
  .top-bar__phone { font-size: 11px; }
  .nav { top: 40px !important; }
}

/* ============================================
   ANDRE AUBUT REALTOR — GLOBAL STYLES
   Palette: Charcoal / C21 Gold / Warm White
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --gold:        #B8952A;
  --gold-light:  #D4AE45;
  --gold-pale:   #F5EDD6;
  --charcoal:    #1A1A1A;
  --charcoal-mid:#3A3A3A;
  --grey:        #6B6B6B;
  --grey-light:  #E5E0D8;
  --cream:       #F9F7F4;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1180px;
  --section-pad: 96px;
  --radius: 4px;

  --transition: 0.22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--charcoal { background: var(--charcoal); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section--charcoal .section-title { color: var(--white); }

.section-body {
  font-size: 17px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
}
.section--charcoal .section-body { color: rgba(255,255,255,0.7); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,149,42,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav__logo-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__cta { margin-left: 8px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- MOBILE NAV ---- */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  padding: 24px;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 60px;
  padding-left: max(60px, calc((100vw - var(--max-width)) / 2 + 24px));
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  position: relative;
  display: inline-block;
  overflow: visible;
}
.hero__headline em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  animation: underline-draw 0.8s ease 0.6s forwards;
  display: block;
  overflow: hidden;
}
@keyframes underline-draw {
  to { width: 100%; }
}
.hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__photo {
  position: relative;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Left edge fade — blends photo into dark content area */
.hero__photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, var(--charcoal) 0%, rgba(26,26,26,0.6) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
/* Bottom fade — existing */
.hero__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
/* Kill any stray bullet dots in hero */
.hero__content *, .hero__content *::before, .hero__content *::after {
  list-style: none !important;
}
.hero__content li, .hero__content ul, .hero__content ol {
  list-style: none !important;
  padding-left: 0 !important;
}

  width: 100%;
  height: 100%;
  min-height: 600px;
  background: linear-gradient(160deg, #2A2A2A 0%, #1A1A1A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 48px;
  gap: 12px;
}
.hero__photo-placeholder-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hero__photo-placeholder-icon svg {
  opacity: 0.3;
}
.hero__photo-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 100%);
  pointer-events: none;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gold);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-bar__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.trust-bar__item--link {
  text-decoration: none;
  transition: background var(--transition);
  cursor: pointer;
}
.trust-bar__item--link:hover {
  background: rgba(255,255,255,0.12);
}


/* ---- HOW CAN I HELP ---- */
.paths {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.paths__header {
  text-align: center;
  margin-bottom: 56px;
}
.paths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border: 2px solid var(--grey-light);
  border-radius: 6px;
  overflow: hidden;
}
.path-card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.path-card:hover {
  background: var(--charcoal);
}
.path-card:hover .path-card__icon { color: var(--gold); }
.path-card:hover .path-card__title { color: var(--white); }
.path-card:hover .path-card__body { color: rgba(255,255,255,0.6); }
.path-card:hover .path-card__link { color: var(--gold); }
.path-card__icon {
  color: var(--gold);
  transition: color var(--transition);
}
.path-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  transition: color var(--transition);
}
.path-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
  flex: 1;
  transition: color var(--transition);
}
.path-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: color var(--transition);
}

/* ---- ABOUT PREVIEW ---- */
.about-preview {
  padding: var(--section-pad) 0;
}
.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
}
.about-preview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.about-preview__photo::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 1;
}
.about-preview__photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 1;
}
.about-preview__content { }
.about-preview__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.about-preview__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 36px;
}
.about-preview__credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-mid);
}
.credential::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- LISTINGS PREVIEW ---- */
.listings-preview {
  background: var(--cream);
  padding: var(--section-pad) 0;
}
.listings-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.listing-card__image {
  aspect-ratio: 4/3;
  background: var(--grey-light);
  position: relative;
  overflow: hidden;
}
.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  background: linear-gradient(135deg, #EEEAE4 0%, #E0DDD6 100%);
}
.listing-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.listing-card__body { padding: 24px; }
.listing-card__price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.listing-card__address {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 16px;
}
.listing-card__details {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-light);
}
.listing-card__detail {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.testimonial-card__author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-card__detail {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ---- NEIGHBOURHOODS ---- */
.neighbourhoods {
  padding: var(--section-pad) 0;
}
.neighbourhoods__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.neighbourhoods__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.neighbourhood-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  cursor: pointer;
}
.neighbourhood-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.neighbourhood-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.neighbourhood-card__sub {
  font-size: 13px;
  color: var(--grey);
}
.neighbourhood-card__arrow {
  color: var(--gold);
  margin-top: 16px;
  font-size: 18px;
  transition: transform var(--transition);
}
.neighbourhood-card:hover .neighbourhood-card__arrow {
  transform: translateX(4px);
}

/* ---- CONTACT CTA BANNER ---- */
.cta-banner {
  background: var(--gold);
  padding: 72px 0;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- C21 LOGO ---- */
.c21-logo {
  display: inline-block;
  line-height: 0;
}
.c21-logo img {
  display: block;
  mix-blend-mode: multiply; /* removes white background on dark sections */
}
.c21-logo--footer img {
  height: 28px;
  width: auto;
  mix-blend-mode: normal;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.c21-logo--footer:hover img { opacity: 1; }
.c21-logo--about img {
  height: 36px;
  width: auto;
  mix-blend-mode: multiply;
}
.c21-logo--trust img {
  height: 22px;
  width: auto;
  mix-blend-mode: multiply;
}

.footer {
  background: #111111;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.footer__brand-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__brand-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer__c21-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}
.footer__c21-link:hover { color: var(--gold-light); }
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__col-links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__socials {
  display: flex;
  gap: 16px;
}
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.7;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content {
    padding: 120px 24px 64px;
    padding-left: 24px;
    order: 2;
  }
  .hero__photo { order: 1; min-height: 420px; }
  .hero__photo::after { display: none; }
  .about-preview__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-preview__photo { max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .neighbourhoods__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .paths__grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .listings-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .plan-steps { grid-template-columns: 1fr !important; }
  .trust-bar__inner { gap: 0; }
  .trust-bar__item {
    padding: 12px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: 50%;
    justify-content: center;
  }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .trust-bar__item:last-child { border-bottom: none; }
  .listings-preview__header { flex-direction: column; align-items: flex-start; }
  .neighbourhoods__header { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: stretch; }
  .cta-banner__actions .btn { justify-content: center; }
  .trust-bar__item { width: 100%; border-right: none; }
  .neighbourhoods__grid { grid-template-columns: 1fr; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
