:root {
  color-scheme: light;
  --background: #ffffff;
  --surface: #f9f9fa;
  --surface-container: #f5f5f5;
  --surface-high: #e5e8e9;
  --surface-line: #c6c6cb;
  --ink: #101415;
  --muted: #535b63;
  --ice: #1493ff;
  --ice-dark: #004883;
  --ice-soft: #d3e3ff;
  --fire: #c64a2f;
  --fire-dark: #762113;
  --fire-soft: #ffdcc4;
  --status-green: #168451;
  --status-green-ring: rgb(22 132 81 / 18%);
  --peach: #ffb77f;
  --peach-ink: #2f1500;
  --white: #ffffff;
  --brand-mid: #70629a;
  --gradient-angle: 100deg;
  --brand-gradient: linear-gradient(var(--gradient-angle), var(--fire-dark) 0%, var(--brand-mid) 52%, var(--ice) 100%);
  --fire-gradient: linear-gradient(var(--gradient-angle), var(--fire-dark) 0%, var(--fire) 100%);
  --ice-gradient: linear-gradient(var(--gradient-angle), var(--ice-dark) 0%, var(--ice) 100%);
  --brand-soft-gradient: linear-gradient(135deg, var(--fire-soft), var(--ice-soft));
  --cta-surface-warm: #eee7e6;
  --cta-surface-mid: #e3e4e8;
  --cta-surface-cool: #e5eef6;
  --cta-surface-gradient: linear-gradient(90deg, var(--cta-surface-warm), var(--cta-surface-mid) 52%, var(--cta-surface-cool));
  --headline: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --body: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  --label: "JetBrains Mono", ui-monospace, monospace;
  --container: 80rem;
  --header-container: 90rem;
  --header-margin: 1rem;
  --mobile-margin: 1rem;
  --desktop-margin: 3rem;
  --section-space: clamp(4.75rem, 8vw, 6rem);
  --section-entry-space: clamp(3.25rem, 5.5vw, 4.5rem);
  --swoop-height: clamp(3.25rem, 5vw, 4rem);
  --swoop-content-gap: clamp(0.875rem, 1.5vw, 1.25rem);
  --hero-panel-border: 1px solid rgb(91 90 137 / 18%);
  --transition: 180ms ease;
  --button-hover-scale: 0.97;
  --button-active-scale: 0.95;
}

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

html {
  min-width: 0;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  text-size-adjust: 100%;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid #6b2a17;
  outline-offset: 3px;
}

::selection {
  background: var(--ice-soft);
  color: var(--ice-dark);
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--headline);
  font-weight: 800;
  line-height: 1.15;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 4.65rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.5rem;
}

.page-shell {
  width: min(calc(100% - (2 * var(--mobile-margin))), var(--container));
  margin-inline: auto;
}

