:root {
  --blue: #2757f5;
  --blue-dark: #1740c9;
  --blue-soft: #eaf0ff;
  --coral: #ff6547;
  --coral-dark: #df482e;
  --coral-soft: #fff0ec;
  --ink: #171c2b;
  --ink-soft: #30384b;
  --muted: #687083;
  --mist: #f4f6fa;
  --line: #dfe3ec;
  --paper: #ffffff;
  --lime: #b9f227;
  --shadow-sm: 0 12px 30px rgba(23, 28, 43, 0.08);
  --shadow-lg: 0 30px 80px rgba(23, 28, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg,
img {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.4rem, 6.7vw, 6.85rem);
  font-weight: 820;
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  font-weight: 780;
}

h3 {
  font-size: 1.55rem;
  font-weight: 760;
}

.site-container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 5000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  font-weight: 750;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 28, 43, 0.08);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(20px);
}

.header-shell {
  width: min(1370px, calc(100% - 40px));
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-symbol {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--ink);
  transform: rotate(-3deg);
}

.brand-cool,
.brand-warm {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 6px solid;
  border-radius: 50%;
}

.brand-cool {
  left: 4px;
  top: 5px;
  border-color: var(--blue);
}

.brand-warm {
  right: 3px;
  bottom: 4px;
  border-color: var(--coral);
}

.brand-center {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 19px;
  left: 19px;
  border-radius: 50%;
  background: var(--paper);
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-size: 1.22rem;
  font-weight: 840;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-type small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: var(--mist);
}

.primary-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #454d61;
  font-size: 0.78rem;
  font-weight: 720;
  transition: background 160ms ease, color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.header-actions,
.phone-link,
.phone-link span {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 17px;
}

.phone-link {
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 780;
}

.phone-link svg {
  color: var(--blue);
}

.phone-link span {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.phone-link small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 650;
}

.menu-button {
  display: none;
  justify-self: end;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 790;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.arrow-link:focus-visible,
.service-card a:focus-visible,
.symptom-options button:focus-visible,
.chat-options button:focus-visible,
.chat-launcher:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(39, 87, 245, 0.27);
  outline-offset: 3px;
}

.button-compact {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.77rem;
}

.button-primary {
  background: var(--coral);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(255, 101, 71, 0.2);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 31px rgba(255, 101, 71, 0.28);
}

.button-ghost {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--blue);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: var(--lime);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 104px;
  background:
    radial-gradient(circle at 12% 14%, rgba(39, 87, 245, 0.09), transparent 28%),
    linear-gradient(180deg, #fbfcff, #f4f7ff);
}

.hero::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 4.5%;
  top: 35%;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(185, 242, 39, 0.18);
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.shape-one {
  width: 250px;
  height: 250px;
  right: -95px;
  top: 40px;
  border: 46px solid rgba(39, 87, 245, 0.1);
  border-radius: 50%;
}

.shape-two {
  width: 78px;
  height: 78px;
  left: 45%;
  bottom: 36px;
  border: 18px solid rgba(255, 101, 71, 0.14);
  border-radius: 24px;
  transform: rotate(24deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}

.kicker,
.section-label,
.mini-label {
  margin-bottom: 17px;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 840;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #39c36d;
  box-shadow: 0 0 0 5px rgba(57, 195, 109, 0.13);
}

.hero-copy h1 {
  max-width: 680px;
}

.hero-copy h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 590px;
  margin: 29px 0 31px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 26px;
  margin-top: 41px;
}

.proof-row > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.proof-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--paper);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.proof-row > div > span:last-child {
  display: grid;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.45;
}

.proof-row strong {
  color: var(--ink);
  font-size: 0.69rem;
}

.hero-visual {
  position: relative;
  min-height: 595px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 42px;
  border-radius: 36px 36px 110px 36px;
  background:
    linear-gradient(180deg, transparent 65%, rgba(23, 28, 43, 0.23)),
    url("../images/riverbend-hvac-hero.png") center / cover no-repeat,
    #cfd8e8;
  box-shadow: var(--shadow-lg);
}

