:root {
  --page-bg: #f4fbff;
  --surface: #ffffff;
  --surface-soft: #eef9ff;
  --surface-accent: #e7f5ff;
  --border: #d4e8f3;
  --text-main: #17324d;
  --text-soft: #55697e;
  --heading: #0b2540;
  --button: #b62c36;
  --button-hover: #97252d;
  --button-text: #fff9f8;
  --accent: #d95f58;
  --accent-soft: #fbe1df;
  --shadow: 0 18px 45px rgba(23, 50, 77, 0.09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(181, 225, 244, 0.38), transparent 34%),
    radial-gradient(circle at bottom right, rgba(224, 241, 250, 0.6), transparent 28%),
    linear-gradient(180deg, #f9fdff 0%, #eef8fd 100%);
  color: var(--text-main);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--button);
  color: var(--button-text);
  padding: 10px 14px;
  border-radius: 999px;
}

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

.wrap {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247, 252, 255, 0.9);
  border-bottom: 1px solid rgba(212, 232, 243, 0.75);
}

.site-header .wrap {
  min-height: 0;
  align-items: center;
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(260px, 390px) minmax(220px, auto);
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.brand img {
  width: clamp(170px, 26vw, 250px);
  height: auto;
}

.header-panel {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.header-area {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(233, 246, 253, 0.94);
  border: 1px solid var(--border);
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}

.header-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(18, 45, 74, 0.05);
  min-width: 0;
}

.header-rating-copy {
  display: grid;
  gap: 1px;
  justify-items: start;
  min-width: 0;
}

.header-rating-copy strong,
.header-rating-copy span {
  line-height: 1.1;
}

.header-rating-copy strong {
  color: var(--heading);
  font-size: 0.82rem;
}

.header-rating-copy span:last-child {
  color: var(--text-soft);
  font-size: 0.7rem;
}

.mini-call {
  white-space: nowrap;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(18, 45, 74, 0.08);
  font-weight: 700;
  font-size: 0.98rem;
}

.hero,
.benefits,
.reviews,
.brands,
.service-area {
  padding: 30px 0 42px;
}

.hero {
  padding-top: 28px;
}

.hero-grid {
  display: grid;
  gap: 20px;
}

.hero-copy,
.hero-card,
.trust-card,
.benefit-card,
.review-card,
.callout-card,
.brand-card,
.city-grid span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 232, 243, 0.95);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(171, 218, 242, 0.26);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d3940;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  line-height: 1.02;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.16rem;
}

.subcopy,
.section-heading p,
.hero-card p,
.benefit-card p,
.review-card p,
.callout-card p,
.site-footer p {
  color: var(--text-soft);
}

.subcopy {
  margin: 16px 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--button);
  color: var(--button-text);
  box-shadow: 0 14px 30px rgba(182, 44, 54, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--button-hover);
}

.button-secondary {
  background: #f7fcff;
  border: 1px solid var(--border);
}

.button-full {
  width: 100%;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 24%, transparent 25%),
    var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: #8d3940;
  font-weight: 800;
  line-height: 1.2;
}

.lead-form {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.lead-form label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fbfeff;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text-main);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(182, 44, 54, 0.12);
  border-color: #b9d9ea;
}

