/* ==========================================================================
   J. Tullos Services  Homepage (premium rebuild)
   Self-contained. Loads only on the homepage.
   Brand: navy #0D2844 / orange #F35D22
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #06192c;
  --navy-800: #0a2138;
  --navy:     #0D2844;
  --navy-700: #0f3055;
  --navy-500: #1b4a76;

  --orange:      #F35D22;
  --orange-600:  #d94a13;
  --orange-300:  #ff8a5c;

  --ice:      #ECF4FE;
  --ice-200:  #dbe9fb;
  --sky:      #4FA3E3;

  --ink:      #101b27;
  --body:     #4a5a6b;
  --muted:    #6b7c8f;
  --line:     rgba(13, 40, 68, .10);
  --white:    #fff;

  --shadow-sm: 0 2px 10px rgba(6, 25, 44, .06);
  --shadow:    0 14px 40px rgba(6, 25, 44, .10);
  --shadow-lg: 0 30px 70px rgba(6, 25, 44, .16);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --wrap: 1240px;
  --gut:  clamp(20px, 5vw, 40px);

  --ff-head: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --sec-y: clamp(64px, 8vw, 120px);
}

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

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

body.jt-home {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.jt-home h1, .jt-home h2, .jt-home h3,
.jt-home h4, .jt-home h5, .jt-home h6 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}

.jt-home p { margin: 0 0 1.1em; }
.jt-home a { color: inherit; text-decoration: none; }

.jt-wrap {
  width: min(var(--wrap), 100% - (var(--gut) * 2));
  margin-inline: auto;
}

.jt-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Shared type ---------- */
.jt-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.jt-eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.jt-eyebrow.is-light { color: var(--orange-300); }
.jt-eyebrow.is-light::before { background: var(--orange-300); }
.jt-eyebrow.is-center { }

.jt-h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.jt-h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.jt-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  color: var(--muted);
  max-width: 62ch;
}

.jt-sec-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.jt-sec-head.is-center { margin-inline: auto; text-align: center; }

/* "Complete Air Conditioning Solutions" wrapped to two lines because the
   shared .jt-sec-head cap is 720px and the heading needs ~800px at its top
   clamp size. Widen only this section's heading; the lead paragraph keeps a
   readable measure of its own. Scoped so no other section shifts. */
.jt-services .jt-sec-head { max-width: 900px; }
.jt-services .jt-sec-head .jt-h2 { text-wrap: nowrap; }
.jt-services .jt-sec-head .jt-lead { max-width: 62ch; }
@media (max-width: 980px) {
  .jt-services .jt-sec-head .jt-h2 { text-wrap: balance; }
}
.jt-sec-head.is-center .jt-lead { margin-inline: auto; }
.jt-sec-head.is-center .jt-eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.jt-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  padding: 17px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,1,.36,1),
              box-shadow .25s, background-color .25s, color .25s, border-color .25s;
  text-align: center;
  line-height: 1.1;
}
.jt-btn svg { width: 18px; height: 18px; flex: none; }

.jt-btn--primary,
.jt-home a.jt-btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 30px rgba(243, 93, 34, .32);
}
.jt-btn--primary:hover,
.jt-home a.jt-btn--primary:hover {
  background: var(--orange-600);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(243, 93, 34, .40);
}

.jt-btn--ghost,
.jt-home a.jt-btn--ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.jt-btn--ghost:hover,
.jt-home a.jt-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.14);
  transform: translateY(-3px);
}

.jt-btn--navy,
.jt-home a.jt-btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 40, 68, .24);
}
.jt-btn--navy:hover,
.jt-home a.jt-btn--navy:hover {
  background: var(--navy-700);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(13, 40, 68, .32);
}

.jt-btn--outline,
.jt-home a.jt-btn--outline {
  border-color: rgba(13,40,68,.20);
  color: var(--navy);
  background: #fff;
}
.jt-btn--outline:hover,
.jt-home a.jt-btn--outline:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.jt-textlink,
.jt-home a.jt-textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700;
  color: var(--navy);
  transition: gap .25s, color .25s;
}
.jt-textlink svg { width: 16px; height: 16px; transition: transform .25s; }
.jt-textlink:hover { color: var(--orange); gap: 13px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.jt-topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
  font-size: .86rem;
}
.jt-topbar .jt-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 46px; flex-wrap: wrap;
}
.jt-topbar-list { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.jt-topbar-item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.jt-topbar-item svg { width: 15px; height: 15px; color: var(--orange-300); flex: none; }
.jt-topbar a:hover { color: #fff; }
.jt-topbar-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700;
  color: #fff; white-space: nowrap;
}
.jt-topbar-phone {
  font-family: var(--ff-head); font-weight: 700;
  color: #fff;
}
.jt-topbar-phone:hover { color: var(--orange-300); }
.jt-topbar-phone svg { color: var(--orange-300); }

.jt-topbar-stars { display: inline-flex; gap: 2px; }
.jt-topbar-stars svg { width: 14px; height: 14px; color: #FFC53D; }

.jt-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.jt-header.is-stuck { box-shadow: 0 8px 30px rgba(6,25,44,.10); }

.jt-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(10px, 1.4vw, 24px); min-height: 84px;
  flex-wrap: nowrap;
}

.jt-brand { display: flex; align-items: center; gap: 11px; flex: 0 1 auto; min-width: 0; }
.jt-brand-mark {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-500) 100%);
  display: grid; place-items: center;
  color: #fff; font-family: var(--ff-head); font-weight: 800;
  font-size: 1.05rem; letter-spacing: -.03em;
  box-shadow: 0 8px 20px rgba(13,40,68,.26);
  flex: none;
}
.jt-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.jt-brand-name {
  font-family: var(--ff-head); font-weight: 800;
  font-size: 1.16rem; color: var(--navy); letter-spacing: -.02em;
}
.jt-brand-tag {
  font-size: .72rem; color: var(--muted);
  letter-spacing: .04em;
  white-space: nowrap;
}
.jt-footer-brand .jt-brand-tag { white-space: normal; }

