﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --accent: #0b1f3a;
  --accent-dark: #071628;
  --accent-soft: #e8eef5;
  --black: #111111;
  --muted: #667085;
  --line: #ebebeb;
  --bg: #ffffff;
  --soft: #f7f7f8;
  --font: 'Manrope', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Pill header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 1rem 0;
  pointer-events: none;
}
.header-shell {
  pointer-events: auto;
  width: min(1140px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 0.5rem 0.65rem 0.5rem 1.2rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-name .brand-accent {
  color: var(--accent);
}
.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex: 1;
}
.nav-link { font-size: 0.92rem; font-weight: 600; color: #333; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.header-actions { display: none; }
.header-actions .btn {
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
}
.menu-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  color: var(--black);
}
.menu-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 18px;
}
.menu-dots span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.menu-btn.is-open .menu-dots {
  gap: 0;
  position: relative;
}
.menu-btn.is-open .menu-dots span:nth-child(1),
.menu-btn.is-open .menu-dots span:nth-child(3) {
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 2px;
}
.menu-btn.is-open .menu-dots span:nth-child(1) { transform: rotate(45deg); }
.menu-btn.is-open .menu-dots span:nth-child(2) { opacity: 0; }
.menu-btn.is-open .menu-dots span:nth-child(3) { transform: rotate(-45deg); }
.mobile-menu {
  display: none;
  pointer-events: auto;
  width: min(1140px, 100%);
  margin: 0.65rem auto 0;
  padding: 0.85rem 1rem 1rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.7rem 0.2rem;
  font-weight: 600;
  border-bottom: 1px solid #f1f1f1;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .btn {
  width: 100%;
  margin-top: 0.75rem;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1rem; height: 1rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--black); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn-outline-dark {
  background: #fff;
  color: var(--black);
  border: 1.5px solid #d9d9d9;
}

/* Soft photo hero */
.hero {
  position: relative;
  min-height: clamp(520px, 86vh, 720px);
  display: grid;
  align-items: end;
  padding: 8rem 0 4.5rem;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12,12,12,0.78) 0%, rgba(12,12,12,0.45) 55%, rgba(12,12,12,0.25) 100%),
    linear-gradient(0deg, rgba(12,12,12,0.55), transparent 50%);
}
.hero-home,
.hero-about,
.hero-services,
.hero-pricing,
.hero-contact,
.hero-legal,
.hero-refund {
  background-image: url('hero-plumber.png');
}

.page-hero {
  position: relative;
  padding: 8rem 0 3.5rem;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  align-items: end;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12,12,12,0.8), rgba(12,12,12,0.4));
}

.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9eb6d4;
}
.hero h1, .page-hero h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero h1 span { color: #fff; }
.page-hero h1 span { color: var(--accent); }
.hero-copy, .page-hero .lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}
.hero-stats span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

.section { padding: 4.5rem 0; }
.section.soft { background: var(--soft); }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-head h2, .block-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.lead {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-grid, .contact-grid, .cta-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.photo-frame {
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.check-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 600;
}
.check-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.12rem;
}
.check-icon svg { width: 0.8rem; height: 0.8rem; }

.band {
  position: relative;
  padding: 3.2rem 0;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17,17,17,0.78);
}
.band h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
}
.band p { margin: 0.7rem 0 0; color: rgba(255,255,255,0.8); }

.services-grid, .why-grid, .pricing-grid {
  display: grid;
  gap: 1.1rem;
}
.service-card, .why-card, .price-card, .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover, .why-card:hover, .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(11,31,58,0.1);
}
.service-card .body, .why-card, .price-card, .panel { padding: 1.25rem 1.3rem 1.4rem; }
.why-card, .price-card, .panel { overflow: visible; }

.service-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.55rem 1.55rem;
  border: 1px solid #e4e9f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11,31,58,0.05);
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.service-num, .why-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #8a97a8;
}
.service-card .icon-wrap,
.why-card .icon-wrap {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  margin-bottom: 0;
  background: var(--accent);
  color: #fff;
}
.service-card .icon-wrap svg,
.why-card .icon-wrap svg {
  width: 1.3rem;
  height: 1.3rem;
}
.service-card h3, .why-card h3, .price-card h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.service-card p, .why-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.05rem;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
}
.service-link:hover { gap: 0.55rem; }

.why-card {
  padding: 1.45rem 1.35rem 1.5rem;
  border: 1px solid #e4e9f0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(11,31,58,0.05);
}
.why-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.85rem;
}
.icon-wrap svg { width: 1.15rem; height: 1.15rem; }

.price-card { position: relative; padding: 1.6rem 1.35rem; }
.panel { padding: 1.25rem 1.3rem 1.4rem; }
.price-card.featured {
  border: 2px solid var(--accent);
  background: #f4f7fb;
}
.badge {
  position: absolute;
  top: -0.65rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}
.price-label {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-value {
  margin: 0.9rem 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.price-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.price-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: #444;
  font-weight: 500;
}

.cta-box {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  padding: 2.8rem 1.5rem;
  color: #fff;
  text-align: center;
}
.cta-box-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(17,17,17,0.88), rgba(11,31,58,0.82));
}
.cta-box h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
}
.cta-box p {
  margin: 0.8rem auto 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.88);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.form-grid { display: grid; gap: 0.9rem; }
.form-grid.two { grid-template-columns: 1fr; }
label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}
input, textarea, select {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #9eb6d4;
  box-shadow: 0 0 0 4px rgba(11,31,58,0.12);
}
.map-wrap {
  margin-top: 1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}
.contact-meta { display: grid; gap: 0.95rem; margin-top: 1rem; }
.contact-meta-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.contact-meta-item strong { display: block; }
.contact-meta-item span, .contact-meta-item a { color: var(--muted); }

.footer-cta {
  background: var(--accent);
  color: #fff;
}
.footer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
}
.footer-cta h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.footer-cta p { margin: 0.25rem 0 0; opacity: 0.95; }
.footer-cta .btn { background: #fff; color: var(--black); border-radius: 999px; }
.footer-cta .btn-dark { background: var(--black); color: #fff; }

.site-footer {
  background: #121212;
  color: #bdbdbd;
  padding: 3rem 0 1.4rem;
}
.footer-grid { display: grid; gap: 1.8rem; }
.site-footer h3, .site-footer h4 { margin: 0 0 0.85rem; color: #fff; }
.site-footer .brand-name { color: #fff; font-size: 1.2rem; }
.footer-company {
  max-width: 22rem;
  text-align: right;
  line-height: 1.55;
  color: #888;
}
.footer-company a {
  color: #c5d7ef;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer-company a:hover { color: #fff; }
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.site-footer a:hover { color: var(--accent); }

.footer-contact {
  gap: 0.85rem !important;
}
.footer-contact a,
.footer-contact-static {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #bdbdbd;
  line-height: 1.45;
}
.footer-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #9eb6d4;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.footer-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-contact a:hover .footer-icon {
  background: rgba(158,182,212,0.2);
  color: #fff;
}
.company-box {
  margin-top: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  font-size: 0.9rem;
  line-height: 1.65;
}
.company-box strong { color: #fff; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #888;
}

.legal-copy h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.25rem;
}
.legal-copy p { color: var(--muted); line-height: 1.8; }
.legal-copy ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.8;
}
.legal-copy li { margin: 0.25rem 0; }
.legal-copy a { color: var(--accent); font-weight: 600; }

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 200;
  max-width: 400px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  padding: 1.1rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .header-actions { display: flex; }
  .menu-btn { display: none; }
  .mobile-menu, .mobile-menu.open { display: none !important; }
  .about-grid, .contact-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr 0.9fr; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