.form-note,
.form-message {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.form-message {
  min-height: 1.4em;
  font-weight: 700;
}

.form-message.is-success {
  color: #2d7d50;
}

.form-message.is-error {
  color: #bc3b26;
}

.trust-band {
  padding: 0 0 20px;
}

.trust-grid,
.benefit-grid,
.review-list,
.brand-grid,
.city-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

.trust-card,
.benefit-card,
.review-card,
.callout-card,
.brand-card,
.city-grid span {
  border-radius: var(--radius-lg);
}

.trust-card {
  padding: 18px;
  text-align: center;
}

.trust-number {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  color: #8d3940;
}

.trust-label {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.trust-card-google {
  background:
    linear-gradient(180deg, rgba(234, 246, 253, 0.95), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.google-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.01em;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.g-blue {
  color: #4285f4;
}

.g-red {
  color: #db4437;
}

.g-yellow {
  color: #f4b400;
}

.g-green {
  color: #0f9d58;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 22px;
}

.section-heading p {
  margin: 10px 0 0;
  line-height: 1.65;
}

.benefit-card,
.review-card {
  padding: 20px;
}

.review-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-accent);
  color: #ba5419;
  font-weight: 900;
  margin-bottom: 14px;
}

.review-card strong {
  display: inline-block;
  margin-top: 14px;
  color: var(--heading);
}

.stars {
  color: #f4b400;
  font-size: 1.08rem;
  letter-spacing: 0.15em;
}

.callout {
  padding: 8px 0 42px;
}

.callout-card {
  padding: 24px;
  display: grid;
  gap: 16px;
  align-items: start;
}

.callout-card .button {
  justify-self: start;
}

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

.brand-card,
.city-grid span {
  padding: 16px 14px;
  text-align: center;
  font-weight: 800;
}

.brand-card {
  background:
    linear-gradient(180deg, rgba(231, 245, 255, 0.85), rgba(255, 255, 255, 0.94)),
    var(--surface);
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 12px;
  min-height: 108px;
  color: var(--heading);
}

.brand-card img {
  max-width: min(132px, 80%);
  max-height: 34px;
  width: auto;
  height: auto;
}

.brand-card span {
  font-size: 0.88rem;
  line-height: 1.15;
}

.brand-card-wordmark {
  background:
    linear-gradient(180deg, rgba(245, 251, 255, 0.96), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.wordmark {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.wordmark.whirlpool {
  letter-spacing: 0.01em;
}

.wordmark.frigidaire,
.wordmark.thermador,
.wordmark.electrolux {
  font-weight: 800;
}

.wordmark.kitchenaid {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
}

.wordmark.subzero {
  letter-spacing: 0.04em;
}

.wordmark.viking {
  letter-spacing: 0.12em;
}

.city-grid span {
  color: var(--text-soft);
}

.site-footer {
  padding: 24px 0 92px;
  border-top: 1px solid rgba(212, 232, 243, 0.9);
  background: rgba(244, 251, 255, 0.86);
}

.footer-grid {
  align-items: center;
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-contact a {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--heading);
}

.sticky-call {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(350px, calc(100% - 28px));
  z-index: 12;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: var(--button);
  color: var(--button-text);
  box-shadow: 0 18px 36px rgba(182, 44, 54, 0.24);
  font-weight: 800;
}

.sticky-call strong {
  font-size: 1rem;
}

@media (min-width: 700px) {
  .hero-actions {
    flex-direction: row;
  }

  .trust-grid,
  .benefit-grid,
  .review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid,
  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .callout-card,
  .footer-grid {
    grid-template-columns: 1.5fr auto;
  }
}

@media (min-width: 960px) {
  .hero {
    padding-top: 36px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .trust-grid,
  .benefit-grid,
  .review-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sticky-call {
    width: min(390px, calc(100% - 28px));
  }
}

@media (max-width: 959px) {
  .header-shell {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas: "brand rating";
    align-items: center;
    gap: 8px 10px;
    padding: 8px 0 10px;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
    align-self: center;
  }

  .brand img {
    width: min(150px, 100%);
  }

  .header-panel {
    display: none;
  }

  .header-rating {
    grid-area: rating;
    justify-content: flex-start;
    align-self: center;
    margin: 0;
    max-width: none;
    padding: 8px 10px;
    gap: 8px;
  }

  .header-rating .google-wordmark {
    font-size: 0.9rem;
  }

  .header-rating .stars {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }

  .header-rating-copy strong {
    font-size: 0.72rem;
  }

  .header-rating-copy span:last-child {
    font-size: 0.62rem;
  }

  .header-shell {
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .header-shell {
    gap: 7px 8px;
  }

  .brand img {
    width: 142px;
  }

  .header-rating {
    min-width: 0;
    padding: 7px 9px;
  }

  .header-rating-copy {
    gap: 0;
  }

  .header-rating-copy strong {
    font-size: 0.68rem;
  }

  .header-rating-copy span:last-child {
    font-size: 0.58rem;
  }
}

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

  .button {
    transition: none;
  }
}