.hero-photo::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -18px;
  bottom: -17px;
  border-radius: 50%;
  background: var(--coral);
  mix-blend-mode: multiply;
}

.availability-card,
.hero-badge,
.comfort-card {
  position: absolute;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}

.availability-card {
  left: 0;
  top: 49px;
  width: min(320px, 66%);
  min-height: 77px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(39, 87, 245, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.calendar-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
}

.availability-card > span:nth-child(2) {
  display: grid;
}

.availability-card small {
  color: var(--muted);
  font-size: 0.62rem;
}

.availability-card strong {
  font-size: 0.78rem;
}

.availability-card > svg {
  color: var(--coral);
}

.comfort-card {
  right: -32px;
  top: 150px;
  width: 158px;
  padding: 20px;
  border-radius: 25px;
  background: var(--ink);
  color: var(--paper);
}

.comfort-card > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.5rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.temperature {
  margin: 7px 0 2px;
  font-size: 3.05rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.temperature sup {
  position: relative;
  top: -0.65em;
  margin-left: 3px;
  color: var(--coral);
  font-size: 0.95rem;
}

.comfort-scale {
  position: relative;
  height: 5px;
  overflow: hidden;
  margin: 13px 0 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--lime), var(--coral));
}

.comfort-scale i {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 52%;
  top: -2px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.comfort-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.56rem;
}

.hero-badge {
  right: 15px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--ink);
}

.hero-badge > span {
  display: grid;
  font-size: 0.57rem;
}

.hero-badge strong {
  font-size: 0.69rem;
}

.service-rail {
  padding: 100px 0 110px;
  background: var(--paper);
}

.service-rail-heading,
.approach-heading,
.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.service-rail-heading h2 {
  max-width: 720px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 790;
}

.arrow-link svg,
.service-card a svg {
  color: var(--coral);
  transition: transform 170ms ease;
}

.arrow-link:hover svg,
.service-card a:hover svg {
  transform: translateX(4px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 32px 28px 29px;
  border-right: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:first-child {
  border-radius: 23px 0 0 23px;
}

.service-card:last-child {
  border-right: 0;
  border-radius: 0 23px 23px 0;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-radius: 23px;
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 25px 55px rgba(39, 87, 245, 0.22);
}

.service-number {
  position: absolute;
  top: 29px;
  right: 27px;
  color: #b5bbc8;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 750;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 31px;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  transition: background 180ms ease, color 180ms ease;
}

.service-card:nth-child(2) .service-icon {
  background: var(--coral-soft);
  color: var(--coral);
}

.service-card:nth-child(3) .service-icon {
  background: #edfbea;
  color: #318b47;
}

.service-card:nth-child(4) .service-icon {
  background: #f3edff;
  color: #7652dc;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.service-card p {
  min-height: 91px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.service-card:hover p,
.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.72);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 790;
}

.service-card:hover a svg {
  color: var(--lime);
}

.symptom-section {
  padding: 110px 0;
  background: var(--mist);
}

.symptom-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
}

.symptom-intro h2 {
  max-width: 530px;
  margin-bottom: 21px;
}

.symptom-intro > p:not(.section-label) {
  max-width: 560px;
  margin-bottom: 29px;
  color: var(--muted);
}

.symptom-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.symptom-options button {
  min-height: 57px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.symptom-options button svg {
  color: var(--blue);
}

.symptom-options button:hover,
.symptom-options button.active {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(39, 87, 245, 0.09);
}

.symptom-answer {
  position: relative;
  min-height: 465px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 58px clamp(35px, 5vw, 69px);
  border-radius: 30px;
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 28px 65px rgba(39, 87, 245, 0.24);
}

.answer-watermark {
  position: absolute;
  right: -20px;
  bottom: -12px;
  color: rgba(255, 255, 255, 0.07);
  transform: rotate(-12deg);
}

.answer-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--lime);
  color: var(--ink);
}