/* Desktop nav */
.jt-nav { display: flex; align-items: center; gap: 2px; min-width: 0; flex-shrink: 1; }
.jt-nav-item { position: relative; }
.jt-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px clamp(8px, .85vw, 15px);
  font-family: var(--ff-head); font-weight: 600;
  font-size: clamp(.88rem, .92vw, .96rem);
  color: var(--navy); border-radius: 10px;
  transition: color .2s, background-color .2s;
  white-space: nowrap;
}
.jt-nav-link:hover { color: var(--orange); background: rgba(243,93,34,.07); }
.jt-nav-caret { width: 11px; height: 11px; transition: transform .25s; opacity: .55; }
.jt-nav-item:hover .jt-nav-caret { transform: rotate(180deg); }

.jt-drop {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 232px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 9px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 100;
}
.jt-nav-item:hover > .jt-drop,
.jt-nav-item:focus-within > .jt-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.jt-drop a {
  display: block; padding: 10px 14px;
  font-size: .93rem; color: var(--body);
  border-radius: 9px; transition: background-color .18s, color .18s;
}
.jt-drop a:hover { background: var(--ice); color: var(--navy); }
.jt-drop-label {
  display: block; padding: 8px 14px 4px;
  font-family: var(--ff-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}

.jt-header-cta { display: flex; align-items: center; gap: clamp(8px, 1vw, 14px); flex: none; }
/* Icon-only call button (mobile + tablet) */
.jt-callicon {
  display: none;
  width: 48px; height: 48px; border-radius: 12px;
  place-items: center;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(243,93,34,.28);
  transition: background-color .25s, transform .25s;
  flex: none;
}
.jt-home a.jt-callicon { color: #fff; }
.jt-callicon svg { width: 20px; height: 20px; }
.jt-callicon:hover { background: var(--orange-600); transform: translateY(-2px); }
.jt-header .jt-btn { padding: 14px 24px; font-size: .95rem; }

.jt-burger {
  display: none;
  position: relative;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  cursor: pointer;
  padding: 0;
  place-items: center;
  flex: none;
  box-shadow: 0 8px 20px rgba(13,40,68,.26);
  transition: background-color .25s, transform .25s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.jt-burger:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(13,40,68,.34);
}
.jt-burger:active { transform: translateY(0); }
.jt-burger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243,93,34,.55), 0 8px 20px rgba(13,40,68,.26);
}

/* Bars are absolutely centred so they rotate around a true midpoint */
.jt-burger span {
  position: absolute;
  left: 50%;
  width: 20px; height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .34s cubic-bezier(.68,-.55,.27,1.55),
              opacity .2s ease, width .28s ease;
}
.jt-burger span:nth-child(1) { top: 17px; }
.jt-burger span:nth-child(2) { top: 23px; width: 14px; transform: translateX(-50%); }
.jt-burger span:nth-child(3) { top: 29px; }

/* Middle bar grows to full width on hover for a subtle tell */
.jt-burger:hover span:nth-child(2) { width: 20px; }