.nav-shell {
  width: min(calc(100% - (2 * var(--header-margin))), var(--header-container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: 0 10px 28px rgb(0 0 0 / 15%);
  color: var(--ink);
  font-weight: 800;
  padding: 0.75rem 1rem;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.material-symbols-outlined {
  display: inline-block;
  width: 1em;
  flex: 0 0 auto;
  overflow: hidden;
  font-variation-settings: "FILL" 0, "wght" 450, "GRAD" 0, "opsz" 24;
  line-height: 1;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--fire-soft);
  background: var(--peach);
  box-shadow: 0 4px 15px rgb(47 21 0 / 8%);
}

.nav-shell {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.25vw, 1.25rem);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 3.65rem;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
}

.desktop-nav > a,
.nav-dropdown__toggle {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--peach-ink);
  font-family: var(--headline);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5rem 0.35rem;
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible,
.nav-dropdown__toggle[aria-expanded="true"] {
  color: var(--white);
  text-shadow: 0 1px 2px rgb(47 21 0 / 35%);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__toggle {
  gap: 0.2rem;
  border: 0;
  background: transparent;
}

.nav-dropdown__toggle .material-symbols-outlined,
.mobile-nav__submenu-toggle .material-symbols-outlined {
  font-size: 1.15rem;
  transition: transform var(--transition);
}

.nav-dropdown__toggle[aria-expanded="true"] .material-symbols-outlined,
.mobile-nav__submenu-toggle[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  display: grid;
  width: min(21rem, calc(100vw - 2rem));
  gap: 0.2rem;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgb(91 90 137 / 24%);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 18px 42px rgb(16 20 21 / 16%);
  padding: 0.55rem;
}

.nav-dropdown__menu::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.2rem;
  background: var(--brand-gradient);
  content: "";
}

.nav-dropdown__menu a {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  border-radius: 0.85rem;
  color: var(--ink);
  font-family: var(--headline);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible,
.nav-dropdown__menu a[aria-current="page"] {
  background: var(--brand-soft-gradient);
  color: var(--ice-dark);
  text-shadow: none;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1rem;
}

.call-link {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgb(118 33 19 / 35%);
  border-radius: 999px;
  background: var(--fire-gradient);
  box-shadow: 0 0 18px rgb(198 74 47 / 28%);
  color: var(--white);
  font-family: var(--headline);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.call-link .material-symbols-outlined {
  font-size: 1.15rem;
  font-variation-settings: "FILL" 1, "wght" 650, "GRAD" 0, "opsz" 24;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--headline);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.78rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.button:hover,
.call-link:hover {
  transform: scale(var(--button-hover-scale));
}

.button:active,
.call-link:active {
  opacity: 0.84;
  transform: scale(var(--button-active-scale));
}

.button--compact {
  min-height: 2.65rem;
  padding: 0.65rem 1.1rem;
}

.button--cool {
  background: var(--ice-gradient);
  box-shadow: 0 0 18px rgb(20 147 255 / 28%);
  color: var(--white);
}

.button--fire {
  background: var(--fire-gradient);
  box-shadow: 0 0 18px rgb(198 74 47 / 25%);
  color: var(--white);
}

.button--brand {
  background: var(--brand-gradient);
  box-shadow: 0 0 20px rgb(91 90 137 / 24%);
  color: var(--white);
}

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

.button--surface:hover {
  background: var(--surface-container);
}

.button--outline {
  border-color: var(--ice-dark);
  color: var(--ice-dark);
}

.button--dark {
  min-height: 2.6rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1.25rem;
}

.button--large {
  min-height: 3.35rem;
  padding-inline: 1.9rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  min-height: 3rem;
  place-items: center;
  border: 1px solid rgb(47 21 0 / 25%);
  border-radius: 50%;
  background: rgb(255 255 255 / 25%);
}

.menu-toggle .material-symbols-outlined {
  font-size: 1.55rem;
}

.mobile-nav {
  max-height: calc(100dvh - 5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid rgb(47 21 0 / 14%);
  background: var(--peach);
  box-shadow: 0 12px 24px rgb(47 21 0 / 12%);
  padding: 0.4rem 1rem 1.2rem;
}

.mobile-nav > a,
.mobile-nav__submenu-toggle {
  display: flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
  color: var(--peach-ink);
  font-family: var(--headline);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav > a,
.mobile-nav__group {
  border-bottom: 1px solid rgb(47 21 0 / 14%);
}

.mobile-nav__submenu-toggle {
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.mobile-nav__submenu {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
  border-left: 2px solid var(--ice-dark);
  padding-left: 0.75rem;
}

.mobile-nav__submenu a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  border-radius: 0.75rem;
  color: var(--peach-ink);
  font-family: var(--headline);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0.6rem 0.7rem;
  text-decoration: none;
}

.mobile-nav__submenu a:hover,
.mobile-nav__submenu a:focus-visible,
.mobile-nav__submenu a[aria-current="page"] {
  background: rgb(255 255 255 / 32%);
}

.mobile-nav__actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  grid-template-columns: 1fr 1fr;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
  padding: 1rem 0 calc(var(--swoop-height) + var(--swoop-content-gap));
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 48%;
  height: 58%;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
}

.ambient--cool {
  right: -12%;
  bottom: -15%;
  background: rgb(20 147 255 / 11%);
}

.ambient--warm {
  top: -18%;
  left: -13%;
  background: rgb(198 74 47 / 11%);
}

.hero-grid {
  display: grid;
  align-items: start;
  column-gap: clamp(2.5rem, 5vw, 5rem);
  row-gap: 0.75rem;
  grid-template-areas:
    "proof proof"
    "copy media";
  grid-template-columns: minmax(0, 1.08fr) minmax(28rem, 0.92fr);
}

.hero-copy {
  display: grid;
  grid-area: copy;
  gap: 1rem;
}

.availability {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--surface-line);
  border-radius: 999px;
  background: var(--surface);
  color: #4b5258;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.75rem;
  text-transform: uppercase;
}

.availability span {
  width: 0.52rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--status-green);
  box-shadow: 0 0 0 0.2rem var(--status-green-ring);
}

.hero h1 {
  max-width: none;
}

.title-line,
.title-gradient {
  display: block;
}

.title-line--nowrap,
.title-gradient {
  white-space: nowrap;
}

.title-gradient {
  width: fit-content;
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.title-gradient--hero {
  font-size: clamp(2rem, 3.25vw, 3rem);
  letter-spacing: -0.035em;
  margin-top: 0.14em;
}

.hero-lede {
  max-width: 39rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.2rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.15rem;
}

.button-row--center {
  justify-content: center;
  margin-top: 0.7rem;
}

.button-row .material-symbols-outlined {
  font-size: 1.15rem;
}

.hero-media {
  display: contents;
}

.hero-reviews {
  display: grid;
  grid-area: proof;
  width: min(100%, 44rem);
  align-items: center;
  justify-self: center;
  gap: clamp(0.75rem, 1.2vw, 1.1rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  border: var(--hero-panel-border);
  border-radius: 1.35rem;
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 14px 34px rgb(16 20 21 / 10%), 0 0 24px rgb(20 147 255 / 8%);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(12px);
}

.review-stat {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
}

.review-stat + .review-stat,
.review-total {
  border-left: 1px solid rgb(83 91 99 / 20%);
  padding-left: clamp(0.75rem, 1.2vw, 1.1rem);
}

.review-brand-link {
  display: grid;
  width: 2.75rem;
  min-height: 2.75rem;
  flex: 0 0 2.75rem;
  place-items: center;
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}

.review-brand-link:hover,
.review-brand-link:focus-visible {
  background: rgb(20 147 255 / 9%);
  transform: scale(var(--button-hover-scale));
}

.review-brand-link:active {
  transform: scale(var(--button-active-scale));
}

.review-brand {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.review-stars {
  overflow: hidden;
  color: #f7b500;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.review-stat p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.review-stat strong {
  color: var(--ink);
  font-family: var(--headline);
  font-size: 0.95rem;
  font-weight: 800;
}

.review-total strong,
.review-total span {
  display: block;
}

.review-total strong {
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 0.95;
}

.review-total span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-photo-wrap {
  position: relative;
  grid-area: media;
  width: min(100%, 34rem);
  aspect-ratio: 5 / 6;
  justify-self: center;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: var(--hero-panel-border);
  border-radius: 2.25rem;
  background: var(--brand-soft-gradient);
  box-shadow: 0 22px 55px rgb(16 20 21 / 15%), 0 0 28px rgb(20 147 255 / 16%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  transform: scale(1.075);
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--white);
  font-family: var(--headline);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 2rem;
  text-align: center;
}

.image-fallback--dark {
  color: var(--ink);
}

[data-image-error] img {
  display: none;
}

[data-image-error] .image-fallback {
  display: grid;
}

.section-swoop {
  --swoop-to: var(--surface-container);

  position: relative;
  z-index: 3;
  width: 100%;
  height: var(--swoop-height);
  margin-top: calc(var(--swoop-height) * -1);
  margin-bottom: -1px;
  background: transparent;
  color: var(--swoop-to);
  line-height: 0;
  pointer-events: none;
}

.section-swoop svg {
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  color: inherit;
  transform: translateY(1px);
  overflow: visible;
}

.section-swoop path {
  fill: currentcolor;
}

.section-swoop--white-gray {
  --swoop-to: var(--surface-container);
}

.section-swoop--gray-white {
  --swoop-to: var(--white);
}

.section-swoop--gray-footer {
  --swoop-to: var(--surface-high);
}

.section-swoop--white-cta {
  --swoop-to: var(--cta-surface-mid);
}

.section-swoop--white-cta path {
  fill: url("#cta-swoop-gradient");
}

.cta-swoop-stop--warm {
  stop-color: var(--cta-surface-warm);
}

.cta-swoop-stop--mid {
  stop-color: var(--cta-surface-mid);
}

.cta-swoop-stop--cool {
  stop-color: var(--cta-surface-cool);
}

.services {
  position: relative;
  background: var(--surface-container);
  padding: var(--section-entry-space) 0 calc(var(--swoop-height) + var(--swoop-content-gap));
}

.section-heading {
  display: grid;
  max-width: 43rem;
  justify-items: center;
  gap: 0.8rem;
  margin: 0 auto clamp(2.75rem, 5vw, 3.5rem);
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 42rem;
  color: var(--muted);
}

.section-tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--surface-line);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.36rem 0.75rem;
  text-transform: uppercase;
}

.section-tag--cool {
  color: var(--ice-dark);
}

.section-tag--warm {
  color: var(--fire-dark);
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.plan-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--surface-line);
  border-radius: 2.5rem;
  background: var(--surface);
  box-shadow: 0 4px 12px rgb(16 20 21 / 5%);
}

.service-card {
  display: flex;
  min-height: 21rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 13px 30px rgb(16 20 21 / 10%);
}

.service-card--cool:hover {
  border-color: var(--ice);
}

.service-card--warm:hover {
  border-color: var(--fire);
}

.card-glow {
  position: absolute;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.12;
  transition: opacity var(--transition);
}

.service-card:hover .card-glow {
  opacity: 0.22;
}

.service-card--cool .card-glow {
  top: -2.5rem;
  right: -2.5rem;
  background: var(--ice);
}

.service-card--warm .card-glow {
  right: -2.5rem;
  bottom: -2.5rem;
  background: var(--fire);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid;
  border-radius: 50%;
  background: var(--white);
}

.service-card--cool .service-icon,
.service-card--cool .service-card__cta {
  border-color: rgb(20 147 255 / 30%);
  color: var(--ice-dark);
}

.service-card--warm .service-icon,
.service-card--warm .service-card__cta {
  border-color: rgb(198 74 47 / 30%);
  color: var(--fire-dark);
}

.service-card h3,
.service-card p,
.service-card__cta {
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--muted);
}

.service-card__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-family: var(--headline);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card__cta .material-symbols-outlined {
  font-size: 1.15rem;
  transition: transform var(--transition);
}

.service-card:hover .service-card__cta .material-symbols-outlined {
  transform: translateX(4px);
}

.plan-card {
  display: flex;
  width: min(100%, 36rem);
  min-height: 13rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(145deg, var(--surface), var(--surface-high));
  grid-column: 1 / -1;
  justify-self: center;
  padding: 1.5rem;
  text-align: center;
}

.plan-card p {
  color: var(--muted);
  text-wrap: balance;
}

.plan-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  color: var(--ink);
  font-family: var(--headline);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.plan-card__cta .material-symbols-outlined {
  font-size: 1.15rem;
  transition: transform var(--transition);
}

.plan-card__cta:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.why {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: calc(var(--section-entry-space) + 2rem) 0 calc(var(--swoop-height) + var(--swoop-content-gap));
}

.why-glow {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 42%;
  height: 62%;
  border-radius: 50%;
  background: rgb(20 147 255 / 7%);
  filter: blur(110px);
  pointer-events: none;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(24rem, 0.95fr) minmax(0, 1.05fr);
}

.technician-wrap {
  display: flex;
  min-width: 0;
  justify-content: center;
}

.technician-photo {
  position: relative;
  width: min(100%, 31rem);
  aspect-ratio: 1;
  overflow: hidden;
  border: var(--hero-panel-border);
  border-radius: 2.25rem;
  background: var(--brand-soft-gradient);
  box-shadow: 0 22px 55px rgb(16 20 21 / 15%), 0 0 28px rgb(20 147 255 / 16%);
  cursor: pointer;
}

.technician-photo:focus-visible {
  outline: 3px solid var(--ice);
  outline-offset: 0.35rem;
}

.technician-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

.technician-photo .slideshow-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.7s ease, transform 3.4s ease;
}

