:root {
  --navy: #071629;
  --navy-2: #0b2545;
  --blue: #075c9a;
  --blue-2: #0e75bd;
  --orange: #ff7a00;
  --orange-2: #ff9a1f;
  --green: #14a65c;
  --bg: #f4f7fb;
  --card: #ffffff;
  --ink: #071629;
  --muted: #5e6b7b;
  --line: rgba(7, 22, 41, .12);
  --shadow: 0 24px 70px rgba(7, 22, 41, .16);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.top-strip .container {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
}

.top-strip div:nth-child(2) {
  text-align: center;
}

.top-strip div:nth-child(3) {
  text-align: right;
}

.logo-row {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.logo-row .container {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 34px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--green);
  font-weight: 1000;
  font-size: 42px;
  line-height: 1;
}

.logo-text strong {
  display: block;
  color: var(--green);
  font-weight: 1000;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .44em;
  text-transform: uppercase;
}

.contact-mini {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-mini i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #edf4fb;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 20px;
}

.contact-mini strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.contact-mini span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 122, 0, .24);
}

.btn:hover {
  background: var(--orange-2);
}

.main-nav {
  background: var(--blue);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: sticky;
  top: 0;
  z-index: 80;
}

.main-nav .container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
}

.nav-links a {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0 26px;
  border-left: 1px solid rgba(255,255,255,.11);
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(0,0,0,.13);
}

.langs {
  display: flex;
  gap: 8px;
}

.langs span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 1000;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,22,41,.88) 0%, rgba(6,22,41,.62) 48%, rgba(6,22,41,.28) 100%),
    url("../img/hero.jpg") center center / cover no-repeat,
    url("../img/hero-real-plumbing-v817.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(255,122,0,.18), transparent 28%),
    linear-gradient(180deg, rgba(6,22,41,0) 55%, rgba(6,22,41,.72) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: center;
}

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

.hero-kicker {
  display: inline-flex;
  border: 1px solid var(--orange);
  color: #fff;
  background: rgba(255,122,0,.12);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(54px, 6.6vw, 96px);
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 1000;
  text-shadow: 0 18px 60px rgba(0,0,0,.26);
}

.hero p {
  margin: 0 0 34px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.52;
  max-width: 720px;
  color: rgba(255,255,255,.88);
}

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

.btn-blue {
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(7,92,154,.28);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 32px rgba(0,0,0,.16);
}

.emergency-card {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 0;
  overflow: hidden;
}

.emergency-card .card-head {
  background: var(--orange);
  color: #fff;
  padding: 24px 28px;
  font-size: 24px;
  font-weight: 1000;
}

.emergency-card .card-body {
  padding: 30px 28px;
}

.emergency-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.emergency-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.call-box {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  background: #edf4fb;
  padding: 16px;
  margin-bottom: 18px;
}

.call-box i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-style: normal;
}

.call-box span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .1em;
}

.call-box strong {
  color: var(--navy);
  font-size: 22px;
}

.section {
  padding: 92px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
}

.services {
  background: #fff;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 0;
}

.service-card img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.service-card-body {
  padding: 28px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.035em;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
  font-weight: 600;
}

.proof {
  background: var(--navy);
  color: #fff;
  padding: 32px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-item {
  text-align: center;
  padding: 20px;
}

.proof-item strong {
  display: block;
  font-size: 38px;
  color: var(--orange);
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  color: rgba(255,255,255,.78);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.about-photo {
  min-height: 500px;
  background: url("../img/plumber-work.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.checks {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.check b {
  color: var(--orange);
}

.gallery {
  background: #f6f9fc;
}

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

.gallery-card {
  height: 260px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,22,41,0) 30%, rgba(6,22,41,.88));
}

.gallery-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
}

.gallery-card b {
  display: inline-block;
  background: var(--orange);
  padding: 6px 9px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.gallery-card strong {
  display: block;
  font-size: 21px;
}

.area {
  background: #fff;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-list span {
  background: #edf4fb;
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 900;
}

.cta {
  background:
    linear-gradient(90deg, rgba(6,22,41,.95), rgba(7,92,154,.82)),
    url("../img/water-heater.jpg") center/cover no-repeat;
  color: #fff;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255,255,255,.78);
  margin: 12px 0 0;
  font-size: 18px;
}

.contact {
  background: #f6f9fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-card strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
  font-weight: 650;
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 16px;
  font: inherit;
}

.form textarea {
  min-height: 142px;
  resize: vertical;
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 36px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer strong {
  color: #fff;
}

.preview-note {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 100;
  background: rgba(7,22,41,.92);
  color: #fff;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
}

@media (max-width: 1040px) {
  .logo-row .container {
    grid-template-columns: 1fr auto;
  }

  .contact-mini {
    display: none;
  }

  .hero .container,
  .about-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    min-height: auto;
    padding: 82px 0;
  }

  .emergency-card {
    max-width: 560px;
  }

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

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

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }
}

@media (max-width: 720px) {
  .top-strip .container {
    display: block;
    padding: 10px 0;
    text-align: center;
  }

  .top-strip div {
    text-align: center !important;
    margin: 3px 0;
  }

  .main-nav .container {
    overflow-x: auto;
  }

  .nav-links a {
    padding: 0 16px;
    white-space: nowrap;
  }

  .langs {
    display: none;
  }

  .logo-row .container {
    min-height: 96px;
  }

  .logo-text strong {
    font-size: 26px;
    line-height: .9;
  }

  .logo-text span {
    letter-spacing: .22em;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-actions,
  .cta-box {
    display: block;
  }

  .btn {
    width: 100%;
    margin-bottom: 12px;
  }

  .area-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .preview-note {
    display: none;
  }
}
