/* ============ Wrenchward Plumbing Co. ============ */
:root {
  --navy: #0e2a47;
  --navy-deep: #081c33;
  --navy-soft: #16395e;
  --orange: #e0392e; /* brand red */
  --orange-hot: #bf2318; /* deep red */
  --ink: #1b2733;
  --muted: #5b6b7b;
  --line: #e4e9ef;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(8, 28, 51, .10);
  --shadow-lg: 0 24px 60px rgba(8, 28, 51, .18);
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s ease, background-color .25s ease, opacity .25s ease, border-color .25s ease; }
ul { list-style: none; }

.container { width: min(1140px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--orange-hot); margin-bottom: .6rem;
}
.eyebrow--light { color: #ffa79e; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font); font-weight: 700; border: 2px solid transparent;
  border-radius: 999px; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease, color .25s ease, border-color .25s ease, filter .2s ease;
  padding: .8rem 1.6rem; font-size: .95rem; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(180deg, #e64d41 0%, #cd2c20 100%);
  color: #fff; box-shadow: none;
}
.btn--primary:hover {
  background: linear-gradient(180deg, #ef5a4e 0%, #d63527 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--blue {
  background: linear-gradient(180deg, #1e4a78 0%, #15334f 100%);
  color: #fff; font-size: 1rem; padding: .8rem 1.7rem;
  box-shadow: none;
}
.btn--blue:hover {
  background: linear-gradient(180deg, #265685 0%, #1a3d5e 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}
.btn--light { background: #fff; color: var(--navy); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); transition: background .15s, color .15s, transform .15s; }
.btn--outline:hover { background: rgba(255,255,255,.5); color: var(--navy-deep); }
.btn--lg { padding: 1rem 2.1rem; font-size: 1.02rem; }
.btn--sm { padding: .55rem 1.15rem; font-size: .85rem; }

/* ============ Nav ============ */
.demo-strip {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 210;
  background: #050f1c; color: rgba(255,255,255,.75);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: .4rem 2.6rem .4rem 1rem;
}
.demo-strip__close {
  position: absolute; right: .6rem; top: 50%; transform: translateY(-50%);
  background: none; border: 0; cursor: pointer; color: rgba(255,255,255,.7);
  font-size: .85rem; padding: .25rem .45rem; transition: color .15s;
}
.demo-strip__close:hover { color: #fff; }
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: .9rem 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  color: #fff;
  background: linear-gradient(90deg, #8f1810 0%, #c62f22 55%, #8f1810 100%);
  box-shadow: 0 4px 18px rgba(90, 12, 6, .35);
}
.nav.is-scrolled {
  background: linear-gradient(90deg, #6e0f09 0%, #a3211a 55%, #6e0f09 100%);
  box-shadow: 0 6px 24px rgba(0,0,0,.35); padding: .6rem 0;
}
.nav__inner { display: flex; align-items: center; gap: 2rem; }
.nav__logo { display: flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.nav__logo svg { color: var(--orange); }
.mark-circle {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.mark-circle .nav__mark {
  display: block; width: 64px; height: 64px; object-position: center;
  transform: scale(1.85) translateY(7%); transform-origin: center; /* fill disc + nudge W to vertical center */
}
.footer__logo .nav__mark { width: 52px; height: 52px; }
.nav__mark { object-fit: contain; image-rendering: -webkit-optimize-contrast; }
.nav__logo em { font-style: normal; font-weight: 500; opacity: .85; }
.nav__links { display: flex; gap: .9rem; margin-left: auto; font-weight: 600; font-size: 1.05rem; }
.nav__links a {
  opacity: .92; padding: .5rem 1.1rem; border-radius: 999px;
  transition: opacity .15s, background .15s, color .15s;
}
.nav__links a:hover {
  opacity: 1; background: rgba(255, 255, 255, .5); color: var(--navy-deep);
}
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__phone { display: flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .92rem; }
.nav__phone svg { color: var(--orange); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
}
.hero__media { position: absolute; inset: 0; }
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .65s ease;
}
.hero__media video.is-fading { opacity: 0; } /* soft fade at loop point */
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,28,51,.88) 0%, rgba(8,28,51,.62) 45%, rgba(8,28,51,.30) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 8rem 0 5rem; max-width: 720px; }
.hero__badge {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); border-radius: 999px; padding: .45rem 1.1rem;
  font-size: .82rem; font-weight: 600; margin-bottom: 1.4rem;
}
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.15rem; max-width: 34rem; margin: 1.2rem 0 1.8rem; opacity: .92; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; font-size: .9rem; font-weight: 600; opacity: .92; }
.hero__ticks li::before { content: "✓"; color: var(--orange); font-weight: 800; margin-right: .45rem; }

/* ============ Trust bar ============ */
.trustbar {
  position: relative; overflow: hidden; color: #fff; padding: 2.4rem 0;
  background: linear-gradient(120deg, #6e1009 0%, #d63a2b 50%, #6e1009 100%);
}
.trustbar::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(520px 220px at 12% 50%, rgba(255,180,160,.22), transparent 65%),
    radial-gradient(520px 220px at 88% 50%, rgba(255,180,160,.16), transparent 65%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 2px, transparent 2px 26px);
}
.trustbar__inner { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.trust strong {
  display: block; font-size: 2.4rem; font-weight: 800; color: #fff;
  line-height: 1.1; text-shadow: 0 0 24px rgba(255,255,255,.5);
  font-variant-numeric: tabular-nums;
}
.trust span { font-size: .85rem; opacity: .85; font-weight: 600; }

/* ============ Sections ============ */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section__head p { color: var(--muted); margin-top: .7rem; }

/* ============ Services (carousel) ============ */
#services {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}
/* two big angled pipe silhouettes */
.pipe-deco {
  position: absolute; pointer-events: none; opacity: .55;
  background: url("https://d8j0ntlcm91z4.cloudfront.net/user_3AMBcQUMEmZc5Y5dXjVNBPr7uGt/hf_20260704_040724_cee07a77-d689-4979-b160-0e7ece6ad385_min.png") center / contain no-repeat;
}
.pipe-deco--a { width: 540px; height: 540px; top: 4%; left: -110px; transform: rotate(-24deg); }
.pipe-deco--b { width: 620px; height: 620px; bottom: 2%; right: -90px; transform: rotate(28deg) scaleX(-1); }
/* soft break: row of little wrench silhouettes instead of a hard edge */
#services::before {
  content: ""; position: absolute; top: 10px; left: 0; right: 0; height: 24px;
  pointer-events: none; opacity: .55;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='24' viewBox='0 0 52 24'%3E%3Cpath d='M30.5 5.1a4 4 0 0 0-5.3 5.3L20 15.6l2.7 2.7 5.2-5.2a4 4 0 0 0 5.3-5.3l-3.3 3.2-2.6-2.6 3.2-3.3z' fill='rgba(14,42,71,0.16)' transform='rotate(-12 26 12)'/%3E%3C/svg%3E") repeat-x center / 52px 24px;
}
.section__head--services h2 { font-size: clamp(2.3rem, 4.5vw, 3.4rem); letter-spacing: -.03em; }
.section__head--services h2::after {
  content: ""; display: block; width: 78px; height: 5px; border-radius: 3px;
  margin: .8rem auto 0;
  background: linear-gradient(90deg, #f0665a, var(--orange-hot));
}
.section__head--services .eyebrow { display: block; margin-bottom: .8rem; }
.head-icon {
  width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 18px;
  background: linear-gradient(180deg, #f0665a, var(--orange-hot)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(191,35,24,.35);
}
.svc-card {
  position: relative; overflow: hidden;
  flex: 0 0 calc((100% - 4.2rem) / 4); scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.7rem 1.2rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(224,57,46,.35); }
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 22%; right: 22%; height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, #f0665a, var(--orange-hot));
  opacity: 0; transition: opacity .25s ease, left .25s ease, right .25s ease;
}
.svc-card:hover::before { opacity: 1; left: 10%; right: 10%; }
.svc-card::after {
  content: "View details →"; margin-top: .8rem;
  font-size: .78rem; font-weight: 800; color: var(--orange-hot);
  opacity: 0; transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
}
.svc-card:hover::after { opacity: 1; transform: none; }
.svc-card--hot::after { content: "Call now →"; color: #ff9a90; }
.svc-card .svc-card__ic { transition: transform .25s ease, box-shadow .25s ease; }
.svc-card:hover .svc-card__ic { transform: translateY(-4px) scale(1.07); box-shadow: 0 12px 26px rgba(191,35,24,.4); }
.svc-card__ic {
  width: 64px; height: 64px; border-radius: 18px; margin-bottom: 1rem;
  background: linear-gradient(180deg, #f0665a, var(--orange-hot)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(191,35,24,.3);
}
.svc-card h3 { font-size: 1.02rem; }
.svc-card p { font-size: .85rem; color: var(--muted); margin-top: .25rem; flex: 1; }
.subhead {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  text-align: center; font-size: 1.35rem; margin: 3.2rem 0 1.6rem;
  color: var(--navy); letter-spacing: -.01em;
}
.subhead::before, .subhead::after {
  content: ""; flex: 0 1 150px; height: 2px; border-radius: 2px;
}
.subhead::before { background: linear-gradient(90deg, transparent, rgba(224,57,46,.5)); }
.subhead::after { background: linear-gradient(90deg, rgba(224,57,46,.5), transparent); }
.svc-card--hot { background: var(--navy); border: 0; }
.svc-card--hot h3 { color: #fff; }
.svc-card--hot p { color: #ff9a90; font-weight: 700; }
.svc-card--hot .svc-card__ic { background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); color: #ff9a90; box-shadow: none; }

/* ============ Services (bento) ============ */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 175px; gap: 1.1rem; margin-bottom: 2.4rem;
}
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem 1.4rem; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tile:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(8,28,51,.22); }
.tile h3 { font-size: 1.1rem; }
.tile--img h3::after { content: " →"; opacity: 0; transition: opacity .25s ease; }
.tile--img:hover h3::after { opacity: 1; }
.tile p { font-size: .88rem; color: var(--muted); margin-top: .2rem; }
.tile--lg { grid-column: span 2; grid-row: span 2; }
.tile--lg h3 { font-size: 1.45rem; }
.tile--wide { grid-column: span 2; }
.tile--img { border: 0; }
.tile--img::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform .35s ease;
}
.tile--img:hover::before { transform: scale(1.05); }
.tile--img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,28,51,0) 35%, rgba(8,28,51,.85) 100%);
}
.tile--img h3, .tile--img p { position: relative; z-index: 2; color: #fff; }
.tile--img p { color: rgba(255,255,255,.85); }
.tile__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem .7rem; border-radius: 999px;
}
.tile--solid { background: var(--navy); border: 0; }
.tile--solid h3 { color: #fff; }
.tile--solid p { color: var(--orange); font-weight: 700; }

/* ============ Why us ============ */
#why {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #eef5fd 0%, #cbdff4 40%, #9dbfe3 100%); /* stronger baby-blue gradient */
}
#why::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("https://d8j0ntlcm91z4.cloudfront.net/user_3AMBcQUMEmZc5Y5dXjVNBPr7uGt/hf_20260703_170740_224a5b39-eb12-41b9-a4af-98ec7842cd11.png") no-repeat center / auto 88%;
  opacity: .28; /* lighter wrench watermark */
}
/* wave divider: white section → why (starts the waves here) */
.wave-top {
  position: absolute; top: -1px; left: 0; right: 0; height: 110px; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V40 C1320 80 1200 80 1080 40 C960 0 840 0 720 40 C600 80 480 80 360 40 C240 0 120 0 0 40 Z' fill='%23f4f8fc'/%3E%3C/svg%3E") no-repeat top / 100% 100%,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V62 C1320 102 1200 102 1080 62 C960 22 840 22 720 62 C600 102 480 102 360 62 C240 22 120 22 0 62 Z' fill='%23d7e6f7'/%3E%3C/svg%3E") no-repeat top / 100% 100%;
}
.why { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: center; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 1.6rem 0 1.9rem; }
.why__card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: 12px; padding: 1rem 1.1rem;
  display: flex; gap: .75rem; align-items: flex-start;
  box-shadow: 0 4px 14px rgba(8,28,51,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why__ic {
  width: 1.6rem; height: 1.6rem; border-radius: 50%; flex-shrink: 0; margin-top: .1rem;
  background: linear-gradient(180deg, #f0665a, var(--orange-hot)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem;
}
.why__card strong { display: block; font-size: .95rem; }
.why__card p { color: var(--muted); font-size: .85rem; margin: 0; }
.why__cta { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.why__call { font-weight: 700; color: var(--navy); font-size: .92rem; }
.why__call:hover { color: var(--orange-hot); text-decoration: underline; }
.why__figure { position: relative; margin: 0 0 1.6rem; }
.why__figure::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f0665a, var(--orange-hot));
  opacity: .9;
}
.why__img {
  position: relative; width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow); aspect-ratio: 3 / 2; object-fit: cover;
}
.why__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--navy-deep); color: #fff; font-weight: 800; font-size: .84rem;
  padding: .5rem 1.05rem; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
/* --- pricing bento --- */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
  align-items: stretch; margin-top: 3.2rem;
}
.price-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 2rem 1.6rem 1.7rem; text-align: center;
  box-shadow: 0 6px 18px rgba(8,28,51,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card h3 { font-size: 1.08rem; }
.price-card .price {
  font-size: 2.3rem; font-weight: 800; color: var(--orange-hot);
  margin: .45rem 0 .55rem; line-height: 1;
}
.price-card .price small { font-size: .95rem; font-weight: 600; color: var(--muted); margin-right: .2rem; }
.price-card p { color: var(--muted); font-size: .88rem; flex: 1; }
.price-card__cta { margin-top: 1.1rem; font-weight: 800; font-size: .9rem; color: var(--orange-hot); }
.price-card:hover .price-card__cta { text-decoration: underline; }
.price-card--pop {
  background: var(--navy); border: 0; transform: scale(1.06); z-index: 1;
  box-shadow: var(--shadow-lg);
}
.price-card--pop:hover { transform: scale(1.06) translateY(-5px); }
.price-card--pop h3 { color: #fff; }
.price-card--pop .price { color: #ff9a90; }
.price-card--pop .price small { color: rgba(255,255,255,.65); }
.price-card--pop p { color: rgba(255,255,255,.8); }
.price-card--pop .price-card__cta { color: #ff9a90; }
.pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #f0665a, var(--orange-hot)); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(191,35,24,.4);
}
.pricing-note { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 1.6rem; }
.pricing-note strong { color: var(--orange-hot); }

/* ============ Booking ============ */
.booking {
  position: relative; padding-bottom: 9rem;
  color: #fff;
  background-color: #071527;
  background-image:
    linear-gradient(100deg, rgba(4,12,22,.94) 0%, rgba(6,18,33,.88) 45%, rgba(7,21,39,.82) 100%),
    url("https://d8j0ntlcm91z4.cloudfront.net/user_3AMBcQUMEmZc5Y5dXjVNBPr7uGt/hf_20260703_161313_4c1558b5-30fa-43b5-b715-0fc5e33bd647_min.webp");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
/* wave: dark booking → white reviews (lighter band on top) */
.booking::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 70 C120 110 240 110 360 70 C480 30 600 30 720 70 C840 110 960 110 1080 70 C1200 30 1320 30 1440 70 V120 H0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 48 C120 88 240 88 360 48 C480 8 600 8 720 48 C840 88 960 88 1080 48 C1200 8 1320 8 1440 48 V120 H0 Z' fill='%2316395e'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
}
.booking__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.booking__text p { opacity: .88; margin: .9rem 0 1.8rem; max-width: 26rem; }
.booking__steps { display: grid; gap: .9rem; }
.step { display: flex; align-items: center; gap: .85rem; font-weight: 600; font-size: .95rem; }
.step span {
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0;
}
.bookform {
  position: relative; background: #fff; color: var(--ink); border-radius: 18px;
  padding: 2.2rem; box-shadow: var(--shadow-lg);
}
.bookform h3 { font-size: 1.3rem; margin-bottom: 1.3rem; }
/* --- booking wizard --- */
.wiz { display: flex; gap: .4rem; margin-bottom: 1.5rem; }
.wiz__step {
  flex: 1; display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  padding-bottom: .6rem; border-bottom: 3px solid var(--line);
  transition: color .25s, border-color .25s;
}
.wiz__step span {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; flex-shrink: 0;
  background: var(--line); color: #fff; font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.wiz__step.is-active { color: var(--ink); border-color: var(--orange); }
.wiz__step.is-active span { background: var(--orange); }
.wiz__step.is-done { color: var(--navy); border-color: var(--navy); }
.wiz__step.is-done span { background: var(--navy); }
.wiz__nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.btn--wizback { background: #f0f4f8; color: var(--navy); }
.btn--wizback:hover { background: #e2e9f0; }
.slots__label { font-size: .84rem; font-weight: 700; margin: 1rem 0 .6rem; }
.slots { display: flex; flex-wrap: wrap; gap: .55rem; min-height: 2.6rem; }
.slot {
  font-family: var(--font); font-size: .88rem; font-weight: 700; cursor: pointer;
  background: #fbfcfe; color: var(--ink); border: 1.5px solid var(--line);
  border-radius: 999px; padding: .55rem 1.05rem;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.slot:hover { border-color: var(--orange); transform: translateY(-2px); }
.slot[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.wiz__summary {
  margin-top: 1.1rem; padding: 1rem 1.2rem; border-radius: 12px;
  background: #f4f8fc; border: 1px solid var(--line);
  font-size: .92rem; line-height: 1.7; color: var(--muted);
}
.wiz__summary strong { color: var(--ink); }
.bookform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bookform__full { grid-column: 1 / -1; }
.bookform label { display: grid; gap: .35rem; font-size: .84rem; font-weight: 700; }
.bookform input, .bookform select, .bookform textarea {
  font-family: var(--font); font-size: .95rem; padding: .7rem .85rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fbfcfe;
  transition: border-color .15s; width: 100%; resize: vertical;
}
.bookform input:focus, .bookform select:focus, .bookform textarea:focus {
  outline: none; border-color: var(--orange);
}
.bookform input.is-invalid, .bookform select.is-invalid { border-color: #e0483e; background: #fef5f4; }
.bookform__submit { width: 100%; margin-top: 1.3rem; }
.bookform__fine { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .8rem; }
.bookform__success {
  position: absolute; inset: 0; background: #fff; border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; gap: .6rem;
}
.bookform__success[hidden] { display: none; }
.bookform__check {
  width: 3.4rem; height: 3.4rem; border-radius: 50%; background: #1fa860; color: #fff;
  font-size: 1.6rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-bottom: .4rem; animation: pop .35s ease;
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.bookform__success p { color: var(--muted); font-size: .93rem; max-width: 22rem; }

/* ============ Reviews (carousel) ============ */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 1.4rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .4rem .2rem 1rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.review {
  position: relative; overflow: hidden;
  flex: 0 0 calc((100% - 2.8rem) / 3); scroll-snap-align: start;
  background: linear-gradient(345deg, #ffffff 0%, #f0f6fc 78%, #e8f1fa 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; text-align: center;
  box-shadow: 0 4px 16px rgba(8,28,51,.05);
}
.review__avatar {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--orange); margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(8,28,51,.2);
}
.review__stars { color: var(--orange); letter-spacing: .12em; margin-bottom: .8rem; }
.review p { font-size: .95rem; color: var(--ink); }
.review footer { margin-top: 1rem; font-size: .82rem; font-weight: 700; color: var(--muted); }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 2.7rem; height: 2.7rem; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy); color: #fff; font-size: 1.5rem; line-height: 1;
  box-shadow: var(--shadow); transition: background .15s;
  display: flex; align-items: center; justify-content: center; padding-bottom: 3px;
}
.carousel__btn:hover { background: var(--orange); }
.carousel__btn--prev { left: -1.1rem; }
.carousel__btn--next { right: -1.1rem; }
.carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: .6rem; }
.carousel__dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--line); padding: 0; transition: background .15s, transform .15s;
}
.carousel__dots button[aria-selected="true"] { background: var(--orange); transform: scale(1.25); }

/* ============ CTA banner ============ */
.cta {
  position: relative;
  background: linear-gradient(115deg, #a81f14 0%, #e0392e 48%, #8f1810 100%);
  color: #fff; padding: 8rem 0 4.5rem;
}
/* wave: white reviews → red CTA (lighter red band on top of red) */
.cta::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 110px;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V40 C1320 80 1200 80 1080 40 C960 0 840 0 720 40 C600 80 480 80 360 40 C240 0 120 0 0 40 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat top / 100% 100%,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V62 C1320 102 1200 102 1080 62 C960 22 840 22 720 62 C600 102 480 102 360 62 C240 22 120 22 0 62 Z' fill='%23f0665a'/%3E%3C/svg%3E") no-repeat top / 100% 100%;
}
/* CTA → footer: flat transition */
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta p { opacity: .92; margin-top: .3rem; }
.cta__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.cta .btn--light:hover { background: var(--navy-deep); color: #fff; }

/* ============ Footer ============ */
.footer {
  background: linear-gradient(180deg, #071527 0%, #123457 55%, #06182b 100%);
  color: #e8eef5; padding: 4rem 0 0; font-size: .92rem;
}
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo { color: #fff; margin-bottom: 1rem; }
.footer h4 {
  color: #fff; font-size: .95rem; margin-bottom: .9rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--orange); display: inline-block;
}
.footer a { color: #fff; }
.footer a:hover { color: #ff8d84; }
.footer__links { display: grid; gap: .45rem; }
.footer__links a { opacity: 1; }
.footer__lic { margin-top: .6rem; font-size: .78rem; opacity: .6; }
.footer__col p + p { margin-top: .8rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; font-size: .8rem; opacity: .65; }

/* ============ Chatbot ============ */
.chat { position: fixed; right: 1.4rem; bottom: 3rem; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: .9rem; }
.chat__fab {
  width: 3.7rem; height: 3.7rem; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(180deg, #f0665a 0%, var(--orange) 42%, var(--orange-hot) 100%);
  color: #fff; box-shadow: 0 10px 30px rgba(191,35,24,.4);
  display: flex; align-items: center; justify-content: center; position: relative;
  transition: transform .18s ease, background .18s ease; order: 2;
}
.chat__fab:hover { transform: scale(1.07); }
.chat__fab-close { display: none; font-size: 1.35rem; font-weight: 700; }
.chat.is-open .chat__fab-open { display: none; }
.chat.is-open .chat__fab-close { display: block; }
.chat__fab-dot {
  position: absolute; top: 4px; right: 4px; width: 11px; height: 11px;
  background: #29d36a; border: 2px solid #fff; border-radius: 50%;
}
.chat.is-open .chat__fab-dot { display: none; }
.chat__panel[hidden] { display: none; } /* keep chatbot closed by default */
.chat__panel {
  width: min(370px, calc(100vw - 2.2rem)); height: 500px; max-height: calc(100vh - 8rem);
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden; order: 1;
  animation: chatIn .25s ease;
}
@keyframes chatIn { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.chat__header {
  background: var(--navy); color: #fff; padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.chat__close {
  margin-left: auto; background: none; border: 0; cursor: pointer;
  color: #fff; font-size: 1.1rem; opacity: .75; padding: .3rem .4rem;
  transition: opacity .15s;
}
.chat__close:hover { opacity: 1; }
.chat__header strong { display: block; font-size: .98rem; }
.chat__header span { font-size: .76rem; opacity: .75; }
.chat__avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.chat__body { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: .65rem; background: #f6f8fb; }
.msg { max-width: 82%; padding: .65rem .9rem; border-radius: 14px; font-size: .89rem; line-height: 1.45; white-space: pre-line; }
.msg--bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg--user { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg--typing { display: flex; gap: 4px; align-items: center; }
.msg--typing i { width: 6px; height: 6px; border-radius: 50%; background: #9db0c2; animation: blink 1s infinite; }
.msg--typing i:nth-child(2) { animation-delay: .2s; }
.msg--typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 80%, 100% { opacity: .3; } 40% { opacity: 1; } }
.msg a { color: var(--orange-hot); font-weight: 700; text-decoration: underline; }
.chat__quick { display: flex; flex-wrap: wrap; gap: .45rem; padding: .6rem 1.1rem; background: #f6f8fb; border-top: 1px solid var(--line); }
.chat__quick button {
  font-family: var(--font); font-size: .78rem; font-weight: 700; cursor: pointer;
  background: #fff; color: var(--navy); border: 1.5px solid var(--line); border-radius: 999px;
  padding: .4rem .85rem; transition: border-color .15s, color .15s;
}
.chat__quick button:hover { border-color: var(--orange); color: var(--orange-hot); }
.chat__inputrow { display: flex; gap: .5rem; padding: .8rem 1rem; border-top: 1px solid var(--line); background: #fff; }
.chat__inputrow input {
  flex: 1; font-family: var(--font); font-size: .9rem; padding: .65rem .9rem;
  border: 1.5px solid var(--line); border-radius: 999px;
}
.chat__inputrow input:focus { outline: none; border-color: var(--orange); }
.chat__inputrow button {
  width: 2.7rem; height: 2.7rem; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(180deg, #f0665a 0%, var(--orange) 42%, var(--orange-hot) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: filter .15s;
}
.chat__inputrow button:hover { filter: brightness(.92); }

/* ============ Accessibility ============ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--navy-deep); color: #fff; font-weight: 700;
  padding: .8rem 1.4rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.a11y { position: fixed; right: 6.1rem; bottom: 3rem; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: .9rem; }
.a11y__fab {
  width: 3.7rem; height: 3.7rem; min-width: 3.7rem; min-height: 3.7rem;
  box-sizing: border-box; padding: 0; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy); color: #fff;
  box-shadow: 0 10px 30px rgba(8,28,51,.4);
  display: flex; align-items: center; justify-content: center; order: 2;
  transition: transform .18s ease;
}
.a11y__fab svg { width: 28px; height: 28px; }
.a11y__fab:hover { transform: scale(1.07); }
.a11y__panel[hidden] { display: none; }
.a11y__panel {
  width: min(360px, calc(100vw - 2.2rem)); max-height: calc(100vh - 8rem);
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden; order: 1;
  animation: chatIn .25s ease;
}
.a11y__header {
  background: var(--navy); color: #fff; padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.a11y__close { background: none; border: 0; cursor: pointer; color: #fff; font-size: 1.1rem; opacity: .75; padding: .3rem .4rem; }
.a11y__close:hover { opacity: 1; }
.a11y__body { padding: 1.1rem 1.2rem; overflow-y: auto; }
.a11y__title { font-size: .95rem; margin: .4rem 0 .7rem; display: flex; align-items: center; gap: .5rem; }
.a11y__score { font-size: .8rem; font-weight: 800; color: #1fa860; }
.a11y__note { font-size: .78rem; color: var(--muted); margin-bottom: .7rem; }
.a11y__toggles { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.2rem; }
.a11y__toggles button {
  font-family: var(--font); font-size: .8rem; font-weight: 700; cursor: pointer;
  background: #fff; color: var(--navy); border: 1.5px solid var(--line); border-radius: 999px;
  padding: .45rem .9rem; transition: all .15s;
}
.a11y__toggles button[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.a11y__results { display: grid; gap: .4rem; }
.a11y__results li {
  display: flex; gap: .55rem; align-items: baseline;
  font-size: .82rem; line-height: 1.4; padding: .45rem .6rem;
  border-radius: 8px; background: #f4f7fa;
}
.a11y__results li .mark { font-weight: 800; flex-shrink: 0; }
.a11y__results li.pass .mark { color: #1fa860; }
.a11y__results li.fail .mark { color: #e0483e; }
.a11y__results li.fail { background: #fdf1f0; }
.a11y__results li .wcag { color: var(--muted); font-size: .74rem; white-space: nowrap; }

/* --- adjustment modes (toggled on <html>) --- */
html.a11y-bigtext { font-size: 118%; }
html.a11y-underline a { text-decoration: underline !important; }
html.a11y-readable body,
html.a11y-readable button, html.a11y-readable input,
html.a11y-readable select, html.a11y-readable textarea { font-family: Arial, Verdana, sans-serif !important; }
html.a11y-contrast { --muted: #33404d; --ink: #000; --line: #8fa0b0; }
html.a11y-contrast .hero__overlay { background: linear-gradient(100deg, rgba(3,12,22,.95) 0%, rgba(3,12,22,.8) 45%, rgba(3,12,22,.55) 100%); }
html.a11y-contrast .tile--img::after { background: linear-gradient(180deg, rgba(3,12,22,.25) 0%, rgba(3,12,22,.95) 100%); }
html.a11y-nomotion *, html.a11y-nomotion *::before, html.a11y-nomotion *::after {
  animation: none !important; transition: none !important;
}
html.a11y-nomotion { scroll-behavior: auto; }
html.a11y-nomotion .reveal { opacity: 1 !important; transform: none !important; }

/* ============ Service modal ============ */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5,15,28,.65); backdrop-filter: blur(3px); }
.modal__box {
  position: relative; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
  width: min(440px, 100%); padding: 2.4rem 2.2rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  animation: chatIn .25s ease;
}
.modal__close {
  position: absolute; top: .9rem; right: 1rem; background: none; border: 0; cursor: pointer;
  font-size: 1.1rem; color: var(--muted); padding: .3rem .45rem; transition: color .15s;
}
.modal__close:hover { color: var(--ink); }
.modal__icon { margin-bottom: 1.1rem; }
.modal__box h3 { font-size: 1.35rem; }
.modal__desc { color: var(--muted); font-size: .93rem; margin: .7rem 0 0; }
.modal__meta { color: var(--orange-hot); font-weight: 700; font-size: .88rem; margin: .8rem 0 1.3rem; }

/* ============ Tile hover videos ============ */
.tile__vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .6s ease; pointer-events: none;
}
.tile--img:hover .tile__vid { opacity: 1; }
.tile__vid--crop {
  object-position: 72% 40%; /* keep the plumber in frame, white cabinet out */
  transform: scale(1.25); transform-origin: 65% 45%;
}
.tile__vid--poster { opacity: 1; /* paused first frame doubles as the tile image */ }

/* wave divider: why section → dark booking section */
#why { padding-top: 8.5rem; padding-bottom: 8.5rem; }
#why::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 70 C120 110 240 110 360 70 C480 30 600 30 720 70 C840 110 960 110 1080 70 C1200 30 1320 30 1440 70 V120 H0 Z' fill='%23061321'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 48 C120 88 240 88 360 48 C480 8 600 8 720 48 C840 88 960 88 1080 48 C1200 8 1320 8 1440 48 V120 H0 Z' fill='%2316395e'/%3E%3C/svg%3E") no-repeat bottom / 100% 100%;
}
.tile__phone { color: #ff9a90 !important; font-weight: 800; }

/* ============ Scroll reveal (fly-ins) ============ */
.reveal {
  opacity: 0; transform: translateY(46px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .review { flex-basis: calc((100% - 1.4rem) / 2); }
  .svc-card { flex-basis: calc((100% - 1.4rem) / 2); }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 165px; }
  .why, .booking__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--navy-deep); padding: 1.2rem 1.6rem; gap: 1rem;
    box-shadow: 0 20px 30px rgba(0,0,0,.3);
  }
  .review { flex-basis: 100%; }
  .svc-card { flex-basis: 100%; }
  .why__grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 1.6rem; }
  .price-card--pop { transform: none; }
  .price-card--pop:hover { transform: translateY(-5px); }
  .why__figure::before { inset: 10px -8px -10px 10px; }
  .carousel__btn--prev { left: -.4rem; }
  .carousel__btn--next { right: -.4rem; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .tile--lg { grid-column: span 2; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .bookform__grid { grid-template-columns: 1fr; }
  .bookform { padding: 1.6rem; }
  .hero__content { padding-top: 7rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
}