/* Open state: clean X */
.jt-burger.is-open {
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(243,93,34,.30);
}
.jt-burger.is-open:hover { background: var(--orange-600); }
.jt-burger.is-open span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.jt-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 20px;
  transform: translateX(-50%) scaleX(.2);
}
.jt-burger.is-open span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Mobile drawer */
.jt-mobile {
  position: fixed; inset: 0 0 0 auto;
  width: min(400px, 88vw);
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 26px 24px 44px;
  box-shadow: -20px 0 60px rgba(6,25,44,.22);
  display: flex; flex-direction: column;
}
.jt-mobile.is-open { transform: translateX(0); }
.jt-mobile-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  margin: -26px -24px 20px;
  padding: 20px 24px;
  background: var(--ice);
  border-bottom: 1px solid var(--line);
}
.jt-mobile-close {
  width: 42px; height: 42px; border-radius: 11px;
  border: 0; background: #fff;
  font-size: 1.5rem; line-height: 1; color: var(--navy);
  cursor: pointer; flex: none;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background-color .22s, color .22s, transform .22s;
}
.jt-mobile-close:hover {
  background: var(--orange); color: #fff; transform: rotate(90deg);
}
.jt-mobile-close:focus-visible {
  outline: none; box-shadow: 0 0 0 3px rgba(243,93,34,.5);
}
.jt-mobile-nav { display: flex; flex-direction: column; }
.jt-mobile-nav > a,
.jt-mobile-group > button {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  padding: 15px 12px 15px 14px;
  border-radius: var(--r-sm);
  font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem;
  color: var(--navy);
  background: none; border: 0; border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background-color .22s, color .22s, padding-left .22s;
  -webkit-tap-highlight-color: transparent;
}
.jt-mobile-nav > a::before,
.jt-mobile-group > button::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 3px; height: 0;
  background: var(--orange); border-radius: 2px;
  transform: translateY(-50%);
  transition: height .25s ease;
}
.jt-mobile-nav > a:hover,
.jt-mobile-group > button:hover,
.jt-mobile-group.is-open > button {
  background: var(--ice);
  color: var(--orange-600);
  padding-left: 20px;
}
.jt-mobile-nav > a:hover::before,
.jt-mobile-group > button:hover::before,
.jt-mobile-group.is-open > button::before { height: 22px; }

.jt-mobile-group > button svg {
  width: 26px; height: 26px; flex: none;
  padding: 6px; border-radius: 50%;
  background: rgba(13,40,68,.06);
  transition: transform .3s cubic-bezier(.68,-.4,.27,1.4), background-color .22s, color .22s;
}
.jt-mobile-group.is-open > button svg {
  transform: rotate(180deg);
  background: var(--orange); color: #fff;
}
.jt-mobile-sub {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}
.jt-mobile-group.is-open .jt-mobile-sub { grid-template-rows: 1fr; }
.jt-mobile-sub-inner { overflow: hidden; }
.jt-mobile-sub-inner { padding-left: 14px; border-left: 2px solid var(--ice-200); margin-left: 8px; }
.jt-mobile-sub a {
  display: block; padding: 11px 12px;
  border-radius: 8px;
  font-size: .96rem; color: var(--body);
  transition: background-color .2s, color .2s, transform .2s;
}
.jt-mobile-sub a:hover {
  color: var(--orange-600); background: var(--ice);
  transform: translateX(3px);
}
.jt-mobile-foot {
  margin-top: auto; padding-top: 26px;
  display: grid; gap: 12px;
}
.jt-mobile-meta {
  display: grid; gap: 10px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.jt-mobile-meta-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--muted); line-height: 1.5;
}
.jt-mobile-meta-item svg {
  width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 3px;
}

.jt-scrim {
  position: fixed; inset: 0;
  background: rgba(6,25,44,.55);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 150;
}
.jt-scrim.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   HERO
   ========================================================================== */
.jt-hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.jt-hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.jt-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
}
.jt-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,25,44,.96) 0%, rgba(6,25,44,.88) 42%, rgba(6,25,44,.55) 68%, rgba(6,25,44,.42) 100%),
    linear-gradient(to top, rgba(6,25,44,.75) 0%, transparent 45%);
}
.jt-hero-glow {
  position: absolute; z-index: -1;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,163,227,.20) 0%, transparent 68%);
  top: -220px; right: -160px;
  pointer-events: none;
}

.jt-hero-inner {
  position: relative;
  padding-top: clamp(66px, 9vw, 112px);
  padding-bottom: clamp(66px, 9vw, 112px);
  display: grid;
  /* Copy column gets the extra room so the H1 lands in 2-3 lines rather than
     four. The quote card is fixed rather than fluid: it only needs to fit its
     form, and letting it flex was what squeezed the headline. */
  grid-template-columns: minmax(0, 1fr) clamp(380px, 32%, 440px);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.jt-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.15rem);
  line-height: 1.04;
  margin-bottom: 22px;
  text-wrap: balance;
}
.jt-hero-kicker {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(.72rem, 1.2vw, .84rem);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: 20px;
  line-height: 1.6;
  /* no max-width: this is one short line of eyebrow copy, and 40ch broke it
     into three. white-space:nowrap down to the width where it genuinely
     cannot fit, then allow wrapping rather than overflowing. */
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .jt-hero-kicker { white-space: normal; max-width: 46ch; }
}
.jt-hero p.jt-hero-copy {
  color: rgba(255,255,255,.80);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  max-width: 56ch;
  margin-bottom: 34px;
}
.jt-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.jt-hero-proof {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.jt-hero-proof-item { display: flex; align-items: center; gap: 11px; }
.jt-hero-proof-item svg {
  width: 21px; height: 21px; color: var(--orange-300); flex: none;
}
.jt-hero-proof-item span {
  font-family: var(--ff-head); font-weight: 600;
  font-size: .93rem; color: rgba(255,255,255,.88);
  line-height: 1.35;
}

/* Hero card */
.jt-hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  backdrop-filter: blur(16px);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
}
.jt-hero-card-top {
  display: flex; align-items: center; gap: 15px;
  padding-bottom: 20px; margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.jt-hero-card-avatar {
  width: 62px; height: 62px; border-radius: 50%;
  object-fit: cover; flex: none;
  border: 2px solid rgba(255,255,255,.3);
}
.jt-hero-card-name {
  font-family: var(--ff-head); font-weight: 800;
  color: #fff; font-size: 1.06rem; line-height: 1.25;
}
.jt-hero-card-role {
  font-size: .84rem; color: rgba(255,255,255,.66);
}
.jt-hero-card h2 {
  color: #fff; font-size: 1.28rem; margin-bottom: 8px;
}
.jt-hero-card p {
  color: rgba(255,255,255,.76); font-size: .95rem; margin-bottom: 20px;
}
.jt-hero-card .jt-btn { width: 100%; }
.jt-hero-card-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; font-size: .84rem; color: rgba(255,255,255,.60);
}
.jt-hero-card-note svg { width: 14px; height: 14px; color: var(--orange-300); }

