/* ============================================
   ABUNDANT DWELLINGS — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --teal: #1d8f9a;
  --teal-dark: #156870;
  --teal-light: #e8f5f7;
  --teal-mid: #b2dde1;
  --charcoal: #1a2328;
  --dark: #0f1a1e;
  --slate: #3a4f57;
  --mid: #6b8591;
  --light: #c8d8dd;
  --off-white: #f4f8f9;
  --white: #ffffff;
  --gold: #c9a84c;
  --success: #2ecc71;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 18px; } /* increased from 16px */

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section--off { background: var(--off-white); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem; /* increased from 0.72rem */
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}

.section--dark .eyebrow,
.section--teal .eyebrow { color: var(--teal-mid); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }

.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-mid { color: var(--mid); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem; /* increased from 0.9rem */
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,143,154,0.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-dark:hover { background: var(--teal); color: var(--white); }

.btn--lg { padding: 18px 36px; font-size: 1.1rem; } /* increased from 1rem */
.btn--sm { padding: 10px 20px; font-size: 0.9rem; } /* increased from 0.82rem */

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  background: transparent;
}

.nav.scrolled {
  background: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.3s;
}

.nav.scrolled .nav__inner { padding-top: 14px; padding-bottom: 14px; }

.nav__logo img { height: 120px; width: auto; }
.nav.scrolled .nav__logo img { height: 100px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 0.95rem; /* increased from 0.85rem */
  font-weight: 500;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--teal-mid); }

.nav__links .btn { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__mobile .btn--primary {
  color: var(--white);
  border-bottom: none;
  padding: 10px 20px;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  z-index: 99;
  padding: 140px 32px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 14px 0;
color: var(--dark);
border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav__mobile a:hover { color: var(--teal-mid); }
.nav__mobile .btn { margin-top: 20px; align-self: flex-start; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  display: none; /* hidden in favour of video background */
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.60) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
}


.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(29,143,154,0.12) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero__accent {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,143,154,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero__tagline {
  font-size: 0.85rem; /* increased from 0.72rem */
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__tagline::before { content: ''; display: block; width: 32px; height: 1px; background: var(--teal); }

.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal-mid);
}

.hero__sub {
  font-size: 1.25rem; /* increased from 1.1rem */
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero__stats {
  display: flex;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero__stat {
  flex: 1;
  min-width: 140px;
  padding-right: 32px;
}
.hero__stat + .hero__stat {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem; /* increased from 2.2rem */
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-num span { color: var(--teal-mid); }
.hero__stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; } /* increased from 0.78rem */

/* ── IMPACT BAND ── */
.impact-band {
  background: var(--teal);
  padding: 56px 0;
}

.impact-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}

.impact-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.impact-item:last-child { border-right: none; }

.impact-item__num {
  font-family: var(--font-display);
  font-size: 2.8rem; /* increased from 2.4rem */
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.impact-item__label { font-size: 0.9rem; opacity: 0.8; letter-spacing: 0.05em; } /* increased from 0.78rem */

/* ── ABOUT INTRO ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-intro__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-intro__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem; /* increased from 0.85rem */
  color: var(--teal-dark);
  text-align: center;
  padding: 20px;
}

.about-intro__badge {
  position: relative;
  bottom: 24px; right: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-intro__badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.about-intro__badge-text { font-size: 0.82rem; color: var(--mid); margin-top: 4px; } /* increased from 0.72rem */

.about-intro__text p { color: var(--slate); margin-bottom: 20px; line-height: 1.8; }

.about-intro__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.pillar {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
  border-left: 3px solid var(--teal);
}
.pillar h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; } /* increased from 0.85rem */
.pillar p { font-size: 0.88rem; color: var(--mid); } /* increased from 0.78rem */

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; } /* increased from 1.15rem */
.service-card p { color: var(--slate); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; } /* increased from 0.9rem */

.service-card__list { display: flex; flex-direction: column; gap: 6px; }
.service-card__list li {
  font-size: 0.9rem; /* increased from 0.82rem */
  color: var(--mid);
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.85rem; /* increased from 0.75rem */
}

/* ── SEARCH BAR ── */
.search-section { background: var(--charcoal); color: var(--white); padding: 80px 0; }

.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
}

