@charset "utf-8";

/* ==========================================================================
   Jack Frost Drain Service, LLC - shared design system
   Cloned 1:1 from https://www.jackfrostdrainservice.com (Wix / Thunderbolt).
   Web fonts are loaded per page with a link tag in the document head.
   Source faces: Roboto Medium + Roboto Thin (headings), Manrope Light (body).
   Page subagents append page-scoped rules BELOW, each under a banner comment
   whose text is the word page followed by the page slug. Nothing above the
   marker at the end of this file may be edited by a page agent.
   ========================================================================== */

:root {
  /* Palette, taken from the source Wix theme tokens */
  --red: #AA091D;          /* color_41 / color_18 */
  --red-dark: #8C0718;
  --black: #000000;        /* color_37 */
  --white: #FFFFFF;        /* color_36 */
  --grey-100: #E8E6E6;     /* color_38 */
  --grey-200: #C7C7C7;     /* color_39 */
  --grey-500: #595959;     /* color_40 */
  --ink: #000000;          /* body copy colour on light bands */
  --soft: #FBF3F4;         /* rgba(170,9,29,.05) section wash */
  --field-bg: #FAFAFA;
  --field-border: #DDDDDD;
  --map-bg: #E8E8E8;

  /* Type */
  --font-head: "Roboto", Arial, Helvetica, sans-serif;
  --font-body: "Manrope", "Roboto", Arial, Helvetica, sans-serif;
  --h1: 70px;
  --h2: 38px;
  --h3: 35px;
  --h4: 27px;
  --h5: 17px;
  --body: 15px;
  --body-lg: 20px;
  --lead: 17px;

  /* Rhythm */
  --container: 1140px;
  --content: 980px;
  --gutter: 20px;
  --section-y: 90px;

  /* Shape */
  --radius-sm: 5px;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-photo: 0 10px 30px rgba(0, 0, 0, 0.25);

  /* Motion, matching the source transition timings */
  --t-btn: 0.4s ease;
  --t-link: 0.2s ease-in-out;
  --t-photo: 0.8s ease-in;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--body);
  font-weight: 300;
  line-height: 1.6;
}

img { border: 0; }

a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* Default heading scale, taken from the source theme's font_0 to font_6 steps.
   A bare content heading must land on the source size, never the browser
   default, so any page that writes a plain h2 still renders at 38px. */
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); margin-bottom: 20px; }
h3 { font-size: var(--h4); }
h4 { font-size: var(--h5); }

p { margin: 0 0 1.05em; }

p:last-child { margin-bottom: 0; }

/* Two-tone headings: the source pairs a Roboto-Medium phrase with a light
   Roboto-Thin phrase, usually in the brand red. */
.thin {
  font-weight: 100;
  letter-spacing: -0.02em;
}

.thin-red {
  font-weight: 100;
  color: var(--red);
  letter-spacing: -0.02em;
}

.thin-light {
  font-weight: 100;
  color: var(--white);
  letter-spacing: -0.02em;
}

.red { color: var(--red); }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-y) 0; }

.soft-section { background: var(--soft); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--red);
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 15px 22px;
  min-height: 50px;
  cursor: pointer;
  transition: background-color var(--t-btn), border-color var(--t-btn), color var(--t-btn);
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-red:hover,
.btn-red:focus-visible {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
}

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

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
}

/* White hairline button used on the hero and on the dark bands */
.btn-outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: var(--white);
  color: var(--black);
}

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

.btn-solid-light:hover,
.btn-solid-light:focus-visible {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-red {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.btn-outline-red:hover,
.btn-outline-red:focus-visible {
  background: var(--red);
  color: var(--white);
}

.btn-sm {
  font-size: 13px;
  min-height: 40px;
  padding: 11px 18px;
}

.btn-block { width: 100%; }

/* ---------- Top announcement bar ---------- */

.topbar {
  background: var(--red);
  color: var(--white);
}

.topbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-text {
  margin: 0;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--white);
}

/* ---------- Header + navigation ---------- */

.site-header {
  background: var(--white);
  position: relative;
  z-index: 50;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-block;
  line-height: 0;
  flex: none;
}

.logo img {
  display: block;
  width: 121px;
  height: 67px;
  object-fit: contain;
}

.main-nav { margin-left: auto; }

.nav-list,
.sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-list > li { position: relative; }

.nav-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--black);
  text-decoration: none;
  padding: 6px 0;
  transition: color var(--t-link);
}

.nav-link:hover,
.nav-link:focus-visible { color: var(--red); }

.nav-link.is-current { color: var(--red); }

/* SERVICES is only a dropdown trigger, not a link — keep the clickable cue. */
.has-sub > .nav-link { cursor: pointer; }

/* Real hover/focus dropdown for the SERVICES submenu. The submenu is built
   from max-height plus overflow so no rule ever hides the links themselves. */
.has-sub > .sub-list {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 190px;
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-top: 0 solid var(--red);
  transition: max-height 0.25s ease;
}