/* Hero strip */
.jt-hero-strip {
  position: relative;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.jt-hero-strip .jt-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-block: 26px;
}
.jt-hero-stat { text-align: center; }
.jt-hero-stat-n {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff; line-height: 1; letter-spacing: -.03em;
  display: block; margin-bottom: 7px;
}
.jt-hero-stat-n span { color: var(--orange-300); }
.jt-hero-stat-n.is-text {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.jt-hero-stat-l {
  font-size: .81rem; color: rgba(255,255,255,.62);
  letter-spacing: .04em; line-height: 1.4;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.jt-services { padding-block: var(--sec-y); background: #fff; }

.jt-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}
.jt-svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .4s;
}
.jt-svc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.jt-svc-media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--ice);
}
.jt-svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.jt-svc:hover .jt-svc-media img { transform: scale(1.07); }
.jt-svc-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,25,44,.42) 0%, transparent 55%);
}
.jt-svc-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  font-family: var(--ff-head); font-weight: 800;
  font-size: .9rem; color: var(--navy);
}
.jt-svc-body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.jt-svc-body h3 { font-size: 1.32rem; margin-bottom: 12px; }
.jt-svc-body p { font-size: .96rem; color: var(--muted); margin-bottom: 20px; }
.jt-svc-body .jt-textlink { margin-top: auto; }

/* ==========================================================================
   ABOUT / WHY
   ========================================================================== */
.jt-about {
  padding-block: var(--sec-y);
  background:
    linear-gradient(180deg, var(--ice) 0%, #fff 100%);
}
.jt-about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}
.jt-about-media { position: relative; }
.jt-about-media-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.jt-about-media-main img { width: 100%; height: 100%; object-fit: cover; }
.jt-about-badge {
  position: absolute;
  z-index: 3;
  right: clamp(-10px, -1vw, 0px); bottom: 34px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 16px;
  max-width: 290px;
}
.jt-about-badge-icon {
  width: 52px; height: 52px; border-radius: 15px; flex: none;
  background: linear-gradient(140deg, var(--orange) 0%, var(--orange-600) 100%);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 24px rgba(243,93,34,.30);
}
.jt-about-badge-icon svg { width: 25px; height: 25px; }
.jt-about-badge-n {
  font-family: var(--ff-head); font-weight: 800;
  font-size: 1.5rem; color: var(--navy); line-height: 1;
  letter-spacing: -.02em;
}
.jt-about-badge-l { font-size: .84rem; color: var(--muted); line-height: 1.35; }

.jt-why-list { display: grid; gap: 4px; margin-top: 34px; }
.jt-why {
  display: flex; gap: 18px;
  padding: 20px;
  border-radius: var(--r);
  transition: background-color .3s, transform .3s;
}
.jt-why:hover { background: #fff; transform: translateX(5px); box-shadow: var(--shadow-sm); }
.jt-why-icon {
  width: 50px; height: 50px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: rgba(13,40,68,.06);
  color: var(--navy);
  transition: background-color .3s, color .3s;
}
.jt-why:hover .jt-why-icon { background: var(--orange); color: #fff; }
.jt-why-icon svg { width: 23px; height: 23px; }
.jt-why h3 { font-size: 1.08rem; margin-bottom: 5px; }
.jt-why p { font-size: .93rem; color: var(--muted); margin: 0; }

.jt-about-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.jt-reviews {
  padding-block: var(--sec-y);
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.jt-reviews::before {
  content: "";
  position: absolute; top: -180px; left: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,163,227,.16) 0%, transparent 70%);
}
.jt-reviews .jt-wrap { position: relative; z-index: 1; }
.jt-reviews h2 { color: #fff; }
.jt-reviews .jt-lead { color: rgba(255,255,255,.72); }

.jt-rev-viewport { overflow: hidden; }
.jt-rev-track {
  display: flex; gap: 24px;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
  padding-block: 8px;
}
.jt-rev {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  backdrop-filter: blur(8px);
  transition: background-color .35s, border-color .35s, transform .35s;
}
.jt-rev:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-5px);
}
.jt-rev-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.jt-rev-stars svg { width: 17px; height: 17px; color: #FFC53D; }
.jt-rev-quote {
  font-size: .99rem; line-height: 1.72;
  color: rgba(255,255,255,.86);
  margin-bottom: 24px; flex: 1;
}
.jt-rev-by {
  display: flex; align-items: center; gap: 13px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.jt-rev-initial {
  width: 45px; height: 45px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--orange) 0%, var(--orange-600) 100%);
  color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 1.02rem;
}
.jt-rev-name {
  font-family: var(--ff-head); font-weight: 700;
  color: #fff; font-size: 1rem; line-height: 1.3;
}
.jt-rev-src { font-size: .8rem; color: rgba(255,255,255,.55); }