.search-field {
  flex: 1;
  min-width: 160px;
  position: relative;
}

.search-field label {
  display: block;
  font-size: 0.8rem; /* increased from 0.7rem */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 8px 16px 0;
}

.search-field select,
.search-field input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem; /* increased from 0.9rem */
  color: var(--charcoal);
  padding: 4px 16px 10px;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.search-bar .btn { align-self: center; flex-shrink: 0; }

.search-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.filter-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.88rem; /* increased from 0.8rem */
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-chip:hover,
.filter-chip.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step__num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; } /* increased from 1rem */
.step p { font-size: 0.95rem; color: var(--slate); line-height: 1.6; } /* increased from 0.85rem */

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal-light);
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 1.05rem; /* increased from 0.95rem */
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
  margin-top: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-dark);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testimonial-card__name { font-weight: 600; font-size: 1rem; } /* increased from 0.9rem */
.testimonial-card__role { font-size: 0.88rem; color: var(--mid); } /* increased from 0.78rem */

/* ── PARTNER SECTION ── */
.partner-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.partner-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.partner-chip:hover { background: rgba(29,143,154,0.25); border-color: var(--teal); }
.partner-chip__icon { font-size: 1.8rem; margin-bottom: 8px; }
.partner-chip__label { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.85); } /* increased from 0.85rem */

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #1eb5c4 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 32px 32px;
}

.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 36px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── NEWSLETTER ── */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem; /* increased from 0.9rem */
  outline: none;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand img { height: 120px; width: auto; margin-bottom: 20px; }
.footer__brand p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; } /* increased from 0.88rem */

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem; /* increased from 0.78rem */
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.92rem; transition: color 0.2s; } /* increased from 0.85rem */
.footer__col ul li a:hover { color: var(--teal-mid); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem; /* increased from 0.8rem */
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 0px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem; /* increased from 0.85rem */
  transition: var(--transition);
}
.footer__social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.92rem; /* increased from 0.82rem */
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem; /* increased from 0.9rem */
  color: var(--charcoal);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ── PAGE HEROES ── */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,30,0.95) 0%, rgba(29,143,154,0.15) 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.15rem; max-width: 540px; } /* increased from 1.05rem */
.page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(29,143,154,0.1) 1px, transparent 0);
  background-size: 36px 36px;
}

/* ── LISTING CARD ── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.listing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: var(--transition);
  background: var(--white);
}
.listing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.listing-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.listing-card__body { padding: 20px; }
.listing-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.listing-card__addr { font-size: 0.92rem; color: var(--mid); margin-bottom: 12px; } /* increased from 0.85rem */

.listing-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.8rem; /* increased from 0.72rem */
  font-weight: 600;
}

.listing-card__details {
  display: flex;
  gap: 16px;
  font-size: 0.9rem; /* increased from 0.82rem */
  color: var(--mid);
  padding-top: 12px;
  border-top: 1px solid var(--off-white);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION HEADERS ── */
.section-header { max-width: 580px; }
.section-header--center { max-width: 580px; margin: 0 auto; text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--slate); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__stats { flex-direction: column; gap: 24px; }
  .hero__stat + .hero__stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
  .about-intro__pillars { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .impact-band__grid { grid-template-columns: repeat(2, 1fr); }
  .impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .impact-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
    .referral-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .referral-grid > div:last-child { position: static !important; }
    .form-wrap > div[style] { padding: 24px 20px !important; }
    h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
.btn { white-space: normal; }
.page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .search-bar { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* Hero text readability */
.hero__tagline {
  color: #ffffff;
  opacity: 1;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero h1 em {
  color: #7dd6de; /* brighter than --teal-mid */
}

.hero__sub {
  color: rgba(255, 255, 255, 0.92); /* was 0.72 */
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero__stat-num {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero__stat-label {
  color: rgba(255, 255, 255, 0.75); /* was 0.5 */
}

.newsletter-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding: 14px 36px 14px 16px;
  cursor: pointer;
  font-size: 14px;
}