/* Blake & Sons Heating & Air — stylesheet
   Faithful rebuild: plain, conventional layout matching the live
   blakeandsons.net structure. Brand orange (#fd9626) is the real
   accent color used on the live site's own map marker. */

:root{
  --navy: #16283D;
  --blue: #25609A;
  --icon-blue: #1098D6;
  --icon-red: #CE0000;
  --star: #FDB913;
  --orange: #FD9626;
  --orange-dark: #E07F14;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #F5F6F8;
  --ink: #22282E;
  --gray: #667085;
  --line: #E4E7EB;

  --font-heading: 'Poppins', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;

  --container: 1140px;
  --radius: 6px;
}

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

body{
  margin: 0;
  padding-top: var(--topbar-h, 41px);
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
section p a, .checklist a{ color: var(--orange-dark); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
section p a:hover, .checklist a:hover{ color: var(--orange); }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy);
}
h2{ font-size: 1.6rem; text-transform: uppercase; }
h3{ font-size: 1.15rem; }
h4{ font-size: 1rem; }
p{ margin: 0 0 1em; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

:focus-visible{ outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- Top bar ---------- */
/* ---------- Header (topbar + nav stay pinned together while scrolling) ---------- */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--blue);
  color: var(--white);
  font-size: 1.05rem;
}
.topbar .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
  padding: 8px 20px;
}
.topbar-label{ font-size: 1.05rem; opacity: 0.9; min-width: 0; white-space: normal; overflow-wrap: break-word; word-wrap: break-word; }
.topbar-right{ display: flex; align-items: center; gap: 20px; min-width: 0; flex-wrap: wrap; }
.topbar-phone-mobile{ display: none; }
.mobile-page-label{ display: none; }
.topbar a{ color: var(--white); }
.topbar .btn-primary{ color: #000; }
.topbar .phone-icon{ vertical-align: -2px; margin-right: 3px; color: var(--white); width: 17px; height: 17px; }
.topbar .phone{ font-weight: 600; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.topbar .btn{ padding: 8px 20px; font-size: 1.05rem; }

@media (max-width: 960px){
  .topbar-label{ display: none; }
  .topbar-phone-full{ display: none; }
  .topbar-phone-mobile{ display: inline-block; font-weight: 600; text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
  .topbar-right{ width: 100%; justify-content: center; gap: 10px; }
  .mobile-page-label{
    display: block;
    text-align: center;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0 20px 10px;
    margin: 0;
  }
}

/* ---------- Header ---------- */
.site-header{
  position: relative;
  z-index: 190;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  min-width: 0;
}
.brand{ display: flex; align-items: center; gap: 10px; flex: none; min-width: 0; overflow: hidden; }
.brand img{ height: 82px; width: auto; border-radius: 4px; }

.main-nav{ display: flex; align-items: center; }
.main-nav > ul{ display: flex; align-items: stretch; }
.main-nav > ul > li{ position: relative; }
.main-nav > ul > li > a, .main-nav > ul > li > button{
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > button:hover{ color: var(--orange-dark); }
.caret{ width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; }
.nav-icon{ flex: none; opacity: 0.85; }
@media (min-width: 961px){
  .main-nav .nav-icon{ width: 18px; height: 18px; }
}
.nav-label{ display: inline-flex; align-items: center; gap: 5px; }

.dropdown{
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(22,40,61,0.12);
  padding: 6px;
  border-radius: var(--radius);
  z-index: 190;
}
li.open .dropdown{ display: block; }
.dropdown a{ display: block; padding: 10px 12px; font-size: 0.92rem; border-radius: 4px; color: var(--ink); }
.dropdown a:hover{ background: var(--bg-alt); color: var(--orange-dark); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary{ background: var(--orange); color: #000; text-transform: uppercase; }
.btn-primary:hover{ background: var(--orange-dark); }
.btn-outline{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color: var(--white); }
.btn-block{ width: 100%; }

.header-cta{ display: flex; align-items: center; gap: 10px; }

.hamburger{
  display: none;
  width: 42px; height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: none;
  margin-right: 8px;
}
.hamburger span, .hamburger span::before, .hamburger span::after{
  content: '';
  position: absolute;
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: var(--orange);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.hamburger span{ left: 8px; top: 20px; }
.hamburger span::before{ left: 0; top: -8px; }
.hamburger span::after{ left: 0; top: 8px; }
.hamburger.active span{ background: transparent; }
.hamburger.active span::before{ top: 0; transform: rotate(45deg); background: var(--orange); }
.hamburger.active span::after{ top: 0; transform: rotate(-45deg); background: var(--orange); }

/* ---------- Hero: real site uses a full-bleed photo with a dark overlay panel ---------- */
.hero{
  position: relative;
  color: var(--white);
  text-align: center;
  padding: clamp(50px, 9vw, 110px) 0;
  min-height: clamp(280px, 24vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--blue);
}
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: var(--hero-size, cover);
  background-position: var(--hero-pos, center 30%);
  z-index: 0;
}
.hero::after{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,14,18,0.45);
  z-index: 0;
}
.hero > .container{ position: relative; z-index: 1; width: 100%; }
.hero-panel{
  max-width: 640px;
  margin: 0 auto;
  background: rgba(15,18,22,0.62);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 40px);
}
.hero h1{ color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 auto 0.3em; text-transform: uppercase; }
.hero p.lede{ color: #E4E9ED; max-width: 52ch; margin: 0 auto 20px; font-size: 1rem; }
.hero-actions{ display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- Blue section (testimonials + any full-bleed blue band) ---------- */
.section-blue{ background: var(--blue); color: var(--white); }
.section-blue .stars{ color: var(--star); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 14px; }
.section-blue .testimonial .kicker{ color: #CFE0F0; }
.section-blue .testimonial p.quote{ color: var(--white); }
.section-blue .testimonial .who{ color: var(--white); }
.section-blue .testimonial a.more{
  display: inline-block;
  margin-top: 16px;
  color: var(--white);
  border: 2px solid var(--orange);
  background: var(--orange);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.88rem;
}
.section-blue .testimonial a.more:hover{ background: var(--orange-dark); border-color: var(--orange-dark); }

/* ---------- Sections ---------- */
section{ padding: clamp(40px, 6vw, 64px) 0; }
section.alt{ background: var(--bg-alt); }
.section-title{ text-align: center; max-width: 62ch; margin: 0 auto 30px; }
.section-title h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); }
.section-title p{ color: var(--gray); }

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.two-col.reverse .media{ order: 2; }
.two-col img{ border-radius: 8px; border: 1px solid var(--line); }

.checklist li{
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.checklist li::before{
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--orange);
  font-weight: 700;
}

/* service icon grid */
.service-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{ box-shadow: 0 8px 20px rgba(22,40,61,0.08); transform: translateY(-2px); }
.service-card .icon{
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
}
.service-card .icon img{ width: 100%; height: 100%; object-fit: contain; }
.service-card h3{ font-size: 1.05rem; margin-bottom: 4px; color: var(--navy); transition: color .2s ease; }
.service-card:hover h3{ color: var(--orange); }
@media (min-width: 961px){
  .service-card{ padding: 34px 26px; }
  .service-card .icon{ width: 80px; height: 80px; }
  .service-card h3{ font-size: 1.2rem; }
}

/* testimonial callout */
.testimonial{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial .kicker{
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 12px;
}
.testimonial p.quote{
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--navy);
  font-style: italic;
}
.testimonial .who{ font-weight: 700; margin-top: 10px; }
.testimonial .stars{ color: var(--orange); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial a.more{ display: inline-block; margin-top: 14px; font-weight: 700; color: var(--orange-dark); }

/* coupons / badges */
.coupon-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coupon-grid img{ border-radius: 8px; border: 1px solid var(--line); }

.badge-row{
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.badge-row img{ height: 46px; width: auto; }
.badge-row-lg img{ height: 75px; }

.trust-badge-row{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.trust-badge-row img{ height: 120px; width: auto; }
@media (max-width: 640px){
  .trust-badge-row{ flex-direction: column; align-items: center; justify-content: center; }
  .trusted-section-actions{ justify-content: center !important; }
  .trust-badge-row img{ height: 110px; }
}

.review-widget{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 14px rgba(22,40,61,0.06);
}
.rw-header{ display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rw-label{ font-size: 0.75rem; color: var(--gray); }
.rw-badge{ font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: var(--navy); }
.rw-score-row{ display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.rw-score{ font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--navy); }
.rw-stars-block{ display: flex; flex-direction: column; }
.rw-stars{ color: var(--star); font-size: 0.9rem; letter-spacing: 2px; }
.rw-count{ font-size: 0.72rem; color: var(--gray); }
.rw-carousel{ position: relative; min-height: 148px; border-top: 1px solid var(--line); }
.rw-row{
  display: none;
  gap: 10px;
  padding: 10px 0;
  opacity: 0;
  animation: rw-fade-in 0.5s ease forwards;
}
.rw-row.active{ display: flex; }
@keyframes rw-fade-in{ from{ opacity: 0; } to{ opacity: 1; } }
.rw-avatar{
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--icon-blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.rw-text{ font-size: 0.78rem; color: var(--ink); line-height: 1.4; margin: 0; }

/* manufacturer brand strip — wraps/centers on desktop */
/* Real carousel at every width — confirmed via desktop screenshots that the
   arrow+dot paging behavior is not mobile-only. Pages through 5 logos at a
   time; mobile stacks them vertically, desktop shows them in a row. */
.brand-strip{
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 20px 60px;
  min-height: 110px;
}
.brand-strip img{
  display: none;
  height: 85px;
  max-width: 260px;
  width: auto;
  opacity: 1;
  filter: none;
}
.brand-strip img.active{ display: block; }
.brand-strip .carousel-arrow{
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
}
.brand-strip .carousel-prev{ left: 4px; }
.brand-strip .carousel-next{ right: 4px; }
.carousel-dots{ display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.carousel-dots .carousel-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  padding: 0;
  cursor: pointer;
}
.carousel-dots .carousel-dot.active{ background: var(--orange); }

/* mobile: stack the 5 active logos vertically instead of a row */
@media (max-width: 640px){
  .brand-strip{
    flex-direction: column;
    padding: 20px 60px;
    gap: 30px;
    min-height: 0;
  }
  .brand-strip img{ height: 68px; max-width: 220px; margin: 0 auto; }
  .hero-actions{ gap: 10px; }
  .hero-actions .btn{ padding: 11px 14px; font-size: 0.82rem; }
}

.photo-row{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-row img{ border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.project-list{ max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.project-card img{ border-radius: 8px; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.project-location{ margin: 10px 0 0; font-size: 0.9rem; color: var(--gray); }

/* cards used on reviews/services listing pages */
.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.card p.quote{ color: var(--navy); font-style: italic; margin-bottom: 10px; }
.card .who{ font-weight: 700; font-size: 0.9rem; color: var(--gray); }
.grid{ display: grid; gap: 18px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

/* review list — avatar, timestamp, stars, truncated text, matching live site's widget */
.review-list{ max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.review-row{
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.review-avatar{
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--icon-blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.review-body{ flex: 1; }
.review-name-row{ display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.review-name{ font-weight: 700; color: var(--navy); }
.review-time{ font-size: 0.82rem; color: var(--gray); }
.review-stars{ color: var(--star); font-size: 0.95rem; margin: 4px 0 8px; letter-spacing: 2px; }
.review-text{ color: var(--ink); font-size: 0.95rem; }
.review-text .more-link{ color: var(--orange-dark); font-weight: 700; }
.more{ text-transform: uppercase; }
.view-more-wrap{ text-align: center; margin-top: 28px; }

.chip-row{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.chip:hover{ border-color: var(--orange); color: var(--orange-dark); }

.breadcrumb{ font-size: 0.85rem; color: var(--gray); margin-bottom: 10px; }
.breadcrumb a:hover{ color: var(--orange-dark); }

/* form (financing/service inquiry uses none — kept minimal, standard) */
label{ display:block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
input, select, textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus{ border-color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--blue); color: #E3ECF5; padding: 50px 0 22px; font-size: 1.05rem; }
.footer-top{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
}
.footer-top h6{
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-top ul li{ margin-bottom: 1px; font-size: 1.05rem; line-height: 1.25; }
.footer-top a{ text-decoration: underline; }
.footer-top a.btn{ text-decoration: none; }
.footer-top a:hover{ color: var(--orange); }
.footer-brand-block{ display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-brand-block img{ height: 140px; width: 140px; border-radius: 50%; object-fit: contain; background: #fff; }
.footer-badges{ display: flex; gap: 14px; margin: 18px 0; flex-wrap: wrap; }
.footer-badges img{ height: 40px; }
.footer-map img{ border-radius: 8px; max-width: 100%; }
.social-row{ display: flex; gap: 10px; margin-top: 14px; }
.social-row a{
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.social-row a:hover{ border-color: var(--orange); color: var(--orange); }
.footer-social{
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.footer-social h5{ font-size: 1.4rem; margin-bottom: 16px; }
.footer-social .social-row{ justify-content: center; }
.footer-social .social-row a{ width: 50px; height: 50px; font-size: 1.3rem; }
.footer-social .social-row a svg{ width: 26px; height: 26px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: #8B98A8;
}
.footer-bottom a{ text-decoration: underline; }
.footer-bottom a:hover{ color: var(--orange); }

/* ---------- Mobile ---------- */
@media (max-width: 960px){
  .main-nav{ display: none; }
  .hamburger{ display: block; }
  .header-row{ justify-content: space-between; padding: 8px 0; min-height: 118px; }
  .brand{ max-width: 85vw; margin-left: 24px; }
  .brand img{ height: 110px; width: 300px; object-fit: fill; }
  .two-col{ grid-template-columns: 1fr; }
  .two-col.reverse .media{ order: 0; }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .coupon-grid{ grid-template-columns: 1fr; }
  .photo-row{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) and (orientation: landscape){
  .header-row{ position: relative; justify-content: flex-end; }
  .brand{ position: absolute; left: 50%; transform: translateX(-50%); margin-left: 0; }
  .footer-services-cols{ display: flex; gap: 32px; text-align: center; }
  .footer-services-cols > div{ flex: 1; }
  .footer-services-cols ul{ display: inline-block; text-align: left; }
  .footer-services-cols ul li{ white-space: nowrap; font-size: 0.85rem; }
}

@media (max-width: 960px){
  .main-nav.mobile-open{
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-h, 118px);
    background: var(--white);
    overflow-y: auto;
    padding: 8px 0 40px;
    z-index: 99;
  }
  .main-nav.mobile-open > ul{ flex-direction: column; align-items: stretch; }
  .main-nav.mobile-open > ul > li > a,
  .main-nav.mobile-open > ul > li > button{
    padding: 16px 22px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }
  .main-nav.mobile-open .dropdown{
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-alt);
    display: none;
    border-radius: 0;
  }
  .main-nav.mobile-open li.open .dropdown{ display: block; }
  body.nav-open{ overflow: hidden; }
}

@media (max-width: 640px){
  .service-grid, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .photo-row{ grid-template-columns: 1fr 1fr; }
  .footer-top{ grid-template-columns: 1fr; text-align: center; }
  .footer-map{ display: flex; justify-content: center; }
  .footer-brand-block{ align-items: center; }
  .social-row{ justify-content: center; }
  .footer-bottom{ flex-direction: column; align-items: center; }
}
