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

:root {
  --accent: #555555;
  --accent-deep: #3a3a3a;
  --accent-light: #c4c4c4;
  --accent-soft: #e8e8e8;
  --ink: #141414;
  --muted: #5c5c5c;
  --line: #ececec;
  --soft: #fafafa;
  --white: #ffffff;
  --font: 'Outfit', system-ui, sans-serif;
  --display: 'Sora', system-ui, sans-serif;
}

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

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

/* Straight top bar — not a pill */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--accent);
}
.header-shell { width: 100%; }
.header-inner {
  width: min(1160px, calc(100% - 2.2rem));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: min(200px, 50vw);
  object-fit: contain;
}
.brand-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
  position: relative;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.55rem;
  height: 3px;
  background: var(--accent);
}
.header-actions { display: none; }

.menu-btn {
  border: 2px solid var(--ink);
  background: var(--accent);
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.menu-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}
.menu-dots span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: 0.2s ease;
}
.menu-btn.is-open .menu-dots span:nth-child(1) { transform: translateY(6px) 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: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.1rem 1.3rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.05rem; padding: 0.2rem 0; }
.mobile-menu .nav-link.active::after { display: none; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
}
.btn svg { width: 1rem; height: 1rem; }
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover { background: #2a2a2a; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--soft); }

/* Hero — split gray + photo */
.hero {
  position: relative;
  display: grid;
  min-height: min(88vh, 760px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero-panel {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3.5rem;
  display: flex;
  align-items: center;
}
.hero-panel .container { width: min(640px, calc(100% - 2.2rem)); margin-left: max(1.1rem, calc((100% - 1160px) / 2 + 1.1rem)); margin-right: auto; }
.hero-visual {
  display: none;
  position: absolute;
  inset: 0 0 0 48%;
  background:
    linear-gradient(90deg, rgba(20,20,20,0.75), rgba(20,20,20,0.15)),
    url('plumbing.png') center / cover no-repeat;
}
.kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  font-weight: 800;
}
.hero h1 span { color: var(--accent-light); }
.hero-copy, .page-hero .lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.84);
  max-width: 34rem;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 28rem;
}
.hero-stats div {
  border-left: 3px solid var(--accent);
  padding-left: 0.7rem;
}
.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
}
.hero-stats span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.2rem;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.72) 55%, rgba(13,13,13,0.45) 100%),
    url('plumbing.png') center / cover no-repeat;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { color: rgba(255,255,255,0.82); }

.section { padding: 4.2rem 0; }
.section.soft { background: var(--soft); }
.section.accent-band {
  background: var(--accent-soft);
  border-block: 2px solid var(--ink);
}
.eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.block-title, .section-head h2, .cta-box h2 {
  font-family: var(--display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lead { color: var(--muted); max-width: 40rem; }
.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }

.about-grid, .contact-grid {
  display: grid;
  gap: 1.8rem;
}
.photo-frame {
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--accent);
  overflow: hidden;
  background: #ddd;
  min-height: 280px;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.check-list {
  list-style: none;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.check-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.check-icon svg { width: 0.75rem; height: 0.75rem; }

.services-grid, .why-grid, .pricing-grid {
  display: grid;
  gap: 1.1rem;
}
.service-card, .why-card, .price-card {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 1.35rem 1.25rem 1.4rem;
  position: relative;
}
.service-card:hover, .why-card:hover {
  box-shadow: 6px 6px 0 var(--accent);
  transform: translate(-2px, -2px);
  transition: 0.15s ease;
}
.service-card-top, .why-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.service-num, .why-num {
  font-family: var(--display);
  font-weight: 800;
  color: #999;
  font-size: 0.95rem;
}
.icon-wrap {
  width: 2.6rem;
  height: 2.6rem;
  background: var(--accent);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.icon-wrap svg { width: 1.2rem; height: 1.2rem; }
.service-card h3, .why-card h3, .price-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.15rem;
}
.service-card p, .why-card p, .price-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}
.service-link:hover { color: #000; }

.price-card.featured {
  background: var(--ink);
  color: var(--white);
}
.price-card.featured .price-label,
.price-card.featured .price-list { color: rgba(255,255,255,0.78); }
.price-card .badge {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.55rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-value {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0.6rem 0 1rem;
  letter-spacing: -0.03em;
}
.price-list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.price-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.cta-box {
  position: relative;
  padding: 2.4rem 1.6rem;
  background: var(--ink);
  color: var(--white);
  border: 3px solid var(--accent);
  overflow: hidden;
}
.cta-box-bg {
  position: absolute;
  right: -30px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: var(--accent);
  opacity: 0.18;
  transform: rotate(25deg);
}
.cta-box h2, .cta-box p, .cta-actions { position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,0.78); max-width: 36rem; }

.panel {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 1.4rem;
}
.form-grid { display: grid; gap: 0.9rem; }
.form-grid.two { grid-template-columns: 1fr; gap: 0.9rem; }
.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 2px solid #d8d8d8;
  padding: 0.8rem 0.85rem;
  font: inherit;
  background: var(--white);
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(85,85,85,0.18);
}
.contact-meta { display: grid; gap: 1rem; 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); font-size: 0.95rem; }
.map-wrap {
  margin-top: 1rem;
  border: 2px solid var(--ink);
  overflow: hidden;
  min-height: 240px;
}
.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.site-footer {
  background: #0d0d0d;
  color: #cfcfcf;
  margin-top: 0;
}
.footer-top {
  background: #111;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 1.35rem 0;
}
.footer-top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.footer-brand { display: inline-flex; }
.footer-logo {
  display: block;
  height: 58px;
  width: auto;
  max-width: min(340px, 88vw);
  object-fit: contain;
}
.footer-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-main {
  display: grid;
  gap: 1.8rem;
  padding: 2.8rem 0 2.2rem;
}
.footer-col h4 {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.footer-col a {
  color: #d4d4d4;
  font-weight: 500;
}
.footer-col a:hover { color: var(--accent); }
.footer-contact { gap: 0.9rem !important; }
.footer-contact a,
.footer-contact-static {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #d4d4d4;
  line-height: 1.45;
}
.footer-icon {
  width: 1.9rem;
  height: 1.9rem;
  background: var(--accent);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-icon svg { width: 0.9rem; height: 0.9rem; }
.footer-bottom-bar {
  background: #000;
  border-top: 1px solid rgba(85,85,85,0.2);
}
.footer-bottom {
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: #9a9a9a;
}
.footer-company { text-align: right; color: #bbb; }
.footer-company a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer-company a:hover { color: #fff; }

.legal-copy h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--display);
  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(--ink); font-weight: 700; text-decoration: underline; }

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 200;
  max-width: 400px;
  margin-left: auto;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  padding: 1.1rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h3 { margin: 0 0 0.4rem; font-family: var(--display); font-size: 1rem; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

@media (min-width: 760px) {
  .nav-desktop, .header-actions { display: flex; }
  .menu-btn, .mobile-menu, .mobile-menu.open { display: none !important; }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: block; }
  .about-grid, .contact-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2.2rem; align-items: center; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr 1.35fr; }
}

@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); }
  .why-grid { grid-template-columns: repeat(5, 1fr); }
}
