:root {
  --red: #d71945;
  --red-dark: #b9143a;
  --charcoal: #23262b;
  --deep: #16181c;
  --text: #2b2f36;
  --muted: #6b717c;
  --line: #e8e9ed;
  --soft: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(17, 19, 23, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-heading.align-left {
  text-align: left;
  margin-left: 0;
}

.section-heading h2,
.process-copy h2,
.contact-panel h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--deep);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading p,
.process-copy p,
.contact-panel p,
.hero-text {
  color: var(--muted);
  font-size: 1rem;
}

.top-strip {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  padding: 0.4rem 1rem;
  border: 4px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Barlow Condensed", sans-serif;
}

.brand-text {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(215, 25, 69, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--deep);
  margin-bottom: 1rem;
  max-width: 11ch;
}

.hero-text {
  max-width: 56ch;
  margin-bottom: 1.6rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(215, 25, 69, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-secondary {
  border: 1px solid rgba(35, 38, 43, 0.12);
  background: var(--white);
  color: var(--deep);
}

.hero-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red);
}

.hero-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top,
.map-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  background: var(--deep);
  color: var(--white);
}

.hero-card-top p,
.map-top p {
  margin: 0;
  font-weight: 700;
}

.status-dot,
.map-pin {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #26d36a;
  box-shadow: 0 0 0 5px rgba(38, 211, 106, 0.18);
}

.hero-card-body {
  padding: 1.25rem;
}

.info-row + .info-row {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.info-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.info-row p {
  margin: 0;
  color: var(--text);
}

.info-row a {
  color: var(--deep);
  font-weight: 600;
}

.hero-wave {
  margin-top: 3.5rem;
  height: 84px;
  background:
    radial-gradient(circle at 14px 42px, transparent 34px, rgba(215, 25, 69, 0.09) 35px, rgba(215, 25, 69, 0.09) 39px, transparent 40px) repeat-x;
  background-size: 84px 84px;
  opacity: 0.8;
}

.trust-strip {
  background: var(--deep);
  color: var(--white);
  padding: 1.2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  padding: 1.2rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:first-child {
  border-left: none;
}

.trust-item span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-item h2 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(215, 25, 69, 0.18);
  box-shadow: var(--shadow);
}

.service-card-featured {
  background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
  border-color: rgba(215, 25, 69, 0.2);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card-featured .service-icon {
  background: var(--red);
}

.service-card h3,
.appliance-card h3,
.review-card h3,
.step-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-card p,
.appliance-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

.appliances {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.appliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.appliance-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.appliance-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(215, 25, 69, 0.05);
}

.appliance-badge {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 0.9rem;
}

.appliance-badge.red {
  background: rgba(215, 25, 69, 0.12);
  color: var(--red);
}

.appliance-badge.dark {
  background: rgba(35, 38, 43, 0.09);
  color: var(--deep);
}

.process {
  background: var(--deep);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.process-copy h2,
.process-copy p {
  color: var(--white);
}

.process-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.3rem;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 1.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.step-card p {
  color: rgba(255, 255, 255, 0.7);
}

.reviews {
  background: #fafafa;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(17, 19, 23, 0.04);
}

.review-card::before {
  content: "“";
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  color: rgba(215, 25, 69, 0.18);
  line-height: 0.7;
  margin-bottom: 0.6rem;
}

.review-text {
  color: var(--text);
  margin-bottom: 1.1rem;
}

.review-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1rem;
}

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item span {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.contact-item p {
  margin: 0;
  color: var(--text);
}

.contact-item a {
  font-weight: 600;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-visual {
  position: relative;
  min-height: 380px;
  background:
    linear-gradient(135deg, #f3f4f7 0%, #e8ebf1 100%);
}

.map-line {
  position: absolute;
  border-radius: 999px;
  background: rgba(35, 38, 43, 0.08);
}

.line-one {
  width: 68%;
  height: 10px;
  top: 25%;
  left: 10%;
  transform: rotate(18deg);
}

.line-two {
  width: 82%;
  height: 10px;
  top: 54%;
  left: 6%;
  transform: rotate(-12deg);
}

.line-three {
  width: 32%;
  height: 10px;
  top: 66%;
  right: 12%;
  transform: rotate(42deg);
}

.map-target {
  position: absolute;
  top: 42%;
  left: 54%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-target span {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(215, 25, 69, 0.14);
  margin-bottom: 0.8rem;
}

.map-target p {
  margin: 0;
  font-weight: 700;
  color: var(--deep);
}

.map-bottom {
  padding: 1rem 1.2rem 1.25rem;
  border-top: 1px solid var(--line);
}

.map-bottom p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 0.8fr;
  gap: 2rem;
}

.footer-brand .brand-mark {
  border-color: var(--white);
  color: var(--white);
}

.footer-brand .brand-text {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 1rem;
}

.footer-links h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.6rem;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .process-grid,
  .services-grid,
  .reviews-grid,
  .footer-grid,
  .trust-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .appliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-grid,
  .contact-grid,
  .process-grid,
  .services-grid,
  .reviews-grid,
  .appliance-grid,
  .footer-grid,
  .trust-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .brand-mark {
    min-width: 108px;
    font-size: 1.8rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading {
    margin-bottom: 2.25rem;
  }

  .trust-item,
  .trust-item:first-child {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:first-child {
    border-top: none;
  }

  .map-visual {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    padding: 0.9rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .btn {
    width: 100%;
  }

  .hero-card-body,
  .contact-panel,
  .service-card,
  .appliance-card,
  .review-card,
  .step-card {
    padding: 1.15rem;
  }

  .section-heading h2,
  .process-copy h2,
  .contact-panel h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .footer-grid {
    gap: 1rem;
  }
}