.symptom-answer .mini-label {
  color: rgba(255, 255, 255, 0.65);
}

.symptom-answer h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.symptom-answer > p:not(.mini-label) {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.symptom-answer .button {
  align-self: flex-start;
  background: var(--paper);
  color: var(--ink);
}

.symptom-answer > small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.63rem;
}

.approach-section {
  padding: 116px 0;
}

.approach-heading {
  align-items: start;
}

.approach-heading > div {
  max-width: 650px;
}

.approach-heading > p {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.approach-bento {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.team-card {
  position: relative;
  grid-row: span 2;
  min-height: 660px;
  overflow: hidden;
  border-radius: 28px;
  background: #cbd3df;
}

.team-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 62%, rgba(23, 28, 43, 0.55)),
    url("../images/riverbend-hvac-team.png") center / cover no-repeat;
}

.team-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: rgba(23, 28, 43, 0.78);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.team-check {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
}

.team-caption > span:last-child {
  display: grid;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.65rem;
}

.team-caption strong {
  color: var(--paper);
  font-size: 0.78rem;
}

.process-card {
  padding: 37px;
  border-radius: 28px;
  background: var(--mist);
}

.process-card ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-card li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 0 0 23px;
}

.process-card li:last-child {
  padding-bottom: 0;
}

.process-card li::before {
  content: "";
  position: absolute;
  width: 1px;
  top: 32px;
  bottom: 3px;
  left: 15px;
  background: #cbd1dd;
}

.process-card li:last-child::before {
  display: none;
}

.process-card li > span {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.63rem;
  font-weight: 800;
}

.process-card li div {
  display: grid;
}

.process-card li strong {
  font-size: 0.81rem;
}

.process-card li p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.stat-card {
  position: relative;
  min-height: 186px;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  color: var(--paper);
}

.stat-card span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.stat-card p {
  max-width: 280px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
}

.stat-card > svg {
  position: absolute;
  right: 24px;
  bottom: 22px;
  opacity: 0.5;
}

.stat-blue {
  background: var(--blue);
}

.stat-coral {
  background: var(--coral);
}

.approach-bento .stat-card {
  display: none;
}

.membership-section {
  padding: 0 0 116px;
}

.membership-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1.2fr 0.8fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 42px 45px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 12%, rgba(39, 87, 245, 0.42), transparent 28%),
    var(--ink);
  color: var(--paper);
}

.membership-shell::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -96px;
  bottom: -130px;
  border: 28px solid var(--coral);
  border-radius: 50%;
}

.membership-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--lime);
  color: var(--ink);
}

.membership-copy p {
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 0.61rem;
  font-weight: 840;
  letter-spacing: 0.14em;
}

.membership-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 2.8vw, 2.85rem);
}

.membership-copy span {
  display: block;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
}

.membership-shell ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.membership-shell li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
}

.membership-shell li svg {
  color: var(--lime);
}

.membership-shell .button {
  position: relative;
  z-index: 1;
}

.reviews-section {
  padding: 112px 0;
  background: var(--mist);
}

.reviews-heading > div:first-child {
  max-width: 740px;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.rating-summary > strong {
  font-size: 2rem;
  letter-spacing: -0.07em;
}

.rating-summary > span {
  display: grid;
}

.stars {
  color: var(--coral);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.rating-summary small {
  color: var(--muted);
  font-size: 0.55rem;
}

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

.review-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  height: 49px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
}

.review-card blockquote {
  flex: 1;
  margin: 14px 0 28px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-avatar {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 820;
}

.review-card footer > span:last-child {
  display: grid;
}

.review-card footer strong {
  font-size: 0.72rem;
}

.review-card footer small {
  color: var(--muted);
  font-size: 0.58rem;
}

.area-section {
  padding: 116px 0;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.area-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
}

.area-copy > p:not(.section-label) {
  max-width: 600px;
  margin-bottom: 25px;
  color: var(--muted);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.area-tags svg {
  color: var(--coral);
}

.zip-card {
  padding: 39px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 0%, rgba(39, 87, 245, 0.12), transparent 33%),
    var(--mist);
}

.zip-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 18px;
  background: var(--blue);
  color: var(--paper);
}

.zip-card h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.zip-card > p {
  color: var(--muted);
  font-size: 0.79rem;
}

.zip-card form > label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 750;
}