.has-sub:hover > .sub-list,
.has-sub:focus-within > .sub-list {
  max-height: 260px;
  border-top-width: 2px;
  animation: jf-fade-in 0.25s ease both;
}

.sub-list a {
  display: block;
  padding: 11px 18px;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  transition: background-color var(--t-link), color var(--t-link);
}

.sub-list a:hover,
.sub-list a:focus-visible {
  background: var(--soft);
  color: var(--red);
}

.header-cta {
  flex: none;
  margin-left: 14px;
  font-size: 15px;
  min-height: 44px;
  padding: 12px 20px;
}

/* ---------- Inner page hero band ---------- */

.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--red) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  opacity: 0.2;
}

.page-hero h1 {
  position: relative;
  margin: 0;
  padding: 0 var(--gutter);
  color: var(--white);
  font-size: 62px;
  text-align: center;
  animation: jf-rise 0.7s ease both;
}

/* ---------- Dark "Contact Our Professional Team" band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 76px 0 80px;
  text-align: center;
}

.cta-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.2;
}

.cta-band-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-band h2 {
  color: var(--white);
  font-size: var(--h2);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--white);
  font-size: 13px;
  max-width: 800px;
  margin: 0 auto 22px;
}

/* ---------- Diagonal red-wedge band ---------- */

.diag-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 74px 0 78px;
}

.diag-band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.35;
}

.diag-band-wedge {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 50%;
  pointer-events: none;
}

.diag-band-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.diag-band h2 {
  color: var(--white);
  font-size: var(--h2);
  max-width: 700px;
  margin-bottom: 16px;
}

.diag-band p {
  color: var(--white);
  font-size: 13px;
  max-width: 620px;
}

/* ---------- The +40 Years photo pair ---------- */

.photo-pair {
  position: relative;
  padding-bottom: 60px;
}

.photo-pair-main {
  display: block;
  width: 100%;
  max-width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-photo);
}

.photo-pair-small {
  display: block;
  width: 279px;
  height: 330px;
  object-fit: cover;
  position: absolute;
  left: 240px;
  bottom: 0;
  box-shadow: var(--shadow-photo);
}

.years-badge {
  position: absolute;
  top: 34px;
  left: 28px;
  width: 150px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 4px;
  padding: 12px 14px 14px;
  z-index: 2;
}

.years-badge svg {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}

.years-badge .years-num {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 500;
  color: var(--red);
  line-height: 1.05;
}

.years-badge .years-word {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.05;
}

/* ---------- Service / feature cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.svc-card-media {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.svc-card-media > img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--t-photo);
}

.svc-card:hover .svc-card-media > img { transform: scale(1.07); }

.svc-card-icon {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.svc-card-icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.svc-card-body {
  padding: 42px 22px 26px;
  text-align: center;
}

.svc-card-body h3,
.svc-card-body h5 {
  font-size: var(--h5);
  font-weight: 500;
  margin-bottom: 10px;
}

.svc-card-body p {
  font-size: 13px;
  margin: 0;
}

/* ---------- Contact block ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form .field { margin-bottom: 16px; }

.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 7px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 4px;
  padding: 11px 13px;
  transition: border-color var(--t-link);
}

.contact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form ::placeholder { color: #9A9A9A; }

/* Honeypot: off-screen, never display none, so bots that skip hidden
   inputs still fill it and real visitors never see it. */
.hp-wrap {
  position: absolute;
  left: -9999px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

/* The cartoon that sits above the "Connect with Us" heading. Scoped to
   class-less images so a page that names its own photo keeps its own sizing. */
.contact-grid img:not([class]) {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
}

.contact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  margin-top: 26px;
}

.contact-tile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-tile svg {
  flex: none;
  width: 40px;
  height: 40px;
  color: var(--red);
}

.contact-tile .tile-label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  line-height: 1.2;
}

.contact-tile .tile-value {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
  text-decoration: none;
  word-break: break-word;
}

/* ---------- Map band ---------- */

.map-band {
  background: var(--map-bg);
  height: 400px;
  line-height: 0;
}

.map-band iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  /* The source's Wix map used a dark ("night") Google style. The key-free
     embed can't carry a map style, so approximate it by inverting the light
     tiles back to a dark theme. */
  filter: invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

/* ---------- Accordion (FAQ + residential hydro-jetting list) ---------- */

.accordion { max-width: 100%; }

.acc-item { border-bottom: 1px solid var(--grey-200); }

.acc-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: color var(--t-link);
}

.acc-item > summary::-webkit-details-marker { display: none; }

.acc-item > summary:hover { color: var(--red); }

.acc-item > summary .acc-chevron {
  flex: none;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.acc-item[open] > summary .acc-chevron { transform: rotate(180deg); }

.acc-body {
  padding: 0 2px 20px;
  font-size: 13px;
  animation: jf-fade-in 0.3s ease both;
}

.acc-body p { margin-bottom: 0.8em; }

.acc-pending {
  font-size: 13px;
  color: var(--grey-500);
}

/* ---------- Testimonial slider (Swiper) ---------- */

.testimonial-swiper {
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 34px;
}

.testimonial-card {
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 30px 38px;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-card p {
  font-size: 13px;
  margin-bottom: 1.2em;
}

.testimonial-card .who {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 4px;
}

.testimonial-card .stars {
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0;
}

.testimonial-swiper .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--red);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--red);
  width: 11px;
  height: 11px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--red);
  color: var(--white);
}

