:root {
  /* Three-color brand system: vehicle-wrap navy, white, and HVAC orange */
  --navy: #003b85;
  --navy-dark: #00275c;
  --navy-deep: #001b42;
  --navy-light: #0b58b8;
  --navy-glow: rgba(11, 88, 184, 0.34);

  --orange: #ff7a00;
  --orange-light: #ff9a1f;
  --orange-dark: #d95700;
  --orange-glow: rgba(255, 122, 0, 0.34);

  --white: #f5f8fc;
  --white-pure: #ffffff;
  --white-soft: rgba(245, 248, 252, 0.82);
  --white-faint: rgba(245, 248, 252, 0.10);
  --white-border: rgba(245, 248, 252, 0.20);

  --shadow: 0 24px 70px rgba(0, 27, 66, 0.38);
  --shadow-soft: 0 14px 38px rgba(0, 27, 66, 0.24);
  --radius: 26px;
  --transition: 220ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(11,88,184,.42), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(255,122,0,.10), transparent 30%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-dark) 52%, var(--navy) 100%);
  background-attachment: fixed;}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  display: grid;
  grid-template-columns: auto minmax(480px, 1fr) auto;
  align-items: center;
  gap: 34px;

  min-height: 124px;
  padding: 18px clamp(24px, 4vw, 76px);

  background: rgba(0, 27, 66, .95);
  border-bottom: 1px solid var(--white-border);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 12px 38px rgba(0, 27, 66, .34),
    0 1px 0 rgba(255,255,255,.05);
}

.brand {
  display: contents;
}


/* =========================
   Larger round logo
   ========================= */

.brand img {
  width: 92px;
  height: 92px;

  grid-column: 1;

  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;

  box-shadow:
    0 0 0 3px var(--orange),
    0 0 24px rgba(112, 207, 255, .34),
    0 12px 28px rgba(0,0,0,.30);
}


/* =========================================
   COMPANY NAME / GUNMETAL NAMEPLATE
   ========================================= */

.brand span {
  position: relative;
  grid-column: 2;
  justify-self: center;

  display: inline-block;

  padding: 20px 52px 22px;
  min-width: 620px;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.025em;
  text-align: center;

  /*
   Keep the real HTML text present for sizing,
   but visually hide it.
  */
  color: transparent;

  border-radius: 12px;
  border: 2px solid #747c81;

  /*
   Four bolts + gunmetal plate.
   This is now the ACTUAL background of the span,
   so there are no z-index conflicts.
  */
  background:

    /* top-left bolt */
    radial-gradient(
      circle at 13px 13px,
      #f2f4f5 0 2px,
      #a7adb1 2.5px 4px,
      #484f54 4.5px 6px,
      transparent 6.5px
    ),

    /* top-right bolt */
    radial-gradient(
      circle at calc(100% - 13px) 13px,
      #f2f4f5 0 2px,
      #a7adb1 2.5px 4px,
      #484f54 4.5px 6px,
      transparent 6.5px
    ),

    /* bottom-left bolt */
    radial-gradient(
      circle at 13px calc(100% - 13px),
      #f2f4f5 0 2px,
      #a7adb1 2.5px 4px,
      #484f54 4.5px 6px,
      transparent 6.5px
    ),

    /* bottom-right bolt */
    radial-gradient(
      circle at calc(100% - 13px) calc(100% - 13px),
      #f2f4f5 0 2px,
      #a7adb1 2.5px 4px,
      #484f54 4.5px 6px,
      transparent 6.5px
    ),

    /* subtle cool-to-warm metallic reflection */
linear-gradient(
  105deg,
  rgba(112,207,255,.10) 0%,
  transparent 25%,
  transparent 62%,
  rgba(255,122,0,.12) 82%,
  rgba(255,154,31,.16) 100%
),

/* sharper metallic sheen */
linear-gradient(
  180deg,
  rgba(255,255,255,.16) 0%,
  rgba(255,255,255,.04) 30%,
  rgba(0,0,0,.08) 55%,
  rgba(0,0,0,.30) 100%
),

/* gunmetal base */
linear-gradient(
  135deg,
  #626a70 0%,
  #444b50 22%,
  #292f33 50%,
  #3c4348 76%,
  #22282c 100%
);

    box-shadow:
  inset 1px 1px 0 rgba(235,240,243,.28),
  inset -1px -1px 0 rgba(0,0,0,.68),
    0 8px 22px rgba(0,0,0,.36),
    0 0 14px rgba(112,207,255,.08),
    0 2px 0 rgba(255,122,0,.32);
}