.technician-photo .slideshow-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.technician-photo .slideshow-image--smile {
  object-position: 50% 58%;
}

.technician-photo .slideshow-image--shout-out,
.technician-photo .slideshow-image--bni {
  object-fit: contain;
  object-position: center;
  background: #172027;
}

.technician-photo .slideshow-image[data-image-error] {
  display: none;
}

.technician-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(45deg, rgb(255 255 255 / 15%), transparent 45%);
  pointer-events: none;
}

.slideshow-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 1.15rem;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  pointer-events: none;
}

.slideshow-dots span {
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid rgb(255 255 255 / 85%);
  border-radius: 50%;
  background: rgb(16 20 21 / 35%);
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  transition: width 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease;
}

.slideshow-dots span.is-active {
  width: 1.35rem;
  border-radius: 999px;
  background: var(--white);
}

.why-copy {
  display: grid;
  gap: 1.4rem;
}

.why-copy h2 {
  max-width: none;
}

.title-gradient--why {
  margin-top: 0.12em;
}

.why-lede {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  align-items: start;
  gap: 0.85rem;
  grid-template-columns: auto 1fr;
}

.check-icon {
  display: grid;
  width: 1.65rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  margin-top: 0.1rem;
}

.check-icon .material-symbols-outlined {
  font-size: 1rem;
}

