/* =========================================================
   TradesPro — stylesheet
   Brand: black / white / orange (#e8621a-ish), bold industrial sans
   ========================================================= */

:root {
  --orange: #e35d1f;
  --orange-dark: #c94f18;
  --black: #131313;
  --charcoal: #262626;
  --gray: #6b6b6b;
  --light-gray: #f2f2f2;
  --white: #ffffff;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.6em;
}

ul { margin: 0; padding: 0; list-style: none; }

.btn {
  display: inline-block;
  padding: 0.85em 1.6em;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover { background: var(--orange-dark); }

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn--dark:hover { background: var(--black); }

.btn--dark2 {
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--dark2:hover { background: rgba(0,0,0,0.75); }

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

/* ---------------------------------------------------------
   Top utility bar
   --------------------------------------------------------- */
.topbar {
  background: var(--white);
  color: var(--white);
  padding: 0.75rem 1.5rem;
}

.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

/* ---------------------------------------------------------
   Diagonal cut behind the left-side logo (top bar)
   --------------------------------------------------------- */
.topbar__inner .brand--corner:first-child {
  position: relative;
  z-index: 1;
  padding: 0.6rem 1.5rem 0.6rem 1.5rem; /* extra right padding = room for the taper */
}
 
.topbar__inner .brand--corner:first-child::before {
  content: "";
  position: absolute;
  top: -0.75rem;      /* bleed up to the very top of the black bar */
  bottom: -0.75rem;   /* bleed down to the very bottom of the black bar */
  left: -100.5rem;       /* bleed to the left edge of the page */
  right: -1.5rem;        /* how far the widest point of the black shape reaches */
  background: #000;    /* or var(--black) if that variable exists in your file */
  clip-path: polygon(0 0, 100% 0, calc(100% - 3rem) 100%, 0 100%);
  z-index: -1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  white-space: nowrap;
}

.brand__logo {
  height: 200px;
  width: auto;
  display: block;
}

.brand__t { color: var(--orange); }
.brand__house { color: var(--gray); font-size: 1.2rem; }
.brand__p { color: var(--gray); }
.brand__text em { color: var(--orange); font-style: normal; }
.brand__text { font-size: 1rem; letter-spacing: 0.03em; }

.brand--right { justify-content: flex-end; text-align: right; }
.brand__stack { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; }
.brand__sub { font-family: 'Brush Script MT', cursive; font-weight: 400; color: var(--gray); font-size: 0.9rem; }

.topbar__center { text-align: center; }

.social-row { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.social-row a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
}
.social-row a:hover { background: var(--orange); }

.emergency-line {
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.topbar__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.topbar__actions .btn { padding: 0.6em 1.2em; font-size: 0.85rem; }
.topbar__actions .btn--dark:first-child { background: var(--orange); }
.topbar__actions .btn--dark:first-child:hover { background: var(--orange-dark); }

.google-review {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--black);
  padding: 0.35em 0.8em;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.google-review__g {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #4285F4;
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
}

/* ---------------------------------------------------------
   Main nav
   --------------------------------------------------------- */
.mainnav {
  background: var(--black);
  border-top: 1px solid #2c2c2c;
}

.mainnav__list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.mainnav__list li a {
  display: block;
  padding: 1rem 1.1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color 0.15s ease, background 0.15s ease;
}

.mainnav__list li a:hover { color: var(--orange); background: rgba(255,255,255,0.03); }

.mainnav__cta { color: var(--orange) !important; }

.mainnav__toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  margin: 0.5rem auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.mainnav__toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2b2b2b, #171717);
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(227,93,31,0.15), transparent 45%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 40px);
}

.hero__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero__card {
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(2px);
  padding: 2.5rem;
  border-radius: 10px;
  border-left: 5px solid var(--orange);
}

.hero__card h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.hero__tagline {
  color: #e6e6e6;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
}

.hero__buttons { display: flex; flex-direction: column; gap: 0.8rem; max-width: 340px; }

.hero__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  background: #d9d9d9; /* shows while the real photo loads */
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* ---------------------------------------------------------
   Services grid
   --------------------------------------------------------- */
.services {
  background: var(--orange);
  padding: 3.5rem 1.5rem;
}

.services__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem 1rem;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  color: var(--white);
}