.jt-rev-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 44px;
}
.jt-rev-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .25s, border-color .25s, transform .25s;
}
.jt-rev-btn svg { width: 19px; height: 19px; }
.jt-rev-btn:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.06); }
.jt-rev-btn:disabled { opacity: .3; cursor: default; transform: none; }
.jt-rev-btn:disabled:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.24); }
.jt-rev-dots { display: flex; gap: 8px; margin-inline: 8px; }
.jt-rev-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  border: 0; background: rgba(255,255,255,.26); cursor: pointer;
  transition: background-color .25s, width .25s;
}
.jt-rev-dot.is-active { background: var(--orange); width: 28px; border-radius: 6px; }

/* ==========================================================================
   MID CTA
   ========================================================================== */
.jt-midcta {
  padding-block: clamp(54px, 7vw, 86px);
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-600) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.jt-midcta::after {
  content: "";
  position: absolute; right: -90px; top: -90px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.jt-midcta .jt-wrap {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(30px, 4vw, 54px); flex-wrap: wrap;
}
.jt-midcta h2 {
  color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 10px; max-width: 20ch;
}
.jt-midcta p {
  color: rgba(255,255,255,.90); margin: 0; max-width: 58ch; font-size: 1.02rem;
}
.jt-midcta-copy { flex: 1 1 460px; min-width: 0; }
.jt-midcta-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 26px; }

/* Click-to-load video. The YouTube iframe is only injected on click, so the
   page does not pay for YouTube's scripts (or set its cookies) on load. */
.jt-midcta-video { flex: 0 1 420px; min-width: 0; }
.jt-video {
  position: relative; display: block; width: 100%;
  padding: 0; border: 0; cursor: pointer;
  background: var(--navy-900); color: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 22px 54px rgba(6,25,44,.30);
}
.jt-video img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}
.jt-video:hover img { transform: scale(1.05); filter: brightness(.82); }
.jt-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,25,44,0) 40%, rgba(6,25,44,.55) 100%);
}
.jt-video-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 30px rgba(6,25,44,.36);
  transition: transform .25s ease, background .25s ease;
  z-index: 1;
}
.jt-video-play svg { width: 32px; height: 32px; margin-left: 3px; }
.jt-video:hover .jt-video-play { transform: translate(-50%, -50%) scale(1.09); }
.jt-video:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.jt-video-label {
  position: absolute; left: 18px; bottom: 15px; z-index: 1;
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
  color: #fff; text-shadow: 0 1px 10px rgba(6,25,44,.5);
}
.jt-video iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 900px) {
  .jt-midcta-video { flex: 1 1 100%; width: 100%; }
  .jt-video-play { width: 60px; height: 60px; }
  .jt-video-play svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .jt-video img, .jt-video-play { transition: none; }
  .jt-video:hover img { transform: none; }
}
.jt-midcta .jt-btn--primary,
.jt-home .jt-midcta a.jt-btn--primary {
  background: #fff; color: var(--orange-600);
  box-shadow: 0 12px 34px rgba(6,25,44,.20);
}
.jt-midcta .jt-btn--primary:hover,
.jt-home .jt-midcta a.jt-btn--primary:hover { background: var(--navy-900); color: #fff; }

/* ==========================================================================
   DEALER / BRANDS
   ========================================================================== */
.jt-dealer { padding-block: var(--sec-y); background: #fff; }
.jt-dealer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}
.jt-dealer-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.jt-dealer-media figure {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.jt-dealer-media figure:first-child { margin-top: 34px; }
.jt-dealer-media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1); }
.jt-dealer-media figure:hover img { transform: scale(1.06); }

.jt-dealer-chips { display: flex; flex-wrap: wrap; gap: 11px; margin: 26px 0 30px; }
.jt-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--ff-head); font-weight: 700; font-size: .92rem;
  color: var(--navy); background: #fff;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.jt-chip:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.jt-chip svg { width: 16px; height: 16px; color: var(--orange); }

/* ==========================================================================
   HEATING
   ========================================================================== */