/* =========================================
   INNER BEVELED EDGE
   ========================================= */

.brand span::before {
  content: "";

  position: absolute;
  inset: 6px;

  border-radius: 8px;

  border-top: 2px solid rgba(235, 240, 243, .42);
  border-left: 2px solid rgba(215, 222, 226, .30);
  border-right: 2px solid rgba(20, 24, 27, .62);
  border-bottom: 2px solid rgba(12, 16, 18, .72);

  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.10),
    inset -1px -1px 0 rgba(0,0,0,.38);

  pointer-events: none;
}


/* =========================================
   VISIBLE GRADIENT COMPANY NAME
   ========================================= */

/* =========================================
   MACHINED COMPANY NAME LETTERING
   ========================================= */

.brand span::after {
  content: "Valerie HVAC & Insulation Services";

  position: absolute;
  inset: 9px 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  font-family: inherit;

  /*
   Slightly smaller than the plate's sizing,
   so the lettering sits comfortably
   inside the bevel.
  */
  font-size: .86em;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;

  text-align: center;

  /*
   Keep company name on ONE line
   on desktop/tablet.
  */
  white-space: nowrap;

  /*
   Two-tone metallic treatment:
   cool steel-blue → machined silver.
  */
  background: linear-gradient(
  90deg,
  #8fd3ee 0%,
  #c9e6ee 24%,
  #eef1ef 43%,
  #e8ddd0 58%,
  #e8a55e 76%,
  #ff7a00 100%
);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  /*
   Extremely subtle engraved / stamped edge.
  */
  -webkit-text-stroke:
    .35px rgba(18, 24, 28, .58);

  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.18))
    drop-shadow(0 -1px 0 rgba(0,0,0,.42));

  pointer-events: none;
}

.site-header nav { grid-column: 3; display: flex; align-items: center; gap: 10px; }
.site-header nav a {
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--navy-deep);
  background: var(--white);
  transform: translateY(-1px);
}
.quote-link {
  color: var(--navy-deep) !important;
  background: linear-gradient(135deg, var(--orange-light), var(--orange)) !important;
  box-shadow: 0 8px 22px var(--orange-glow);
}
.quote-link:hover {
  color: var(--navy-deep) !important;
  background: var(--white) !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--white-border);
  background: var(--orange);
  color: var(--navy-deep);
  border-radius: 12px;
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: center;
  padding: clamp(44px,7vw,90px) clamp(20px,5vw,80px);
  background:
    linear-gradient(110deg, rgba(0,27,66,.90), rgba(0,59,133,.72)),
    radial-gradient(circle at 82% 25%, rgba(255,122,0,.17), transparent 34%);
}
.hero h1,
.page-hero h1 {
  font-size: clamp(38px,6vw,78px);
  line-height: .94;
  margin: 10px 0 16px;
  color: var(--white);
  letter-spacing: -.05em;
}
.hero p,
.page-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white-soft);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  color: var(--orange-light);
  font-size: .82rem;
}