.service__icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0,0,0,0.35); /* shows while the real photo loads */
  border: 3px solid rgba(255,255,255,0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service:hover .service__icon {
  transform: scale(1.06);
  border-color: var(--white);
}

.service__label {
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.25;
}

/* ---------------------------------------------------------
   About
   --------------------------------------------------------- */
.about {
  padding: 4.5rem 1.5rem;
  background: var(--white);
}
.about__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about__inner h2 { font-size: 2rem; color: var(--black); }
.about__inner p { color: var(--gray); margin-bottom: 1.2rem; }
.about__inner .btn { margin-top: 0.5rem; }

/* ---------------------------------------------------------
   Solutions
   --------------------------------------------------------- */
.solutions {
  background: var(--light-gray);
  padding: 4rem 1.5rem;
}
.solutions__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.solutions__text h2 { font-size: 1.9rem; color: var(--black); }
.solutions__text p { color: var(--gray); }
.solutions__media {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  background: var(--charcoal); /* shows while the real photo loads */
}

/* ---------------------------------------------------------
   Business support banner
   --------------------------------------------------------- */
.support-banner {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.support-banner__inner { max-width: 700px; margin: 0 auto; }
.support-banner h2 { color: var(--white); font-size: 1.8rem; }
.support-banner p { color: #cfcfcf; margin-bottom: 1.5rem; }

/* ---------------------------------------------------------
   Why choose us
   --------------------------------------------------------- */
.why {
  padding: 4.5rem 1.5rem;
  background: var(--white);
}
.why__inner { max-width: 820px; margin: 0 auto; }
.why h2 { text-align: center; font-size: 2rem; color: var(--black); }
.why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
  margin: 1.8rem 0;
}
.why__list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
}
.why__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.why > .why__inner > p { color: var(--gray); text-align: center; }

/* ---------------------------------------------------------
   Emergency CTA
   --------------------------------------------------------- */
.emergency-cta {
  background: var(--orange);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}
.emergency-cta__inner { max-width: 720px; margin: 0 auto; }
.emergency-cta h2 { color: var(--white); font-size: 1.9rem; }
.emergency-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.emergency-cta__divider {
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2.5rem;
  letter-spacing: 0.03em;
}
.emergency-cta .btn--orange {
  background: var(--black);
}
.emergency-cta .btn--orange:hover { background: #000; }

/* ---------------------------------------------------------
   Remodeling page: final CTA (phone icon banner)
   --------------------------------------------------------- */
.final-cta {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 3rem 1.5rem;
}
.final-cta__inner { max-width: 600px; margin: 0 auto; }
.final-cta__icon { display: block; font-size: 2.5rem; margin-bottom: 0.8rem; }
.final-cta p {
  letter-spacing: 0.05em;
  margin: 0.3rem 0;
}
.final-cta a { font-weight: 800; color: var(--black); }
.final-cta a:hover { text-decoration: underline; }

/* ---------------------------------------------------------
   Brand logos
   --------------------------------------------------------- */
.brands {
  padding: 2.5rem 1.5rem;
  background: var(--light-gray);
}
.brands__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.brands__inner img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(15%);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: #d6d6d6;
  padding: 3.5rem 1.5rem 1.5rem;
}
.site-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1.4fr;
  gap: 2.5rem;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin: 1rem 0 0.4rem; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col p { margin: 0 0 0.5rem; font-size: 0.92rem; }
.footer-col a:hover { color: var(--orange); }

.payment-row, .social-row--footer {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 0.8rem;
}
.payment-row span {
  font-size: 0.72rem;
  background: var(--charcoal);
  padding: 0.25em 0.6em;
  border-radius: 4px;
}
.social-row--footer a {
  width: 26px; height: 26px; font-size: 0.75rem;
}

.google-review--footer { margin-top: 1rem; }

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.site-footer__disclaimer {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  font-size: 0.78rem;
  color: #8a8a8a;
  text-align: center;
}

.site-footer__bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #2c2c2c;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.site-footer__bottom a:hover { color: var(--orange); }

/* ---------------------------------------------------------
   Back to top
   --------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ---------------------------------------------------------
   Sub-page hero (Plumbing, Electrical, HVAC, etc.)
   --------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #2b2b2b, #171717);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.page-hero__inner { max-width: 780px; margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: clamp(1.7rem, 4vw, 2.5rem); }
.page-hero p { color: #d8d8d8; font-size: 1.05rem; margin-bottom: 1.6rem; }

/* ---------------------------------------------------------
   Generic content sections used across sub-pages
   --------------------------------------------------------- */
.content-section { padding: 4rem 1.5rem; background: var(--white); }
.content-section--alt { background: var(--light-gray); }
.content-section__inner { max-width: var(--max-width); margin: 0 auto; }
.content-section h2 { font-size: 1.7rem; color: var(--black); }
.content-section h3 { font-size: 1.15rem; color: var(--black); margin-top: 1.4rem; }
.content-section > .content-section__inner > p:first-of-type { max-width: 760px; }
.content-section p { color: var(--gray); }

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  background: #dcdcdc;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.icon-list { margin: 1.2rem 0; }
.icon-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--charcoal);
}
.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.two-col-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.pro-con-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.pro-con-card h4 { margin: 0 0 0.6rem; font-size: 1rem; }
.pro-con-card p { margin: 0; font-size: 0.92rem; }

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.6rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}
.testimonial-card .stars { color: var(--orange); letter-spacing: 0.1em; margin-bottom: 0.6rem; display: block; }
.testimonial-card p.quote { color: var(--charcoal); font-style: italic; margin-bottom: 0.8rem; }
.testimonial-card .author { font-weight: 700; color: var(--black); font-size: 0.9rem; }