.zip-card form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.zip-card input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: var(--paper);
}

.zip-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(39, 87, 245, 0.12);
}

.zip-result {
  min-height: 36px;
  margin: 12px 0 0;
  color: var(--blue) !important;
  font-size: 0.66rem !important;
  font-weight: 690;
}

.faq-section {
  padding: 112px 0;
  background: var(--blue-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  max-width: 460px;
  margin-bottom: 20px;
}

.faq-intro > p:not(.section-label) {
  max-width: 420px;
  margin-bottom: 25px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid rgba(39, 87, 245, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(39, 87, 245, 0.22);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  width: 32px;
  height: 32px;
  right: 0;
  top: 19px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--paper);
  color: var(--blue);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 48px 25px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
}

.request-section {
  padding: 116px 0;
  background:
    radial-gradient(circle at 6% 90%, rgba(255, 101, 71, 0.26), transparent 25%),
    radial-gradient(circle at 86% 0%, rgba(39, 87, 245, 0.32), transparent 27%),
    var(--ink);
  color: var(--paper);
}

.request-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.section-label-light {
  color: var(--lime);
}

.request-copy {
  position: sticky;
  top: 130px;
}

.request-copy h2 {
  max-width: 540px;
  margin-bottom: 23px;
}

.request-copy > p:not(.section-label) {
  max-width: 500px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
}

.request-contact {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.request-contact a {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.request-contact svg {
  color: var(--lime);
}

.request-contact span {
  display: grid;
  font-size: 0.77rem;
  font-weight: 700;
}

.request-contact small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  font-weight: 600;
}

.demo-note {
  display: block;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
}

.request-form {
  padding: clamp(29px, 4vw, 48px);
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 23px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.65rem;
  font-weight: 820;
}

.form-heading > span:last-child {
  display: grid;
}

.form-heading strong {
  font-size: 0.9rem;
}

.form-heading small {
  color: var(--muted);
  font-size: 0.62rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 740;
}

.field-wide {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: #fbfcfe;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
}

.request-form input,
.request-form select {
  min-height: 49px;
}

.request-form textarea {
  padding-block: 13px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(39, 87, 245, 0.1);
}

.button-submit {
  width: 100%;
  margin-top: 20px;
}

.form-success {
  min-height: 20px;
  margin: 11px 0 0;
  color: #287c48;
  font-size: 0.65rem;
  font-weight: 670;
  text-align: center;
}

.site-footer {
  padding: 72px 0 0;
  background: #111521;
  color: var(--paper);
}

.brand-light .brand-type small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 55px;
  padding-bottom: 58px;
}

.footer-top > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-top > div:first-child {
  gap: 20px;
}

.footer-top p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.footer-top > div > strong {
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-top > div > a:not(.brand) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  transition: color 160ms ease;
}

.footer-top > div > a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.56rem;
}

.chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: grid;
  justify-items: end;
  gap: 11px;
}

.chat-launcher {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 13px 35px rgba(39, 87, 245, 0.3);
  font-size: 0.74rem;
  font-weight: 780;
  cursor: pointer;
}

.chat-panel {
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  animation: chat-in 180ms ease both;
}

@keyframes chat-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--ink);
  color: var(--paper);
}

.chat-avatar {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
}

.chat-header > span:nth-child(2) {
  display: grid;
}

.chat-header strong {
  font-size: 0.73rem;
}

.chat-header small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.54rem;
}

.chat-header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45d376;
}