.jt-heating {
  padding-block: var(--sec-y);
  background: var(--ice);
}
.jt-heating-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}
.jt-heating-media {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  /* image left, copy right. The media is first in the DOM, so order:0 puts
     it in the left column; the mobile rule below keeps it stacked on top. */
  order: 0;
}
.jt-heating-media img { width: 100%; height: 100%; object-fit: cover; }
.jt-heating-copy .jt-btn { margin-top: 10px; }

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.jt-areas {
  padding-block: var(--sec-y);
  background: var(--navy);
  color: #fff;
  position: relative; overflow: hidden;
}
.jt-areas::before {
  content: "";
  position: absolute; bottom: -200px; right: -140px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,163,227,.18) 0%, transparent 70%);
}
.jt-areas .jt-wrap { position: relative; z-index: 1; }
.jt-areas h2, .jt-areas h3 { color: #fff; }
.jt-areas .jt-lead { color: rgba(255,255,255,.74); }


/* Service-area map */
.jt-areas-map {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,.05);
}
/* Map overlays (counties top-left, base card top-right) */
.jt-map-overlay {
  position: absolute;
  z-index: 7;
  background: rgba(6,25,44,.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(6,25,44,.42);
  max-width: min(320px, 42%);
}
.jt-map-overlay.is-tl { top: 22px; left: 22px; }
.jt-map-overlay.is-tr { top: 22px; right: 22px; }

.jt-map-overlay-label {
  display: block;
  font-family: var(--ff-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: 10px;
}
.jt-map-overlay-addr {
  display: block;
  font-family: var(--ff-head); font-weight: 700;
  color: #fff; font-size: .96rem; line-height: 1.45;
  margin-bottom: 11px;
}
.jt-map-overlay .jt-textlink { font-size: .92rem; }

.jt-map-counties { display: flex; flex-direction: column; gap: 8px; }
.jt-map-counties .jt-county {
  display: block;
  padding: 9px 15px;
  font-size: .87rem;
  text-align: left;
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.05);
}
.jt-map-counties .jt-county:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Interactive service-area map */
.jt-map { position: relative; }
.jt-map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 620;
  min-height: 300px;
}
.jt-map-art {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* Pins */
.jt-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 0; margin: 0;
  background: none; border: 0; cursor: pointer;
  font-family: var(--ff-head);
  color: #fff;
  z-index: 2;
  transition: z-index 0s;
  -webkit-tap-highlight-color: transparent;
}
.jt-home a.jt-pin { color: #fff; }

.jt-pin-dot {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--orange);
  border: 2.5px solid rgba(255,255,255,.92);
  box-shadow: 0 3px 12px rgba(6,25,44,.55);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.jt-pin-label {
  font-size: .76rem; font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(6,25,44,.72);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  transition: background-color .28s, border-color .28s, color .28s;
}

.jt-pin:hover,
.jt-pin:focus-visible { z-index: 6; outline: none; }
.jt-pin:hover .jt-pin-dot,
.jt-pin:focus-visible .jt-pin-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 7px rgba(243,93,34,.22), 0 4px 16px rgba(6,25,44,.6);
}
.jt-pin:hover .jt-pin-label,
.jt-pin:focus-visible .jt-pin-label {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.jt-pin:focus-visible .jt-pin-label { box-shadow: 0 0 0 3px rgba(255,255,255,.55); }

/* Label placement variants so clustered pins stay readable */
.jt-pin.is-up { flex-direction: column-reverse; }
.jt-pin.is-right,
.jt-pin.is-left { flex-direction: row; align-items: center; gap: 6px; }
.jt-pin.is-left { flex-direction: row-reverse; }

/* Headquarters pin */
.jt-pin.is-hq { z-index: 4; }
.jt-pin.is-hq .jt-pin-dot {
  width: 21px; height: 21px;
  background: #fff;
  border: 5px solid var(--orange);
  box-shadow: 0 0 0 5px rgba(243,93,34,.20), 0 4px 16px rgba(6,25,44,.6);
}
.jt-pin.is-hq .jt-pin-label {
  background: var(--orange);
  border-color: var(--orange);
  font-size: .82rem;
}
.jt-pin.is-hq::after {
  content: "";
  position: absolute; top: 10px; left: 50%;
  width: 21px; height: 21px; margin: -10.5px 0 0 -10.5px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: jt-ping 2.8s cubic-bezier(0,0,.2,1) infinite;
  pointer-events: none;
}
@keyframes jt-ping {
  0%   { transform: scale(1);   opacity: .75; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Tooltip */
.jt-map-tip {
  position: absolute; z-index: 8;
  transform: translate(-50%, -100%);
  background: #fff;
  color: var(--navy);
  border-radius: var(--r-sm);
  padding: 9px 14px;
  box-shadow: 0 12px 30px rgba(6,25,44,.32);
  pointer-events: none;
  white-space: nowrap;
  display: flex; flex-direction: column; line-height: 1.3;
}
.jt-map-tip[hidden] { display: none; }
.jt-map-tip::after {
  content: "";
  position: absolute; bottom: -6px; left: 50%;
  width: 12px; height: 12px; margin-left: -6px;
  background: #fff; transform: rotate(45deg);
  border-radius: 2px;
}
.jt-map-tip-name {
  font-family: var(--ff-head); font-weight: 800; font-size: .95rem;
}
.jt-map-tip-county { font-size: .78rem; color: var(--muted); }

/* Legend */
.jt-map-legend {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(6,25,44,.55);
}
.jt-map-legend-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .86rem; color: rgba(255,255,255,.80);
}
.jt-map-key {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--orange);
  border: 2px solid rgba(255,255,255,.9);
  flex: none;
}
.jt-map-key.is-hq {
  background: #fff; border: 4px solid var(--orange);
  width: 16px; height: 16px;
}

.jt-textlink.is-light,
.jt-home a.jt-textlink.is-light { color: #fff; }
.jt-textlink.is-light:hover,
.jt-home a.jt-textlink.is-light:hover { color: var(--orange-300); }

.jt-county {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-family: var(--ff-head); font-weight: 600; font-size: .9rem;
  color: rgba(255,255,255,.88);
  transition: background-color .25s, border-color .25s;
}
.jt-county:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ==========================================================================
   QUOTE / FORM
   ========================================================================== */
.jt-quote { padding-block: var(--sec-y); background: #fff; }
.jt-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}

.jt-quote-info { position: sticky; top: 108px; }
.jt-contact-list { display: grid; gap: 16px; margin: 30px 0; }
.jt-contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: var(--ice);
  border-radius: var(--r);
  transition: transform .3s, box-shadow .3s;
}
.jt-contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.jt-contact-icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: #fff; color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.jt-contact-icon svg { width: 21px; height: 21px; }
.jt-contact-label {
  font-family: var(--ff-head); font-size: .74rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 3px;
}
.jt-contact-value {
  font-family: var(--ff-head); font-weight: 700;
  color: var(--navy); font-size: 1.02rem; line-height: 1.45;
}
a.jt-contact-value:hover { color: var(--orange); }

.jt-license {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 14px 20px;
  border: 1px dashed rgba(13,40,68,.22);
  border-radius: var(--r-sm);
  font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  color: var(--navy);
}
.jt-license svg { width: 19px; height: 19px; color: var(--orange); flex: none; }

/* Form card */
.jt-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 3.4vw, 44px);
}
.jt-form-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 6px; }
.jt-form-card .jt-form-sub {
  font-family: var(--ff-head); font-weight: 700;
  color: var(--orange); font-size: 1.02rem; margin-bottom: 10px;
}
.jt-form-card > p { color: var(--muted); font-size: .96rem; margin-bottom: 26px; }