.check-icon--cool {
  background: rgb(20 147 255 / 12%);
  color: var(--ice-dark);
}

.check-icon--warm {
  background: rgb(198 74 47 / 12%);
  color: var(--fire-dark);
}

.check-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: balance;
}

.credential-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.credential-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.credential-logo--trane {
  height: clamp(2.9rem, 4.8vw, 3.6rem);
}

.credential-logo--nate {
  height: clamp(3.5rem, 5.6vw, 4.2rem);
  border-radius: 50%;
}

.credential-logo--bbb {
  height: clamp(3.3rem, 5.4vw, 4.1rem);
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--cta-surface-gradient);
  padding: var(--section-entry-space) var(--mobile-margin) calc(var(--swoop-height) + var(--swoop-content-gap));
}

.grid-pattern {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgb(198 198 203 / 22%) 1px, transparent 1px), linear-gradient(90deg, rgb(198 198 203 / 22%) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 var(--swoop-height));
  mask-image: linear-gradient(to bottom, transparent 0, #000 var(--swoop-height));
}

.cta-card {
  display: flex;
  width: min(100%, 64rem);
  align-items: center;
  flex-direction: column;
  gap: 1.4rem;
  margin-inline: auto;
  border: 1px solid rgb(198 198 203 / 60%);
  border-radius: 3.75rem;
  background: var(--white);
  box-shadow: 0 18px 45px rgb(16 20 21 / 13%);
  padding: clamp(2.5rem, 6vw, 4.2rem);
  text-align: center;
}