.hero-card,
.image-panel,
.stamp-card,
.contact-card,
.service-form {
  background: linear-gradient(145deg, rgba(11,88,184,.78), rgba(0,39,92,.88));
  border: 1px solid var(--white-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.hero-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition), border-color var(--transition);
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,27,66,.34);
}
.primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: var(--navy-deep);
}
.primary:hover,
.primary:focus-visible {
  background: var(--white);
  color: var(--navy);
  border-color: var(--orange);
}
.secondary,
.phone {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}
.secondary:hover,
.phone:hover,
.secondary:focus-visible,
.phone:focus-visible {
  background: var(--orange);
  color: var(--navy-deep);
  border-color: var(--orange-light);
}
.light {
  background: var(--white);
  color: var(--navy-deep);
}
.light:hover,
.light:focus-visible {
  background: var(--orange);
  color: var(--navy-deep);
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--orange);
  color: var(--white);
}
.trust-strip div {
  padding: 24px clamp(20px,5vw,70px);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  transition: background var(--transition), color var(--transition);
}
.trust-strip div:hover { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); color: var(--white-pure); }
.trust-strip strong { display: block; color: var(--orange-light); font-size: 1.35rem; }
.trust-strip div:hover strong { color: var(--white); }
.trust-strip span { opacity: .92; }

.section { padding: clamp(50px,7vw,90px) clamp(20px,5vw,80px); }
.section-head { max-width: 820px; margin: 0 auto 28px; text-align: center; }
.section h2,
.page-hero h2 {
  font-size: clamp(28px,4vw,48px);
  line-height: 1.05;
  color: var(--white);
}
.section p { color: var(--white-soft); }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, rgba(11,88,184,.78), rgba(0,39,92,.92));
  border: 1px solid var(--white-border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover,
.card:focus-within,
.card.is-active {
  transform: translateY(-8px) scale(1.01);
  color: var(--navy-deep);
  background: linear-gradient(145deg, var(--orange-light), var(--orange));
  border-color: var(--orange-light);
  box-shadow: 0 20px 46px var(--orange-glow);
}
.card h3 { color: var(--white); font-size: 1.35rem; transition: color var(--transition); }
.card p { color: var(--white-soft); transition: color var(--transition); }
.card:hover h3,
.card:hover p,
.card:focus-within h3,
.card:focus-within p,
.card.is-active h3,
.card.is-active p { color: var(--navy-deep); }
.icon { font-size: 2rem; }
.center { text-align: center; margin-top: 28px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 34px; }
.copy-panel { padding: 10px 0; }
.image-panel img,
.stamp-card img { height: 360px; width: 100%; object-fit: cover; }

.page-hero {
  padding: clamp(50px,8vw,100px) clamp(20px,5vw,80px);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,122,0,.18), transparent 38%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-bottom: 1px solid var(--white-border);
}
.page-hero h1,
.page-hero p { color: var(--white); }
.services-grid { grid-template-columns: repeat(4,1fr); }

.cta-band {
  margin: 0 clamp(20px,5vw,80px) 70px;
  padding: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-soft);
}
.cta-band h2 { margin: 0; color: var(--navy-deep); }

.values {
  padding: 30px clamp(20px,5vw,80px) 80px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.values article {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  border: 1px solid var(--white-border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.values article:hover { transform: translateY(-6px); background: linear-gradient(145deg, var(--orange-light), var(--orange)); color: var(--navy-deep); }
.values h3 { color: var(--orange-light); }
.values article:hover h3 { color: var(--navy-deep); }
.stamp-card { padding: 18px; }
.stamp-card h3,
.contact-card h3 { color: var(--white); }

.form-section {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 28px;
  padding: clamp(30px,6vw,80px) clamp(20px,5vw,80px);
}
.service-form { padding: 26px; display: grid; gap: 16px; }
.form-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(245,248,252,.09);
  border: 1px solid var(--white-border);
  border-radius: 20px;
  padding: 14px;
}
.form-heading img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.form-heading h2 { margin: 0; color: var(--white); }
label { display: grid; gap: 6px; font-weight: 800; color: var(--white); }
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--navy-deep);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 14px;
  font: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.quote-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.form-status.success {
  color: #b9f6ca;
}

.form-status.error {
  color: #ffd2cc;
}
#quoteForm button:disabled {
  cursor: wait;
  opacity: 0.7;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,0,.18);
  background: var(--white-pure);
}
textarea { resize: vertical; }
.full { width: 100%; }
.form-note { color: var(--white-soft); font-size: .9rem; }
.contact-card { padding: 26px; height: max-content; }

