/* ===== Victoria Plumbers — shared styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  /* clean water-blue palette */
  --green: #1464a4;          /* primary trade blue */
  --green-dark: #0f5289;     /* hover / deeper */
  --green-darker: #0a2b47;   /* navy — dark sections */
  --green-soft: #dceaf7;     /* tint chip bg */
  --green-tint: #f2f8fd;     /* page hero bg */
  --sky: #35abd8;            /* secondary aqua accent */
  --ink: #101d2b;            /* cool near-black */
  --slate: #4a5766;
  --slate-light: #73818f;
  --line: #e2e8ee;
  --bg: #ffffff;
  --bg-soft: #f4f7fa;
  --amber: #f4b740;
  --radius: 20px;
  --radius-sm: 13px;
  --shadow-sm: 0 1px 2px rgba(10, 43, 71, 0.05);
  --shadow: 0 12px 36px rgba(10, 43, 71, 0.09);
  --shadow-lg: 0 24px 60px rgba(10, 43, 71, 0.14);
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

img, svg { display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 100, 164, 0.16);
}

.section { padding: 92px 0; }
.section-soft { background: var(--bg-soft); }
.section-green {
  background: var(--green-darker);
  background-image:
    radial-gradient(800px 400px at 85% -20%, rgba(53, 171, 216, 0.4), transparent),
    radial-gradient(600px 400px at 0% 120%, rgba(20, 100, 164, 0.45), transparent);
  color: #e4f1f8;
}
.section-green h1, .section-green h2, .section-green h3 { color: #fff; }

.lead { font-size: 19px; color: var(--slate); max-width: 56ch; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 100, 164, 0.30);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20, 100, 164, 0.38); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--green-darker);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 30px; font-size: 17px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--green), var(--sky));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(20, 100, 164, 0.34);
  flex-shrink: 0;
}
.brand-mark svg { width: 23px; height: 23px; }
.brand span { color: var(--green-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--slate);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--green-dark); background: var(--green-soft); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--green); }

.menu-toggle { display: none; }
.nav-mobile { display: none; }

/* design images */
.shot {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

/* ===== Hero ===== */
.hero {
  padding: 84px 0 92px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(53, 171, 216, 0.14), transparent),
    radial-gradient(700px 500px at -5% 30%, rgba(20, 100, 164, 0.12), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { font-size: clamp(38px, 5.2vw, 60px); font-weight: 800; }
.hero .lead { margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--slate);
}
.trust-item svg { width: 19px; height: 19px; color: var(--green); flex-shrink: 0; }

/* striped placeholder */
.ph {
  position: relative;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, #eaf1f7 0 14px, #e1e9f1 14px 28px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: 'Public Sans', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--slate-light);
  background: rgba(255,255,255,0.82);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.hero-media { aspect-ratio: 4/3.4; }

/* ===== Section heading ===== */
.sec-head { max-width: 660px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 14px; }
.sec-head p { margin-top: 14px; color: var(--slate); font-size: 18px; }

/* ===== Cards / grids ===== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cadeef; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--green-dark); }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 16px; }

/* feature list */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .tick {
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--green-soft);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 2px;
}
.checklist .tick svg { width: 13px; height: 13px; color: var(--green-dark); }
.checklist b { font-family:'Sora',sans-serif; font-weight: 600; display: block; }
.checklist span.txt { color: var(--slate); font-size: 15.5px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  font-family:'Sora',sans-serif; font-weight: 700; font-size: 16px;
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(145deg, var(--green), var(--sky)); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(20, 100, 164, 0.28);
}
.step h3 { font-size: 19px; margin-bottom: 7px; }
.step p { color: var(--slate); font-size: 16px; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); }
.cta-band p { margin: 16px auto 0; max-width: 52ch; color: #cbe4f2; font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat { text-align: center; }
.stat .n { font-family:'Sora',sans-serif; font-weight:800; font-size: 44px; color: var(--green-dark); letter-spacing: -0.03em; }
.stat .l { color: var(--slate); font-size: 15px; margin-top: 4px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #b6c6d3;
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand span { color: #6fc7ea; }
.footer-about { font-size: 15px; color: #92a3b3; max-width: 30ch; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; font-family:'Sora',sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #a3b4c3; font-size: 15px; transition: color .15s; }
.footer-col a:hover { color: #6fc7ea; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: #6fc7ea; flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 14px; color: #7c8c9b;
}
.footer-bottom a:hover { color: #6fc7ea; }

/* ===== Page hero (interior) ===== */
.page-hero {
  background: var(--green-tint);
  background-image: radial-gradient(700px 360px at 88% -30%, rgba(53, 171, 216, 0.16), transparent);
  border-bottom: 1px solid var(--line);
  padding: 70px 0 64px;
}
.page-hero h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 800; }
.page-hero p { margin-top: 16px; }
.crumb { font-family:'Sora',sans-serif; font-weight:500; font-size: 14px; color: var(--slate-light); margin-bottom: 14px; }
.crumb a:hover { color: var(--green-dark); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--green-soft); display: grid; place-items: center; flex-shrink: 0; }
.info-ic svg { width: 22px; height: 22px; color: var(--green-dark); }
.info-row h4 { font-size: 16px; font-family:'Sora',sans-serif; font-weight: 600; }
.info-row p, .info-row a { color: var(--slate); font-size: 16px; }
.info-row a:hover { color: var(--green-dark); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family:'Sora',sans-serif; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 3px rgba(20,100,164,0.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--slate-light); margin-top: 6px; }
.form-success {
  display: none;
  background: var(--green-soft);
  border: 1px solid #bcd8ee;
  color: var(--green-darker);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  font-family:'Sora',sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
}

/* ===== Prose (privacy) ===== */
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin: 38px 0 12px; }
.prose h3 { font-size: 18px; margin: 24px 0 8px; }
.prose p { color: var(--slate); margin-bottom: 14px; }
.prose ul { color: var(--slate); margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
.prose a { color: var(--green-dark); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .updated { font-family:'Sora',sans-serif; font-weight:600; font-size: 14px; color: var(--slate-light); }

/* ===== Misc ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag {
  font-family:'Sora',sans-serif; font-weight: 500; font-size: 14px;
  background: var(--green-soft); color: var(--green-darker);
  padding: 8px 15px; border-radius: 999px;
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { aspect-ratio: 16/10; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 960px) {
  .nav { gap: 16px; }
  .nav-links, .nav-phone { display: none; }
  .menu-toggle {
    display: inline-grid; place-items: center;
    width: 42px; height: 42px; border-radius: 11px;
    border: 1px solid var(--line); background: #fff; cursor: pointer;
  }
  .menu-toggle svg { width: 22px; height: 22px; }
  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-family:'Sora',sans-serif; font-weight:500; padding: 11px 12px; border-radius: 10px; color: var(--slate); }
  .nav-mobile a:hover, .nav-mobile a.active { background: var(--bg-soft); color: var(--green-dark); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-phone { display: none; }
  .menu-toggle {
    display: inline-grid; place-items: center;
    width: 42px; height: 42px; border-radius: 11px;
    border: 1px solid var(--line); background: #fff; cursor: pointer;
  }
  .menu-toggle svg { width: 22px; height: 22px; }
  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-family:'Sora',sans-serif; font-weight:500; padding: 11px 12px; border-radius: 10px; color: var(--slate); }
  .nav-mobile a:hover, .nav-mobile a.active { background: var(--bg-soft); color: var(--green-dark); }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; }
}