.cta-card h2 {
  max-width: none;
}

.cta-card > p {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  text-wrap: balance;
}

.discount-grid {
  display: grid;
  width: 100%;
  gap: clamp(0.7rem, 1.5vw, 1rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 0.25rem;
}

.discount-card {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 0.85rem;
  grid-template-columns: auto minmax(0, 1fr);
  border: 1px solid var(--surface-line);
  border-radius: 1.15rem;
  background: var(--white);
  box-shadow: 0 5px 16px rgb(16 20 21 / 6%);
  padding: 1rem;
  text-align: left;
}

.discount-card__icon {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ice-dark);
}

.discount-card:nth-child(2) .discount-card__icon {
  color: var(--fire-dark);
}

.discount-card:nth-child(3) .discount-card__icon {
  color: var(--brand-mid);
}

.discount-card__icon .material-symbols-outlined {
  font-size: 1.35rem;
  font-variation-settings: "FILL" 0, "wght" 550, "GRAD" 0, "opsz" 24;
}

.discount-card > div {
  display: grid;
  min-width: 0;
  gap: 0.08rem;
}

.discount-card__label,
.discount-card__detail {
  display: block;
}

.discount-card__label {
  color: var(--muted);
  font-family: var(--label);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
}

.discount-card strong {
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
}

.discount-card__detail {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.site-footer {
  background: var(--surface-high);
  padding: var(--section-entry-space) 0 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr repeat(3, 1fr);
}

.footer-brand,
.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.65rem;
}

.brand--footer img {
  height: 4.8rem;
}

.footer-brand p {
  max-width: 19rem;
  color: var(--muted);
}

.footer-column h2 {
  margin-bottom: 0.35rem;
  font-family: var(--headline);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ice-dark);
}

.footer-column .material-symbols-outlined {
  font-size: 1.1rem;
}

.footer-legal {
  margin-top: 1rem;
  border-top: 1px solid var(--surface-line);
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 1rem;
}

.trusted-pros {
  border-top: 2px solid rgb(118 33 19 / 22%);
  background: var(--peach);
  color: var(--peach-ink);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.trusted-pros__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.trusted-pros p {
  max-width: 52rem;
  font-family: var(--headline);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.local-seo-footer {
  background: var(--surface);
  padding: 0.5rem 0 0.4rem;
}

.site-credit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-credit a {
  display: inline-flex;
  opacity: 0.64;
  transition: opacity var(--transition), transform var(--transition);
}

.site-credit a:hover,
.site-credit a:focus-visible {
  opacity: 0.9;
  transform: scale(0.98);
}

.site-credit img {
  width: clamp(6.75rem, 10vw, 8.5rem);
  height: auto;
}

.service-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
  padding: clamp(4.25rem, 7vw, 5.75rem) 0 calc(var(--swoop-height) + var(--swoop-content-gap));
}

.service-page-hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
}

.service-page-hero__copy {
  display: grid;
  gap: 1.25rem;
}