footer {
  padding: 26px clamp(20px,5vw,80px);
  background: var(--navy-deep);
  color: var(--white);
  border-top: 1px solid var(--white-border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
footer a { color: var(--orange-light); }

.floaty { animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
/*
 * Content remains visible if JavaScript fails.
 */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity .65s ease,
    transform .65s ease;
}

/*
 * Only hide reveal elements when JavaScript
 * has successfully loaded.
 */
html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
}

html.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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



/* =========================================
   SERVICES PAGE FULL-PAGE HOUSE BACKGROUND
   ========================================= */

.services-page {
  position: relative;
  isolation: isolate;
}

/* Large scrolling house-layout background */
.services-page::before {
  content: "";

  position: fixed;

  top: 124px;
  left: 50%;

  width: 175vw;
  height: 220vh;

  transform: translate3d(
    -50%,
    var(--house-parallax, 0px),
    0
  );

  background-image: url("images/logo-original.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;

  opacity: 0.22;

  filter:
    saturate(.82)
    contrast(.92)
    brightness(.82);

  pointer-events: none;
  z-index: -1;

  will-change: transform;
}


/* Hidden on desktop */
.mobile-house-layout {
  display: none;
}

.services-intro {
  background: rgba(0, 27, 66, 0.58);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  border-radius: 24px;
}

/* =========================================
   SERVICES PAGE ONLY — CARD TRANSPARENCY
   ========================================= */

.services-page .services-grid .card {
  background: linear-gradient(
    145deg,
    rgba(11, 88, 184, 0.72),
    rgba(0, 39, 92, 0.76)
  );

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  border: 1px solid rgba(245, 248, 252, 0.22);
}
.services-page .services-grid .card:hover,
.services-page .services-grid .card:focus-within,
.services-page .services-grid .card.is-active {
  background: linear-gradient(
    145deg,
    var(--orange-light),
    var(--orange)
  );

  color: var(--navy-deep);
  border-color: var(--orange-light);

  box-shadow:
    0 20px 46px var(--orange-glow);

  transform:
    translateY(-8px)
    scale(1.01);
}
/* =========================================
   SERVICES PAGE — DESKTOP CARD GRID
   ========================================= */

.services-page .services-grid {
  width: 100%;
  max-width: none;

  margin-left: auto;
  margin-right: auto;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;

  justify-content: center;
  align-items: stretch;
}
.services-page .services-grid .card {
  width: 100%;
  height: 100%;
}


/* Mobile Layouts */
@media (max-width: 980px) {
  .services-page .services-grid {grid-template-columns: 1fr; width: 100%; gap: 20px;}    
  .hero,
  .split,
  .form-section { grid-template-columns: 1fr; }
  .card-grid,
  .services-grid,
  .values,
  .trust-strip { grid-template-columns: 1fr; }
   .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;

    min-height: 104px;
    padding: 14px 20px;
  }
  .brand {
    display: contents;
  }
  .brand img {
    grid-column: 1;

    width: 76px;
    height: 76px;
  }
  .menu-toggle {
    display: block;
    grid-column: 3;

    font-size: 24px;
    padding: 10px 14px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 112px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    background: linear-gradient(145deg, var(--navy), var(--navy-deep));
    border: 1px solid var(--white-border);
    padding: 16px;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-header nav.open { display: flex; }
  .site-header nav a { width: 100%; text-align: center; }
  .brand span {
  grid-column: 2;
  justify-self: center;

  min-width: 0;
  width: 100%;
  padding: 14px 24px 16px;

  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.05;
}
  .cta-band { display: block; }
  .cta-band .btn { margin: 8px 6px 0 0; }
  footer { display: block; }

 /*
   Turn OFF desktop parallax background.
  */
  .services-page::before {
    display: none;
  }


  /*
   Show house as real page content instead.
  */
  .mobile-house-layout {
    display: flex;

    width: 100%;

    align-items: center;
    justify-content: center;

    padding: 26px 18px 34px;

    overflow: hidden;
  }


  .mobile-house-layout img {
    display: block;

    width: 100%;
    max-width: 950px;

    height: auto;

    object-fit: contain;

    opacity: 0.72;

    filter:
      saturate(.92)
      contrast(.96)
      brightness(.92);

    border-radius: 20px;
  }
@media
  (max-width: 980px)
  and (orientation: landscape) {

  .mobile-house-layout {
    padding:
      20px
      30px
      30px;
  }

  .mobile-house-layout img {
    /*
     * Prevent an extremely wide phone from
     * making the image unnecessarily huge.
     */
    width: auto;

    max-width: 92vw;
    max-height: 72vh;

    height: auto;

    object-fit: contain;

    opacity: 0.78;
  }
}

@media (max-width: 520px) {

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;

    min-height: 92px;
    padding: 10px 12px;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  .brand span {
  padding: 11px 18px 13px;

  font-size: clamp(.9rem, 4vw, 1.1rem);
  line-height: 1.05;
}
 /*
   Turn OFF desktop parallax background.
  */
  .services-page::before {
    display: none;
  }
/*Home layout image fixes*/
.mobile-house-layout {
    padding:
      20px
      10px
      28px;
  }

  .mobile-house-layout img {
    width: 100%;

    max-width: none;

    height: auto;

    opacity: 0.78;

    border-radius: 14px;
  }


/* Smaller bolts on very small screens */
.brand span::before {
  background:

    radial-gradient(
      circle at 9px 9px,
      #e2e6e8 0 1.5px,
      #91989d 2px 3px,
      #444b50 3.5px 4.5px,
      transparent 5px
    ),

    radial-gradient(
      circle at calc(100% - 9px) 9px,
      #e2e6e8 0 1.5px,
      #91989d 2px 3px,
      #444b50 3.5px 4.5px,
      transparent 5px
    ),

    radial-gradient(
      circle at 9px calc(100% - 9px),
      #e2e6e8 0 1.5px,
      #91989d 2px 3px,
      #444b50 3.5px 4.5px,
      transparent 5px
    ),

    radial-gradient(
      circle at calc(100% - 9px) calc(100% - 9px),
      #e2e6e8 0 1.5px,
      #91989d 2px 3px,
      #444b50 3.5px 4.5px,
      transparent 5px
    ),

    linear-gradient(
      180deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.03) 30%,
      rgba(0,0,0,.12) 70%,
      rgba(0,0,0,.25)
    ),

    linear-gradient(
      135deg,
      #555d63,
      #343b40 28%,
      #252b30 55%,
      #41494e 78%,
      #292f34
    );
}
  .brand span::after {
    white-space: normal;

    font-size: .88em;
    line-height: 1.05;

    inset: 8px 14px;
  }



  .menu-toggle {
    font-size: 21px;
    padding: 8px 11px;
  }

  .site-header nav {
    top: 98px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .btn {
    width: 100%;
  }
  
  
  .services-page::before {
    width: 190vw;
    height: 165vh;

    opacity: 0.18;

    background-position: center top;
  }

}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================
   Valerie HVAC quote form stability rules
   ========================================= */

.service-form.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.form-status {
  min-height: 24px;
  margin: 2px 0;
  padding: 0;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.success {
  padding: 13px 16px;
  color: #eaffef;
  background: rgba(34, 139, 72, 0.32);
  border: 1px solid rgba(185, 246, 202, 0.55);
  border-radius: 12px;
}

.form-status.error {
  padding: 13px 16px;
  color: #fff0ee;
  background: rgba(176, 34, 34, 0.32);
  border: 1px solid rgba(255, 210, 204, 0.55);
  border-radius: 12px;
}

#quoteForm button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-heading img,
.brand img {
  background: #ffffff;
}

}