.chat-header button {
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.chat-message {
  margin: 16px;
  padding: 12px 14px;
  border-radius: 6px 14px 14px;
  background: var(--blue-soft);
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.chat-options {
  display: grid;
  gap: 7px;
  padding: 0 16px 13px;
}

.chat-options button {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 680;
  text-align: left;
  cursor: pointer;
}

.chat-options button:hover {
  border-color: var(--blue);
}

.chat-disclaimer {
  display: block;
  padding: 9px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.52rem;
  text-align: center;
}

@media (min-width: 1081px) {
  .approach-bento {
    grid-template-columns: 1.1fr 0.5fr 0.5fr;
    grid-template-rows: 1fr 186px;
  }

  .team-card {
    grid-row: span 2;
  }

  .process-card {
    grid-column: span 2;
  }

  .approach-bento .stat-card {
    display: block;
  }
}

@media (max-width: 1180px) {
  .primary-nav {
    gap: 0;
  }

  .primary-nav a {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .phone-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
    gap: 42px;
  }

  .comfort-card {
    right: -8px;
  }

  .proof-row {
    gap: 14px;
  }

  .membership-shell {
    grid-template-columns: auto 1fr auto;
  }

  .membership-shell ul {
    display: none;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 86px;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    display: none;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.nav-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px;
    border-radius: 10px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:first-child {
    border-radius: 23px 0 0;
  }

  .service-card:nth-child(2) {
    border-radius: 0 23px 0 0;
  }

  .service-card:nth-child(3) {
    border-radius: 0 0 0 23px;
  }

  .service-card:last-child {
    border-radius: 0 0 23px;
  }

  .symptom-grid,
  .area-grid,
  .faq-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro,
  .request-copy {
    position: static;
  }

  .approach-bento {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-row: auto;
    min-height: 580px;
  }

  .membership-shell {
    grid-template-columns: auto 1fr;
  }

  .membership-shell .button {
    grid-column: 2;
    justify-self: start;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 240px;
  }

  .footer-top {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .site-container {
    width: min(100% - 32px, 1240px);
  }

  .header-shell {
    width: calc(100% - 28px);
  }

  .brand-type strong {
    font-size: 1rem;
  }

  .brand-type small {
    font-size: 0.47rem;
  }

  .hero {
    padding: 45px 0 72px;
  }

  .hero::before,
  .shape-two {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 475px;
  }

  .hero-photo {
    inset: 0 0 0 18px;
    border-radius: 28px 28px 75px 28px;
  }

  .availability-card {
    top: 25px;
    width: 72%;
  }

  .availability-card > svg {
    display: none;
  }

  .comfort-card {
    right: -3px;
    top: 128px;
    width: 133px;
    padding: 16px;
  }

  .hero-badge {
    right: 8px;
    bottom: 20px;
  }

  .service-rail,
  .symptom-section,
  .approach-section,
  .reviews-section,
  .area-section,
  .faq-section,
  .request-section {
    padding-block: 78px;
  }

  .service-rail-heading,
  .approach-heading,
  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0 !important;
  }

  .service-card:first-child {
    border-radius: 23px 23px 0 0 !important;
  }

  .service-card:last-child {
    border-bottom: 0;
    border-radius: 0 0 23px 23px !important;
  }

  .service-card p {
    min-height: 0;
  }

  .symptom-options {
    grid-template-columns: 1fr;
  }

  .symptom-answer {
    min-height: 430px;
    padding: 38px 28px;
  }

  .team-card {
    min-height: 470px;
  }

  .membership-section {
    padding-bottom: 78px;
  }

  .membership-shell {
    grid-template-columns: 1fr;
    padding: 35px 28px;
  }

  .membership-shell .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .membership-mark {
    width: 58px;
    height: 58px;
  }

  .reviews-heading .rating-summary {
    width: 100%;
  }

  .zip-card {
    padding: 30px 23px;
  }

  .zip-card form > div {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 0.82rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .chat {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

[hidden] {
  display: none !important;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