.service-page-kicker {
  max-width: 44rem;
  color: var(--ice-dark);
  font-family: var(--label);
  font-size: clamp(0.82rem, 1.25vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.55;
}

.service-page-hero h1 {
  max-width: 54rem;
}

.title-gradient--service {
  margin-top: 0.08em;
  white-space: normal;
}

.service-page-hero__visual {
  position: relative;
  display: grid;
  min-height: clamp(15rem, 25vw, 21rem);
  place-items: center;
  overflow: hidden;
  border: var(--hero-panel-border);
  border-radius: 3.75rem;
  background: var(--brand-soft-gradient);
  box-shadow: 0 18px 45px rgb(16 20 21 / 10%);
}

.service-page-hero__visual::before,
.service-page-hero__visual::after {
  position: absolute;
  width: 12rem;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  filter: blur(10px);
}

.service-page-hero__visual::before {
  top: -4rem;
  left: -3rem;
  background: rgb(198 74 47 / 20%);
}

.service-page-hero__visual::after {
  right: -4rem;
  bottom: -4rem;
  background: rgb(20 147 255 / 22%);
}

.service-page-hero__visual--photo::before,
.service-page-hero__visual--photo::after {
  display: none;
}

.service-page-hero__visual--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.service-page-hero__visual--photo > .service-page-hero__image--ac-repair {
  object-position: 50% 25%;
}

.service-page-hero__visual--photo > .service-page-hero__image--ac-install {
  transform: scale(1.4);
  transform-origin: 50% 55%;
}

.service-page-hero__symbol {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(7rem, 11vw, 9.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 2.5rem;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 16px 34px rgb(16 20 21 / 12%);
  color: var(--ice-dark);
  transform: rotate(-4deg);
}

.service-page-hero__symbol .material-symbols-outlined {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 48;
}

.service-page-hero__badge {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  width: 3.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--fire-gradient);
  box-shadow: 0 10px 24px rgb(118 33 19 / 24%);
  color: var(--white);
}

.service-page-hero__badge .material-symbols-outlined {
  font-size: 1.7rem;
}

.service-content {
  position: relative;
  background: var(--surface-container);
  padding: var(--section-entry-space) 0 calc(var(--swoop-height) + var(--swoop-content-gap));
}

.service-content--white {
  background: var(--white);
}

.service-content-card {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  overflow: hidden;
  border: var(--hero-panel-border);
  border-radius: 3.5rem;
  background: var(--white);
  box-shadow: 0 18px 45px rgb(16 20 21 / 9%);
  padding: clamp(2rem, 5vw, 4rem);
}

.service-content--white .service-content-card {
  background: linear-gradient(145deg, var(--surface), var(--surface-high));
}

.service-content-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.35rem;
  background: var(--brand-gradient);
  content: "";
}

.service-content-card h2 {
  max-width: 58rem;
}

.service-content-card__body {
  display: grid;
  align-items: start;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}

.service-content-card__body > div {
  display: grid;
  gap: 1rem;
}

.service-content-card p,
.service-content-card li {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}

.service-content-card ul,
.service-bullet-list {
  display: grid;
  gap: 0.85rem;
  margin: 0.5rem 0;
  padding-left: 0;
  list-style: none;
}

.service-bullet-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  font-weight: 400;
  line-height: 1.75;
}

.service-bullet-list li::before {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 3px 8px rgb(16 20 21 / 15%);
  color: var(--white);
  content: "✓";
  font-size: 0.85rem;
  font-weight: 800;
}

.service-card-action {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.85rem;
}

.service-card-action .button {
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
}