.jt-home .ads-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.jt-home .ads-form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.jt-home .ads-form-row .ads-form-group { margin-bottom: 0; }
.jt-home .ads-form-row { margin-bottom: 18px; }
.jt-home .ads-form label {
  font-family: var(--ff-head); font-weight: 700;
  font-size: .86rem; color: var(--navy);
  margin-bottom: 8px; letter-spacing: .01em;
}
.jt-home .ads-form .required { color: var(--orange); }
.jt-home .ads-form input,
.jt-home .ads-form textarea {
  width: 100%;
  font-family: var(--ff-body); font-size: 1rem;
  color: var(--ink);
  padding: 14px 17px;
  border: 1.5px solid rgba(13,40,68,.14);
  border-radius: var(--r-sm);
  background: #fbfcfe;
  transition: border-color .22s, box-shadow .22s, background-color .22s;
}
.jt-home .ads-form input:focus,
.jt-home .ads-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(243,93,34,.12);
}
.jt-home .ads-form textarea { resize: vertical; min-height: 128px; }
.jt-home .ads-form-footer { margin-top: 24px; }
.jt-home .ads-form-submit {
  width: 100%;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.04rem;
  color: #fff; background: var(--orange);
  border: 0; border-radius: 999px;
  padding: 18px 30px; cursor: pointer;
  box-shadow: 0 12px 30px rgba(243,93,34,.30);
  transition: background-color .25s, transform .25s, box-shadow .25s;
}
.jt-home .ads-form-submit:hover:not(:disabled) {
  background: var(--orange-600); transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(243,93,34,.38);
}
.jt-home .ads-form-submit:disabled { opacity: .65; cursor: default; }
.jt-home .ads-form-status {
  margin-top: 14px; font-size: .94rem; text-align: center;
  font-family: var(--ff-head); font-weight: 600;
}
.jt-home .ads-form-status.is-success { color: #1a7f4b; }
.jt-home .ads-form-status.is-error { color: #c0392b; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.jt-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.66);
  padding-top: clamp(56px, 7vw, 84px);
  font-size: .95rem;
}
.jt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(30px, 4vw, 54px);
  padding-bottom: 50px;
}
.jt-footer h4 {
  color: #fff; font-size: 1.04rem; margin-bottom: 20px;
}
.jt-footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.jt-footer-brand .jt-brand-name { color: #fff; }
.jt-footer-brand .jt-brand-tag { color: rgba(255,255,255,.55); }
.jt-footer p { font-size: .94rem; line-height: 1.72; }
.jt-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.jt-footer-links a { transition: color .22s, padding-left .22s; display: inline-block; }
.jt-footer-links a:hover { color: var(--orange-300); padding-left: 5px; }

.jt-footer-badge { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.jt-footer-badge img { max-width: 168px; border-radius: 6px; background: #fff; padding: 4px; }
.jt-footer-license {
  font-family: var(--ff-head); font-weight: 700;
  font-size: .87rem; color: rgba(255,255,255,.80);
}

.jt-footer-cta-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg);
  padding: 26px;
}
.jt-footer-cta-card p { margin-bottom: 18px; font-size: .93rem; }
.jt-footer-cta-card .jt-btn { width: 100%; }

.jt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  font-size: .89rem;
}
.jt-footer-bottom a { color: rgba(255,255,255,.80); }
.jt-footer-bottom a:hover { color: var(--orange-300); }