.footer-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 58px 40px 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-brand { text-align: center; }

.footer-brand img {
  display: block;
  width: 239px;
  height: 132px;
  object-fit: contain;
  margin: 0 auto 14px;
  /* The source renders the red mark through an SVG colour matrix that turns
     it near-white against the red band. */
  filter: brightness(0) invert(1);
}

.footer-brand .follow {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  margin: 0;
}

.site-footer h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 22px;
}

.site-footer p {
  font-size: 14px;
  color: var(--white);
  margin: 0 0 14px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--t-link);
}

.site-footer a:hover { opacity: 0.75; }

.footer-legal {
  background: var(--black);
  text-align: center;
  padding: 13px var(--gutter);
}

.footer-legal p {
  margin: 0;
  font-size: 13px;
  color: var(--white);
}

/* ==========================================================================
   Motion. Ported from the source's own behaviour: a fade/rise entrance on
   section content, the nav submenu fade, 0.4s button colour transitions and
   the 0.8s card-photo zoom. Every entrance animation runs on load with
   animation-fill-mode both, so the element is ALWAYS visible at the end and
   nothing depends on JavaScript to reveal copy.
   ========================================================================== */

@keyframes jf-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes jf-rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes jf-rise-sm {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes jf-slide-left {
  from { opacity: 0; transform: translateX(-34px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes jf-zoom-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.anim-fade { animation: jf-fade-in 0.8s ease both; }
.anim-rise { animation: jf-rise 0.8s ease both; }
.anim-rise-sm { animation: jf-rise-sm 0.7s ease both; }
.anim-slide-left { animation: jf-slide-left 0.8s ease both; }
.anim-zoom { animation: jf-zoom-in 0.8s ease both; }

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }

  .svc-card:hover .svc-card-media > img { transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1060px) {
  .header-inner { flex-wrap: wrap; justify-content: center; }
  .main-nav { margin-left: 0; width: 100%; }
  .nav-list { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .header-cta { margin-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root {
    --h1: 44px;
    --h2: 30px;
    --h3: 27px;
    --h4: 23px;
    --section-y: 60px;
  }

  .cards { grid-template-columns: 1fr; }
  .page-hero { height: 300px; }
  .page-hero h1 { font-size: 38px; }
  .photo-pair { padding-bottom: 0; }
  .photo-pair-main { max-width: 100%; height: 340px; }
  .photo-pair-small { position: static; width: 100%; max-width: 279px; margin: 16px auto 0; }
  .years-badge { width: 122px; top: 18px; left: 16px; }
  .years-badge .years-num { font-size: 24px; }
  .years-badge .years-word { font-size: 20px; }
  .contact-tiles { grid-template-columns: 1fr; }
  .diag-band-wedge { opacity: 0.85; }
}

@media (max-width: 620px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { width: 190px; height: 105px; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .topbar-text { font-size: 14px; }
  .testimonial-card { padding: 22px 18px; }
}

/* ==========================================================================
   End of shared design system. Page-scoped rules are appended below.
   ========================================================================== */

/* page: home */

.home-hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

.home-hero-photo,
.home-hero-wedge {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-wedge {
  object-position: 0 50%;
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
}

.home-hero-inner h1 {
  color: var(--white);
  font-size: var(--h1);
  max-width: 640px;
  margin-bottom: 18px;
}

.home-hero-inner p {
  color: var(--white);
  font-size: var(--body-lg);
  max-width: 570px;
  margin-bottom: 30px;
}

.home-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) 1fr;
  gap: 70px;
  align-items: center;
}

.home-what-title {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .home-hero {
    height: auto;
    min-height: 560px;
    padding: 70px 0;
  }

  .home-hero-inner h1 { font-size: 44px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* page: commercial */

.section-lede {
  color: var(--black);
}

.section-lede p,
p.section-lede {
  font-size: 13px;
}

/* page: faq */

.faq-section {
  padding: var(--section-y) 0;
}

.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.faq-wrap h2 {
  text-align: left;
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* page: residential */

.res-h2 {
  font-size: var(--h2);
  margin-bottom: 20px;
}

.res-h2-center {
  font-size: var(--h2);
  text-align: center;
  margin-bottom: 20px;
}

.lede-center {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.acc-narrow {
  max-width: 840px;
  margin: 0 auto;
}

/* page: contact-us */

.contact-photo {
  display: block;
  width: 258px;
  height: 259px;
  object-fit: cover;
  margin-bottom: 26px;
}

.contact-h2 {
  font-size: var(--h2);
  margin-bottom: 16px;
}

@media (max-width: 620px) {
  .contact-photo { width: 100%; max-width: 258px; height: auto; aspect-ratio: 258 / 259; }
}
