/* ============================================================
   The Bug Man Environmental Services · site styles
   Mobile-first. Brand palette pulled from the logo.
   ============================================================ */

:root {
  /* Brand */
  --blue:        #1CA0DA;   /* primary, from logo */
  --blue-press:  #1488BC;
  --blue-soft:   #E7F5FC;
  --blue-tint:   #F2FAFE;
  --navy:        #0D3D5C;   /* dark sections, hovers */
  --navy-deep:   #0A3047;
  --navy-soft:   #11486B;

  /* CTA accent */
  --orange:      #E8833A;
  --orange-press:#D26F28;
  --orange-soft: #FCEFE3;

  /* Trust */
  --green:       #10B981;
  --green-soft:  #E6F7F0;

  /* Neutrals */
  --bg:      #FAFAFA;
  --surface: #FFFFFF;
  --text:    #1F2937;
  --muted:   #5B6675;
  --faint:   #8A93A1;
  --border:  #E5E7EB;
  --border-soft: #EEF0F3;

  /* CTA theming hooks (Tweaks overrides these) */
  --cta:        var(--orange);
  --cta-press:  var(--orange-press);
  --cta-on:     #FFFFFF;

  --maxw: 1120px;
  --radius:  14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(13,61,92,.06), 0 1px 3px rgba(13,61,92,.05);
  --shadow-md: 0 6px 18px rgba(13,61,92,.08), 0 2px 6px rgba(13,61,92,.05);
  --shadow-lg: 0 18px 48px rgba(13,61,92,.14);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section--tight { padding: 40px 0; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow svg { width: 15px; height: 15px; }
.section-head { max-width: 600px; margin: 0 auto 32px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 4.6vw, 36px); margin-top: 12px; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 17px; }

/* Lucide icons baseline */
[data-lucide] { width: 22px; height: 22px; stroke-width: 2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  min-height: 52px; padding: 0 22px;
  border-radius: var(--radius-sm); border: 1.5px solid transparent;
  cursor: pointer; transition: background .15s var(--ease), transform .12s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--cta { background: var(--cta); color: var(--cta-on); }
.btn--cta:hover { background: var(--cta-press); }
.btn--cta:active { transform: translateY(1px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); background: #fff; }
.btn--on-dark { background: rgba(255,255,255,.08); color:#fff; border-color: rgba(255,255,255,.28); }
.btn--on-dark:hover { background: rgba(255,255,255,.16); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__bar { display: grid; grid-template-columns: 46px 1fr 46px; align-items: center; height: 64px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; justify-self: center; }
.brand img { height: 44px; width: auto; }
.header__right { display: flex; align-items: center; gap: 10px; }
.nav-links { display: none; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px; justify-self: end;
  font-weight: 700; color: var(--navy); font-size: 16px;
  padding: 9px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: #fff;
}
.header__phone svg { width: 17px; height: 17px; color: var(--blue); }
.header__phone .lbl { display: none; }
.hamburger {
  display: inline-flex; align-items: center; justify-content: center; justify-self: start;
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: #fff; cursor: pointer; color: var(--navy);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile menu sheet */
.menu {
  position: fixed; inset: 64px 0 auto 0; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform .2s var(--ease), opacity .2s var(--ease), visibility .2s;
}
.menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; font-weight: 600; color: var(--navy);
  border-top: 1px solid var(--border-soft); min-height: 44px;
}
.menu a:first-child { border-top: 0; }
.menu a svg { width: 18px; height: 18px; color: var(--blue); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--hero-bg, var(--blue-tint)); border-bottom: 1px solid var(--border); }
.hero__inner { position: relative; padding: 32px 0 44px; }
.hero__grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(31px, 7.6vw, 52px); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--navy); margin-top: 6px;
}
.hero h1 .hl { color: var(--blue); }
.hero__sub { margin: 16px auto 0; font-size: 17px; line-height: 1.55; color: var(--muted); max-width: 480px; }
.hero__cta { margin: 24px auto 0; display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 360px; }
.hero__note { margin-top: 16px; font-size: 13.5px; color: var(--faint); display:flex; flex-wrap:wrap; align-items:flex-start; justify-content:center; gap:8px; max-width: 340px; margin-left:auto; margin-right:auto; text-wrap: balance; }
.hero__note svg { flex: none; width: 16px; height: 16px; margin-top: 2px; }
.hero__note span { min-width: 0; }
.hero__note svg { width: 16px; height: 16px; color: var(--green); flex:none; }
.hero__logo { display: flex; justify-content: center; }
.hero__logo img { width: min(280px, 76%); height: auto; filter: drop-shadow(0 12px 24px rgba(13,61,92,.12)); }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy); color: #fff; }
.trust__inner { display: grid; gap: 0; }
.trust__item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 4px; border-top: 1px solid rgba(255,255,255,.10);
  font-weight: 600; font-size: 15.5px;
}
.trust__item:first-child { border-top: 0; }
.trust__item svg { width: 22px; height: 22px; color: #fff; flex: none; }
.trust__item .big { color: #fff; }
.trust__item .ico { display:inline-flex; width:40px; height:40px; border-radius:50%; align-items:center; justify-content:center; background: rgba(28,160,218,.22); flex:none; }
.trust__item .ico svg { color: #6FD0F5; width: 20px; height: 20px; }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.cards { display: grid; gap: 16px; }
.card {
  position: relative; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #DBE7EE; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__list { margin-top: 14px; display: grid; gap: 8px; }
.card__list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.card__list svg { width: 17px; height: 17px; color: var(--green); flex: none; margin-top: 3px; }

/* Realtor card highlight */
.card--realtor { border-color: var(--navy); background: var(--navy); color: #fff; }
.card--realtor h3, .card--realtor p { color: #fff; }
.card--realtor p { color: rgba(255,255,255,.82); }
.card--realtor .card__icon { background: rgba(28,160,218,.22); color: #6FD0F5; }
.card--realtor .tag {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); background: var(--orange); padding: 5px 10px; border-radius: var(--radius-pill);
}
.card--realtor .card__list svg { color: #6FD0F5; }
.card--realtor .card__list li { color: rgba(255,255,255,.9); }

/* Loyalty callout */
.loyalty {
  margin-top: 20px; display: flex; align-items: center; gap: 16px;
  background: var(--orange-soft); border: 1px solid #F3D8C2;
  border-radius: var(--radius); padding: 18px 22px;
}
.loyalty__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--orange); color:#fff; display:inline-flex; align-items:center; justify-content:center; flex:none; }
.loyalty__icon svg { width: 24px; height: 24px; }
.loyalty strong { color: var(--navy); display:block; font-size: 16.5px; }
.loyalty span { color: var(--muted); font-size: 14.5px; }

/* ---------- Realtor band ---------- */
.realtor-band { background: linear-gradient(0deg, var(--navy-deep), var(--navy)); color: #fff; position: relative; overflow:hidden; }
.realtor-band .eyebrow { color: #6FD0F5; }
.realtor-band h2 { color: #fff; font-size: clamp(26px,4.6vw,36px); margin-top: 12px; }
.realtor-band p { color: rgba(255,255,255,.82); margin-top: 14px; font-size: 17px; }
.realtor-band__grid { display: grid; gap: 28px; }
.realtor-band__points { margin-top: 22px; display: grid; gap: 14px; }
.realtor-band__points li { display: flex; gap: 12px; align-items: flex-start; }
.realtor-band__points svg { width: 20px; height: 20px; color: #6FD0F5; flex: none; margin-top: 3px; }
.realtor-band__points strong { display:block; color:#fff; font-size: 16px; }
.realtor-band__points span { color: rgba(255,255,255,.72); font-size: 14.5px; }
.bar-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 16px 18px; margin-top: 6px;
}
.bar-badge__seal { width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color:#fff; display:inline-flex; align-items:center; justify-content:center; flex:none; }
.bar-badge__seal svg { width: 24px; height: 24px; }
.bar-badge strong { display: block; color: #fff; font-size: 15px; }
.bar-badge span { color: rgba(255,255,255,.7); font-size: 13.5px; }

/* ---------- About ---------- */
.about { background: var(--surface); }
.about__grid { display: grid; gap: 28px; grid-template-areas: "text" "photo" "cards"; }
.about__photo-block { grid-area: photo; }
.about__text-block { grid-area: text; }
.about__cards-block { grid-area: cards; }
.about__photos { display: grid; gap: 14px; }
.about__truck { width: 100%; display: block; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__truck--side { aspect-ratio: 16 / 9; }
.about__truck--rear { aspect-ratio: 24 / 11; }
.about__photo-cap { display:flex; align-items:center; justify-content:center; gap:8px; font-size: 15.5px; font-weight: 600; color: var(--navy); text-align: center; margin-top: 14px; }
.about__photo-cap svg { width: 18px; height: 18px; color: var(--orange); flex:none; }
.about h2 { font-size: clamp(26px,4.6vw,34px); margin-top: 12px; }
.about__bio { margin-top: 16px; display: grid; gap: 14px; color: var(--muted); font-size: 16.5px; }
.about__bio strong { color: var(--text); }
.about__sig { margin-top: 20px; display:flex; align-items:center; gap: 14px; }
.about__sig .name { font-weight: 700; color: var(--navy); font-size: 17px; }
.about__sig .role { color: var(--muted); font-size: 14px; }
.about__creds { margin-top: 22px; display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.cred { display:flex; gap: 11px; align-items:center; background: var(--bg); border:1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 14px; }
.cred svg { width: 20px; height: 20px; color: var(--green); flex:none; }
.cred .cred__txt { display:flex; flex-direction:column; gap:1px; min-width:0; }
.cred b { font-size: 14.5px; color: var(--navy); line-height:1.25; }
.cred span { font-size: 12.5px; color: var(--muted); line-height:1.3; }

/* ---------- Service area ---------- */
.area { background: var(--bg); }
.area__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 6px; }
.area__chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 10px 16px; font-weight: 600; font-size: 15px; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.area__chip svg { width: 16px; height: 16px; color: var(--blue); }
.area__note { margin-top: 20px; color: var(--muted); font-size: 15px; display:flex; gap:8px; align-items:center; justify-content:center; text-align:center; }
.area__note svg { width:18px; height:18px; color: var(--blue); }

/* ---------- Reviews ---------- */
.reviews { background: var(--surface); }
.reviews__grid { display: grid; gap: 16px; }
.review { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.review__stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 12px; }
.review__stars svg { width: 18px; height: 18px; fill: var(--orange); stroke: var(--orange); }
.review p { font-size: 16px; color: var(--text); line-height: 1.55; }
.review__foot { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex: none; }
.review__who { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.review__ph { color: var(--faint); font-weight: 500; font-size: 13px; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: #fff; }
.contact .eyebrow { color: #6FD0F5; }
.contact h2 { color: #fff; font-size: clamp(26px,4.6vw,36px); margin-top: 12px; }
.contact__lead { color: rgba(255,255,255,.82); margin-top: 14px; font-size: 17px; max-width: 520px; }
.contact__grid { display: grid; gap: 28px; margin-top: 30px; }
.contact__form { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--navy); font-size: 14.5px; margin-bottom: 7px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; min-height: 50px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28,160,218,.15);
}
.field-row { display: grid; gap: 0; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; display:flex; gap:8px; align-items:flex-start; }
.form-note svg { width: 15px; height: 15px; color: var(--green); flex:none; margin-top: 2px; }
.form-success { display:none; text-align:center; padding: 30px 10px; }
.form-success.show { display:block; }
.form-success svg { width: 52px; height: 52px; color: var(--green); margin: 0 auto 14px; }
.form-success h3 { font-size: 22px; }
.form-success p { color: var(--muted); margin-top: 10px; }

.contact__aside { display: grid; gap: 14px; align-content: start; }
.contact-card {
  display:flex; gap: 14px; align-items:center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 18px;
}
.contact-card__ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(28,160,218,.22); color:#6FD0F5; display:inline-flex; align-items:center; justify-content:center; flex:none; }
.contact-card__ico svg { width: 22px; height: 22px; }
.contact-card .lbl { font-size: 12.5px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.contact-card .val { font-size: 18px; font-weight: 700; color: #fff; }
.contact-card .val.sm { font-size: 15.5px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 40px 0 110px; }
.footer__grid { display: grid; gap: 28px; }
.footer img.logo { height: 56px; width: auto; margin-bottom: 14px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer a:hover { color: #fff; }
.footer__nap { display: grid; gap: 8px; font-size: 14.5px; }
.footer__nap div { display:flex; gap:10px; align-items:flex-start; }
.footer__nap svg { width: 17px; height: 17px; color: var(--blue); flex:none; margin-top: 3px; }
.footer__links { display: grid; gap: 10px; font-size: 14.5px; }
.footer__social { display:flex; gap:10px; margin-top: 4px; }
.footer__social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); display:inline-flex; align-items:center; justify-content:center; }
.footer__social a:hover { background: var(--blue); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__creds { display: grid; gap: 12px; }
.footer__bar {
  display:flex; gap:12px; align-items:flex-start;
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.footer__bar svg { width: 22px; height: 22px; color: var(--orange); flex:none; margin-top: 1px; }
.footer__bar .bar__txt { display:flex; flex-direction:column; gap:3px; min-width:0; }
.footer__bar b { color:#fff; font-size: 14px; line-height:1.35; font-weight:600; }
.footer__bar span { font-size: 12.5px; line-height:1.3; color: rgba(255,255,255,.6); }
.footer__legal { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; display:flex; flex-wrap:wrap; gap: 8px 18px; align-items:center; }
.footer__legal .lic { color:#fff; font-weight:600; }

/* ---------- Sticky mobile bottom bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 18px rgba(13,61,92,.08);
}
.mobile-bar .btn { flex: 1; min-height: 50px; font-size: 15px; padding: 0 12px; }

/* ============================================================
   Responsive: scale up from mobile
   ============================================================ */

/* Mobile: keep section intros centered for a tidy single-column feel */
@media (max-width: 879px) {
  .realtor-band__grid > div:first-child { text-align: center; }
  .realtor-band__points { text-align: left; max-width: 380px; margin: 22px auto 0; }
  .bar-badge, .realtor-band__grid > div:last-child > div { margin-left: auto; margin-right: auto; }
  /* On mobile the about section flows: heading + bio  →  photo  →  credentials cards.
     Desktop layout (photo left, text + cards right) is set in the desktop media query below. */
  .about__text-block { text-align: center; }
  .about__bio, .about__creds { text-align: left; }
  .about__bio { max-width: 460px; margin-left: auto; margin-right: auto; }
  .about__sig { justify-content: center; }
  .about__creds { max-width: 420px; margin-left: auto; margin-right: auto; }
  .contact > .wrap { text-align: center; }
  .contact__grid { text-align: left; }
  .contact__lead { margin-left: auto; margin-right: auto; }
  .loyalty { text-align: left; }
}

@media (min-width: 560px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: none; width: auto; }
  .hero__cta .btn { flex: 0 1 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .trust__inner { grid-template-columns: repeat(3,1fr); }
  .trust__item { border-top: 0; border-left: 1px solid rgba(255,255,255,.10); padding: 22px 24px; justify-content:center; }
  .trust__item:first-child { border-left: 0; }
}

@media (min-width: 880px) {
  .section { padding: 80px 0; }
  .wrap { padding: 0 32px; }
  html { scroll-padding-top: 88px; }

  .header__bar { display: flex; align-items: center; justify-content: space-between; }
  .nav-links { display: flex; align-items: center; gap: 6px; }
  .nav-links a { padding: 9px 13px; font-weight: 600; font-size: 15px; color: var(--navy); border-radius: 8px; }
  .nav-links a:hover { color: var(--blue); background: var(--blue-soft); }
  .header__phone { font-size: 17px; }
  .header__phone .lbl { display: inline; }
  .hamburger { display: none; }
  .menu { display: none; }
  .brand img { height: 50px; }

  .hero__inner { padding: 56px 0 68px; }
  .hero__grid { max-width: 820px; }
  .hero__logo img { width: min(360px, 80%); }
  .hero__sub { font-size: 18px; max-width: 560px; }
  .hero__cta { flex-direction: row; max-width: none; justify-content: center; width: auto; }
  .hero__cta .btn { flex: 0 1 auto; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .card--realtor { grid-column: span 2; }
  .card--realtor .card__body { display:grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; align-items:start; }

  .realtor-band__grid { grid-template-columns: 1.1fr .9fr; align-items: center; gap: 48px; }
  .about__grid {
    grid-template-columns: .8fr 1.2fr;
    grid-template-areas:
      "photo text"
      "photo cards";
    align-items: start;
    gap: 48px 48px;
  }
  .reviews__grid { grid-template-columns: repeat(3,1fr); }
  .contact__grid { grid-template-columns: 1.1fr .9fr; align-items: start; gap: 40px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
  .footer { padding: 56px 0 56px; }
  .mobile-bar { display: none; }
  body { /* desktop: no bottom bar padding needed */ }
}

@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--realtor { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