/* Sticky mobile call bar */
.jt-callbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 120;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.14);
  box-shadow: 0 -8px 30px rgba(6,25,44,.20);
}
.jt-callbar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 10px;
  font-family: var(--ff-head); font-weight: 700; font-size: .98rem;
  color: #fff;
}
.jt-callbar svg { width: 17px; height: 17px; }
.jt-callbar-call { background: var(--navy); }
.jt-callbar-quote { background: var(--orange); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.jt-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.jt-reveal.is-in { opacity: 1; transform: none; }
.jt-reveal[data-d="1"] { transition-delay: .09s; }
.jt-reveal[data-d="2"] { transition-delay: .18s; }
.jt-reveal[data-d="3"] { transition-delay: .27s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .jt-hero-inner { grid-template-columns: 1fr; gap: 46px; }
  .jt-hero-card { max-width: 520px; }
  .jt-quote-grid { grid-template-columns: 1fr; }
  .jt-quote-info { position: static; }
  .jt-footer-grid { grid-template-columns: 1fr 1fr; }
  .jt-rev { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 1024px) {
  .jt-nav { display: none; }
  .jt-burger { display: grid; }
  .jt-header .jt-btn { display: none; }
  .jt-callicon { display: grid; }
}

/* Tablet and below: overlays move out of the map so they never cover a pin */
@media (max-width: 1024px) {
  .jt-map { display: flex; flex-direction: column; }
  .jt-map-canvas { order: 1; }
  .jt-map-legend { order: 2; }
  .jt-map-overlay {
    position: static;
    order: 3;
    max-width: none;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    background: rgba(6,25,44,.55);
    box-shadow: none;
    backdrop-filter: none;
  }
  .jt-map-overlay.is-tl { order: 3; }
  .jt-map-overlay.is-tr { order: 4; }
  .jt-map-counties { flex-direction: row; flex-wrap: wrap; }

  /* Narrower map: smaller labels, all below the dot, so nothing collides */
  .jt-pin-label { font-size: .68rem; padding: 2px 6px; }
  .jt-pin.is-right,
  .jt-pin.is-left,
  .jt-pin.is-up { flex-direction: column; }
  .jt-pin.is-up { flex-direction: column-reverse; }
}

@media (max-width: 900px) {
  .jt-about-grid,
  .jt-dealer-grid,
  .jt-heating-grid { grid-template-columns: 1fr; }
  .jt-heating-media { order: 0; }
  /* Portrait photo: use a taller box and bias the crop upward so
     the subject's head is never cut off */
  .jt-about-media-main { aspect-ratio: 4 / 3; }
  .jt-about-media-main img { object-position: 50% 22%; }
  .jt-about-badge {
    position: relative; z-index: 3;
    margin: -40px 0 0 20px;
    max-width: none; width: fit-content;
  }
  .jt-hero-strip .jt-wrap { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .jt-midcta .jt-wrap { flex-direction: column; align-items: flex-start; }
  .jt-topbar-list .jt-topbar-hide-sm { display: none; }
}

@media (max-width: 760px) {
  body.jt-home { font-size: 16px; padding-bottom: 60px; }
  .jt-callbar { display: grid; }
  .jt-rev { flex: 0 0 100%; }
  .jt-footer-grid { grid-template-columns: 1fr; }
  .jt-home .ads-form-row { grid-template-columns: 1fr; gap: 0; }
  .jt-home .ads-form-row .ads-form-group { margin-bottom: 18px; }
  .jt-hero-actions .jt-btn { width: 100%; }
  .jt-topbar { display: none; }
  .jt-dealer-media figure:first-child { margin-top: 0; }

  .jt-map-canvas { aspect-ratio: 3 / 4; }
  .jt-pin-label { display: none; }
  .jt-pin.is-hq .jt-pin-label { display: block; font-size: .72rem; padding: 2px 7px; }
  .jt-pin-dot { width: 13px; height: 13px; }

  .jt-map-counties .jt-county { flex: 1 1 auto; text-align: center; }
}

@media (max-width: 480px) {
  .jt-hero-strip .jt-wrap { grid-template-columns: 1fr 1fr; }
  .jt-svc-body { padding: 24px 22px 26px; }
  .jt-brand-tag { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .jt-home *,
  .jt-home *::before,
  .jt-home *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .jt-reveal { opacity: 1; transform: none; }
}