.service-content-card a:not(.button) {
  color: var(--ice-dark);
  font-weight: 600;
  text-decoration-color: rgb(0 72 131 / 45%);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.service-content-card a:not(.button):hover {
  color: var(--fire-dark);
  text-decoration-color: currentcolor;
}

.review-page {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgb(255 220 196 / 60%) 0, var(--white) 22rem, var(--surface) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0 var(--section-space);
}

.review-page::before,
.review-page::after {
  position: absolute;
  width: 30rem;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  filter: blur(115px);
  opacity: 0.1;
  pointer-events: none;
}

.review-page::before {
  top: 6rem;
  right: -13rem;
  background: var(--ice);
}

.review-page::after {
  top: 24rem;
  left: -15rem;
  background: var(--fire);
}

.review-page .page-shell {
  position: relative;
  z-index: 1;
}

.review-page__card {
  display: grid;
  width: min(100%, 38rem);
  justify-items: center;
  gap: 0.9rem;
  margin-inline: auto;
  border: var(--hero-panel-border);
  border-radius: 2.75rem;
  background: var(--white);
  box-shadow: 0 18px 45px rgb(16 20 21 / 13%);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
}

.review-page__brand {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.review-page__card h1 {
  font-size: clamp(2.35rem, 5vw, 3.5rem);
}

.review-page__heading {
  display: grid;
  max-width: 46rem;
  justify-items: center;
  gap: 0.85rem;
  margin: clamp(2.75rem, 5vw, 4rem) auto clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}

.review-page__heading > p:last-child {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
}

.google-review-grid {
  columns: 3 20rem;
  column-gap: clamp(1rem, 2vw, 1.5rem);
}

.google-review-card {
  display: inline-flex;
  width: 100%;
  break-inside: avoid;
  align-items: stretch;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  border: 1px solid #dadce0;
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 3px 8px rgb(60 64 67 / 8%), 0 10px 24px rgb(60 64 67 / 6%);
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.google-review-card:hover {
  border-color: #c4c7c5;
  box-shadow: 0 5px 12px rgb(60 64 67 / 10%), 0 16px 32px rgb(60 64 67 / 9%);
  transform: translateY(-2px);
}

.google-review-card__header {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.google-review-card__avatar {
  display: grid;
  width: 2.85rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #1a73e8;
  color: var(--white);
  font-family: var(--headline);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.google-review-card:nth-child(4n + 2) .google-review-card__avatar {
  background: #d93025;
}

.google-review-card:nth-child(4n + 3) .google-review-card__avatar {
  background: #188038;
}

.google-review-card:nth-child(4n + 4) .google-review-card__avatar {
  background: #9334e6;
}

.google-review-card__reviewer {
  min-width: 0;
}

.google-review-card__reviewer h3 {
  overflow: hidden;
  color: #202124;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.28rem;
}

.google-review-card__rating span:first-child {
  color: #fbbc04;
  font-size: 0.93rem;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.google-review-card__rating span:last-child {
  color: #5f6368;
  font-size: 0.72rem;
  font-weight: 600;
}

.google-review-card__source {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.google-review-card blockquote {
  margin: 0;
  color: #3c4043;
  font-size: 0.95rem;
  line-height: 1.65;
}

.google-review-card blockquote p + p {
  margin-top: 0.9rem;
}

.google-review-card footer {
  margin-top: auto;
  border-top: 1px solid #eceff1;
  color: #70757a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-top: 0.85rem;
}

.service-detail {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0 var(--section-space);
}

.service-detail::before,
.service-detail::after {
  position: absolute;
  width: 30rem;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  filter: blur(110px);
  opacity: 0.12;
  pointer-events: none;
}

.service-detail::before {
  top: -12rem;
  right: -8rem;
  background: var(--ice);
}

.service-detail::after {
  bottom: -15rem;
  left: -10rem;
  background: var(--fire);
}

.service-detail__inner {
  position: relative;
  z-index: 1;
}

.service-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-family: var(--headline);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.service-detail__back:hover {
  color: var(--ice-dark);
}

.service-detail__back .material-symbols-outlined {
  font-size: 1.1rem;
}

.service-detail__hero {
  display: grid;
  max-width: 54rem;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.service-detail__hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

.service-detail__hero > p:not(.section-tag) {
  max-width: 46rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.service-detail__content {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.service-detail__copy {
  display: grid;
  gap: 1.15rem;
}

.service-detail__copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.service-detail__copy p,
.service-detail__copy li {
  color: var(--muted);
  line-height: 1.7;
}

.service-detail__copy ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.25rem;
}

.service-detail__aside {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--surface-line);
  border-radius: 2rem;
  background: linear-gradient(145deg, var(--surface), var(--surface-high));
  box-shadow: 0 12px 30px rgb(16 20 21 / 8%);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.service-detail__aside h2 {
  font-size: 1.5rem;
}

.service-detail__aside p {
  color: var(--muted);
}

.service-detail__aside .button {
  width: 100%;
}

.noscript {
  position: fixed;
  z-index: 500;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border: 2px solid var(--fire);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 0 18px 42px rgb(16 20 21 / 18%);
  padding: 1rem;
  text-align: center;
}

@media (min-width: 48rem) {
  .page-shell {
    width: min(calc(100% - (2 * var(--desktop-margin))), var(--container));
  }
}

@media (max-width: 72rem) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid {
    column-gap: clamp(2rem, 4vw, 3.5rem);
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  }

  .hero-reviews {
    gap: 0.6rem;
    padding: 0.75rem;
  }

  .review-stat {
    gap: 0.45rem;
  }

  .review-stat + .review-stat,
  .review-total {
    padding-left: 0.6rem;
  }

  .review-brand {
    width: 2rem;
    height: 2rem;
    font-size: 1.6rem;
  }

  .review-stars {
    font-size: 0.7rem;
  }

  .review-stat p {
    font-size: 0.63rem;
  }

  .review-stat strong {
    font-size: 0.85rem;
  }

  .review-total strong {
    font-size: 1.45rem;
  }

  .review-total span {
    font-size: 0.56rem;
  }

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

@media (max-width: 56rem) {
  .hero-grid,
  .why-grid,
  .service-detail__content,
  .service-page-hero__grid,
  .service-content-card__body {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.75rem;
    grid-template-areas:
      "copy"
      "proof"
      "media";
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero h1,
  .hero-lede {
    margin-inline: auto;
  }

  .title-gradient {
    margin-inline: auto;
  }

  .hero-photo-wrap {
    width: min(100%, 42rem);
    margin-top: 0;
  }

  .why-copy {
    order: 1;
  }

  .technician-wrap {
    order: 2;
  }

  .why-copy .section-tag {
    margin-inline: auto;
  }

  .why-copy > h2,
  .why-lede {
    margin-inline: auto;
    text-align: center;
  }

  .service-page-hero__visual {
    width: min(100%, 40rem);
    justify-self: center;
  }

}

@media (max-width: 42rem) {
  h1 {
    font-size: clamp(2.05rem, 10vw, 3.7rem);
  }

  .title-gradient--hero {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .why-copy h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .plan-card h3 {
    font-size: clamp(1.15rem, 5.4vw, 1.5rem);
    white-space: nowrap;
  }

  .cta-card {
    padding: 2.25rem 1.25rem;
  }

  .cta-card h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

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

  .discount-card {
    padding: 0.9rem 1rem;
  }

  .nav-shell {
    min-height: 4.5rem;
    gap: 0.5rem;
  }

  .brand img {
    height: 2.6rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .call-link {
    min-height: 2.75rem;
    gap: 0.3rem;
    font-size: 0.78rem;
    padding: 0.5rem 0.7rem;
  }

  .call-link .material-symbols-outlined {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 2.75rem;
    min-height: 2.75rem;
  }

  .nav-actions > .button {
    display: none;
  }

  .mobile-nav__actions {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.75rem;
  }

  .button-row {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-photo-wrap {
    width: 100%;
  }

  .hero-reviews {
    width: 100%;
  }

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

  .service-card,
  .plan-card {
    min-height: 18rem;
  }

  .plan-card {
    min-height: 14rem;
  }

  .why {
    padding-top: calc(var(--section-entry-space) + 1.5rem);
  }

  .technician-photo {
    width: min(90vw, 30rem);
  }

  .cta-card {
    border-radius: 2.5rem;
  }

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

  .trusted-pros__inner {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .trusted-pros .button {
    width: 100%;
  }

  .review-page__card {
    border-radius: 2rem;
    padding: 2rem 1.25rem;
  }

  .review-page__heading {
    margin-top: 2.75rem;
  }

  .google-review-grid {
    columns: 1;
  }

  .google-review-card {
    border-radius: 1rem;
  }

  .service-page-hero {
    padding-top: 3.75rem;
  }

  .service-page-hero__visual {
    min-height: 13rem;
    border-radius: 2.5rem;
  }

  .service-content-card {
    border-radius: 2.5rem;
    padding: 2.25rem 1.25rem;
  }
}

@media (max-width: 34rem) {
  .hero-reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-total {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem;
    grid-column: 1 / -1;
    border-top: 1px solid rgb(83 91 99 / 20%);
    border-left: 0;
    padding-top: 0.75rem;
    padding-left: 0;
    text-align: center;
  }

  .review-total span {
    margin-top: 0;
  }
}

@media (max-width: 22rem) {
  .title-line--nowrap,
  .title-gradient {
    white-space: normal;
  }

  .nav-shell {
    gap: 0.35rem;
  }

  .brand img {
    height: 2.35rem;
  }

  .nav-actions {
    gap: 0.25rem;
  }

  .call-link {
    gap: 0.15rem;
    font-size: 0.72rem;
    padding-inline: 0.4rem;
  }

  .call-link .material-symbols-outlined {
    font-size: 0.9rem;
  }
}

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

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

@media (forced-colors: active) {
  .title-gradient {
    background: none;
    color: CanvasText;
  }
}