/* ---------------------------------------------------------
   Gallery
   --------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid figure { margin: 0; }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #dcdcdc;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 6px; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  background: none; border: none; cursor: pointer;
}
.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  color: #ddd;
  font-size: 0.85rem;
  max-width: 80vw;
  text-align: center;
}

/* ---------------------------------------------------------
   Forms (Get a Quote / Business Support)
   --------------------------------------------------------- */
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-grid label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.7em 0.8em;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-grid textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 1rem; text-align: center; }
.form-submit { width: 100%; margin-top: 0.5rem; }

/* ---------------------------------------------------------
   Business Support / ROI calculator
   --------------------------------------------------------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.6rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; margin: 0; }

.roi-calc {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  max-width: 720px;
  margin: 2rem auto 0;
}
.roi-calc label { display: block; font-weight: 700; font-size: 0.85rem; margin: 1rem 0 0.35rem; }
.roi-calc select, .roi-calc input[type="number"] {
  width: 100%;
  padding: 0.7em 0.8em;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  font-family: var(--font-body);
}
.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  margin-top: 1.8rem;
}
.roi-results .roi-value { font-size: 1.6rem; font-weight: 900; color: var(--orange); }
.roi-results .roi-label { font-size: 0.8rem; color: var(--gray); }
.roi-fineprint { font-size: 0.75rem; color: var(--gray); margin-top: 1rem; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 980px) {
  .topbar__inner { grid-template-columns: 1fr; text-align: center; }
  .brand--right { justify-content: center; }
  .brand__stack { align-items: center; }
  .hero__inner { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .solutions__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .two-col-lists { grid-template-columns: 1fr; }
  .pro-con-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .roi-results { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .mainnav__toggle { display: flex; }
  .mainnav__list {
    display: none;
    flex-direction: column;
    text-align: center;
  }
  .mainnav__list.open { display: flex; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__list { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
}
