/* ============================================================
   Harbor & Co. Plumbing — Denver, CO
   Industrial trust: deep navy / pipe blue / safety orange.
   3 pages share this file: index / services / about
   ============================================================ */
:root {
  --bg: #ffffff;
  --bg-soft: #f3f6fa;
  --bg-soft-2: #e9eff6;
  --ink: #0c1f33;
  --ink-2: #122942;
  --muted: #54687e;
  --line: #dde5ef;
  --line-soft: #e9eff6;

  --navy: #0a2239;
  --navy-2: #0e2c4a;
  --blue: #1e7ce8;
  --blue-deep: #145cb5;
  --sky: #dcebFd;
  --sky-soft: #eef5fe;

  --orange: #ff6a00;
  --orange-deep: #d95700;
  --orange-soft: #ffead9;

  --card: #ffffff;
  --shadow: 0 24px 60px -24px rgba(10, 34, 57, 0.28);
  --shadow-sm: 0 14px 34px -16px rgba(10, 34, 57, 0.22);

  --r-lg: 26px;
  --r-md: 20px;
  --r-sm: 14px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 0.6em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--maxw), 100% - 3rem); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }
::selection { background: var(--orange); color: #fff; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--orange); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #c3d3e4; font-size: 0.85rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; }
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar .emg { display: inline-flex; align-items: center; gap: 0.45rem; background: var(--orange); color: #fff; border-radius: 999px; padding: 0.25rem 0.85rem; font-weight: 800; }
.topbar-dot { opacity: 0.4; margin: 0 0.6rem; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.75); } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 80; background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); transition: box-shadow 0.25s; }
.site-header.scrolled { box-shadow: 0 12px 30px -18px rgba(10, 34, 57, 0.35); }
.nav-inner { display: flex; align-items: center; gap: 1.4rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, var(--navy) 30%, var(--blue)); display: grid; place-items: center; color: #fff; font-size: 1.35rem; box-shadow: var(--shadow-sm); flex: none; position: relative; overflow: hidden; }
.brand-mark::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: var(--orange); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.05; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 0.4rem; margin-left: auto; background: var(--bg-soft); border: 1px solid var(--line-soft); padding: 0.35rem; border-radius: 999px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 0.55rem 1.1rem; border-radius: 999px; color: var(--muted); transition: all 0.2s; }
.nav-links a:hover { color: var(--ink); background: #fff; }
.nav-links a.active { background: var(--navy); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 0.7rem; }
.nav-phone { text-decoration: none; font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.6rem 0.4rem; }
.nav-phone span { width: 34px; height: 34px; border-radius: 50%; background: var(--orange-soft); display: grid; place-items: center; }
.burger { display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line); background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; font-weight: 700; font-size: 1rem; padding: 0.95rem 1.7rem; border-radius: 10px; text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.22s, box-shadow 0.22s, background 0.22s, color 0.22s, border-color 0.22s; font-family: var(--font-body); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 16px 32px -12px rgba(255, 106, 0, 0.6); }
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 16px 32px -14px rgba(10, 34, 57, 0.55); }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); background: #fff; color: var(--ink); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline-w { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: transparent; }
.btn-outline-w:hover { border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.9rem; }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-deep); background: var(--sky-soft); border: 1px solid var(--line-soft); border-left: 5px solid var(--blue); padding: 0.45rem 0.95rem; border-radius: 6px; margin-bottom: 1.1rem; }
.eyebrow.orange { background: var(--orange-soft); border-color: #f6d9bd; border-left-color: var(--orange); color: var(--orange-deep); }
.eyebrow.on-dark { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.16); border-left-color: var(--orange); color: #ffd9b8; }
.section-head { max-width: 720px; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 0.5em; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section-head.split { max-width: none; display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; }
.section-head.split p { max-width: 36ch; }
.on-dark h2, .on-dark h3 { color: #fff; }
.on-dark p { color: #a9bccd; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; background: radial-gradient(900px 500px at 88% -5%, #bcd7f7 0%, transparent 55%), radial-gradient(700px 480px at -5% 25%, var(--orange-soft) 0%, transparent 50%), var(--bg-soft); border-bottom: 1px solid var(--line-soft); padding: 4.2rem 0 3.5rem; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 10px; background: repeating-linear-gradient(-45deg, var(--orange) 0 18px, var(--navy) 18px 36px); opacity: 0.9; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); margin: 0.2em 0 0.4em; }
.hero h1 em { font-style: normal; color: var(--blue-deep); position: relative; white-space: nowrap; }
.hero h1 em.hl-o { color: var(--orange-deep); }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1rem; }
.hero-call { font-size: 1.02rem; }
.hero-call a { color: var(--orange-deep); text-decoration: none; font-size: 1.15rem; }
.hero-call a:hover { text-decoration: underline; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.4rem; }
.hero-badges span { font-size: 0.82rem; font-weight: 700; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0.4rem 0.9rem; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; }
.stars { color: #e9a213; letter-spacing: 0.1em; font-size: 1rem; }
.hero-proof p { margin: 0; font-size: 0.94rem; color: var(--muted); }
.hero-proof strong { color: var(--ink); }
.avatars { display: flex; }
.avatars span { width: 38px; height: 38px; border-radius: 50%; border: 3px solid #fff; margin-left: -10px; background-size: cover; background-position: center; box-shadow: var(--shadow-sm); background-color: var(--bg-soft-2); }
.avatars span:first-child { margin-left: 0; }

.hero-visual { position: relative; }
.hero-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 8px solid #fff; aspect-ratio: 4 / 4.4; background: linear-gradient(135deg, var(--navy), var(--blue)); position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: "LICENSED · INSURED · CO #MP-04812"; position: absolute; left: 12px; bottom: 12px; background: rgba(10, 34, 57, 0.82); color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; padding: 0.4rem 0.8rem; border-radius: 8px; }
.float-card { position: absolute; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border: 1px solid #fff; border-radius: 16px; padding: 0.85rem 1rem; box-shadow: var(--shadow); display: flex; gap: 0.7rem; align-items: center; animation: floaty 5s ease-in-out infinite; }
.float-card .dot { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; font-size: 1.2rem; }
.float-card strong { display: block; font-size: 0.92rem; line-height: 1.2; }
.float-card small { color: var(--muted); font-size: 0.8rem; }
.float-1 { left: -26px; top: 7%; }
.float-2 { right: -18px; bottom: 24%; animation-delay: -2.5s; }
.float-3 { left: 12px; bottom: -18px; animation-delay: -1.2s; border-left: 5px solid var(--orange); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.6rem; background: #fff; border: 1px solid var(--line-soft); border-top: 5px solid var(--navy); border-radius: 16px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); }
.hero-stats div { text-align: left; }
.hero-stats b { font-family: var(--font-display); font-size: 1.6rem; display: block; line-height: 1.1; }
.hero-stats .num { font-variant-numeric: tabular-nums; }
.hero-stats .suffix { font-family: var(--font-body); font-size: 0.55em; font-weight: 700; color: var(--muted); margin-left: 0.25em; letter-spacing: 0.04em; }
.hero-stats .suffix.star { color: var(--orange); font-size: 0.65em; }
.hero-stats .lbl { font-size: 0.85rem; color: var(--muted); }

/* ---------- Static trust chips (no marquee) ---------- */
.trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.trust-chips span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.87rem; font-weight: 700; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0.6rem 1rem; }
.trust-chips i { font-style: normal; color: var(--orange); }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.svc-card { background: var(--card); border: 1px solid var(--line-soft); border-top: 5px solid var(--navy); border-radius: 18px; padding: 1.6rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; position: relative; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-top-color: var(--orange); }
.svc-card.emg { border-top-color: var(--orange); background: linear-gradient(180deg, var(--orange-soft), #fff 55%); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem; }
.svc-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.svc-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.svc-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.price { font-weight: 800; font-size: 1.05rem; }
.price small { display: block; font-weight: 600; color: var(--muted); font-size: 0.75rem; }
.link-arrow { font-weight: 700; color: var(--orange-deep); background: none; border: 0; cursor: pointer; font-size: 0.92rem; font-family: var(--font-body); padding: 0; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Split / why ---------- */
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 3.2rem; align-items: center; }
.check-list { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: 0.9rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; background: #fff; border: 1px solid var(--line-soft); border-left: 5px solid var(--orange); border-radius: 14px; padding: 0.9rem 1rem; }
.check-list .tick { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.check-list strong { display: block; font-size: 0.98rem; }
.check-list small { color: var(--muted); }
.mini-stats { display: flex; gap: 2rem; margin-top: 1.2rem; flex-wrap: wrap; }
.mini-stats b { font-family: var(--font-display); font-size: 1.9rem; display: block; line-height: 1.1; }
.mini-stats .suffix { font-family: var(--font-body); font-size: 0.5em; font-weight: 700; color: var(--muted); margin-left: 0.25em; letter-spacing: 0.04em; }
.mini-stats .lbl { color: var(--muted); font-size: 0.88rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 1.5rem; position: relative; overflow: hidden; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--blue); display: block; line-height: 1; margin-bottom: 0.8rem; }
.step h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.93rem; margin: 0; }
.step::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--navy), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.step:hover::after { transform: scaleX(1); }

/* ---------- Emergency playbook (first 5 minutes) ---------- */
.do-dont { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.2rem; }
.do-card { background: #fff; border: 1px solid var(--line-soft); border-left: 6px solid var(--blue); border-radius: 16px; padding: 1.8rem; }
.dont-card { background: var(--navy); color: #fff; border-radius: 16px; border-top: 6px solid var(--orange); padding: 1.8rem; }
.do-card h3, .dont-card h3 { font-size: 1.2rem; margin-bottom: 0.2em; }
.dont-card h3 { color: #fff; }
.do-card ol { margin: 1rem 0 1.4rem; padding: 0; list-style: none; counter-reset: dd; display: grid; gap: 1rem; }
.do-card ol li { counter-increment: dd; display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.94rem; color: var(--muted); }
.do-card ol li::before { content: counter(dd); flex: none; width: 30px; height: 30px; border-radius: 10px; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; display: grid; place-items: center; }
.do-card ol strong, .dont-card ul strong { color: var(--ink); display: block; font-size: 0.98rem; }
.dont-card ul { list-style: none; margin: 1rem 0 1.2rem; padding: 0; display: grid; gap: 1rem; }
.dont-card ul li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.94rem; color: #c3d3e4; }
.dont-card ul li::before { content: "✕"; flex: none; width: 30px; height: 30px; border-radius: 10px; background: var(--orange); color: #fff; font-weight: 800; font-size: 0.9rem; display: grid; place-items: center; }
.dont-card ul strong { color: #fff; }
.dont-note { font-size: 0.9rem; color: #9db4c9; margin: 0; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1rem; }
.dont-note .link-arrow { color: #ffb37a; }

/* ---------- Guarantee card ---------- */
.guarantee-card { background: linear-gradient(150deg, var(--navy) 30%, var(--navy-2)); color: #fff; border-radius: 24px; border-top: 6px solid var(--orange); padding: 2.2rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.guarantee-card::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(255, 106, 0, 0.14); right: -110px; top: -110px; }
.guarantee-card h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.3em; }
.guarantee-big { font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; line-height: 1; margin: 0.5rem 0 0.2rem; }
.guarantee-big small { display: block; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: #9db4c9; margin-top: 0.4rem; }
.guarantee-card .tick-list { margin-bottom: 1.2rem; }
.guarantee-card .tick-list li { font-size: 0.93rem; }
.guarantee-card .tick-list li::before { background: var(--orange); border-color: var(--orange); color: #fff; }
.g-sign { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1.1rem; font-weight: 600; }
.g-sign small { color: #9db4c9; font-weight: 500; }
.stamp.light { color: #ffd9b8; border-color: #ffd9b8; background: rgba(255, 255, 255, 0.06); }

/* ---------- Stat tiles (about collage) ---------- */
.stat-tile { background: var(--navy) !important; display: grid; place-content: center; text-align: center; padding: 1.4rem; gap: 0.2rem; }
.stat-tile b { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; color: #fff; line-height: 1; }
.stat-tile span { color: #9db4c9; font-size: 0.85rem; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testi-shell { background: var(--navy); border-radius: 24px; padding: 2.6rem; color: #fff; position: relative; overflow: hidden; border-top: 6px solid var(--orange); }
.testi-shell::before { content: ""; position: absolute; inset: auto -120px -160px auto; width: 420px; height: 420px; background: radial-gradient(circle, rgba(30, 124, 232, 0.35), transparent 65%); pointer-events: none; }
.testi-track { display: grid; }
.testi { grid-area: 1 / 1; opacity: 0; transform: translateX(24px); transition: opacity 0.4s, transform 0.4s; pointer-events: none; }
.testi.current { opacity: 1; transform: none; pointer-events: auto; }
.testi blockquote { font-family: var(--font-display); font-size: clamp(1.15rem, 2.3vw, 1.6rem); line-height: 1.4; margin: 0 0 1.2rem; }
.testi-who { display: flex; align-items: center; gap: 0.9rem; }
.testi-who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.4); background: var(--bg-soft-2); }
.testi-who strong { display: block; }
.testi-who small { color: #9db4c9; }
.testi-nav { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.6rem; }
.t-btn { width: 48px; height: 48px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.25); background: transparent; color: #fff; cursor: pointer; font-size: 1.2rem; transition: all 0.2s; }
.t-btn:hover { background: var(--orange); border-color: var(--orange); }
.t-dots { display: flex; gap: 0.45rem; margin-left: 0.6rem; }
.t-dots button { width: 9px; height: 9px; border-radius: 4px; border: 0; background: rgba(255, 255, 255, 0.3); cursor: pointer; padding: 0; transition: all 0.25s; }
.t-dots button.on { width: 30px; background: var(--orange); }

/* ---------- Rate book (flat-rate sheet) ---------- */
.ratebook { background: #fff; border: 2px solid var(--navy); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.ratebook-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--navy); color: #fff; padding: 1.1rem 1.5rem; border-bottom: 6px solid var(--orange); }
.ratebook-head strong { display: block; font-family: var(--font-display); letter-spacing: 0.04em; font-size: 1.02rem; }
.ratebook-head small { color: #9db4c9; font-size: 0.83rem; }
.stamp { flex: none; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); border: 2.5px solid var(--orange); border-radius: 8px; padding: 0.4rem 0.8rem; transform: rotate(-5deg); background: rgba(255, 106, 0, 0.08); }
.ratebook-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; border-bottom: 1px dashed var(--line); transition: background 0.2s; }
.ratebook-row:hover { background: var(--sky-soft); }
.ratebook-row:last-of-type { border-bottom: 0; }
.ratebook-row.hot { background: linear-gradient(90deg, var(--orange-soft), #fff 55%); }
.ratebook-row .code { flex: none; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; background: var(--navy); color: #fff; border-radius: 6px; padding: 0.3rem 0.55rem; }
.ratebook-row.hot .code { background: var(--orange); }
.ratebook-row strong { display: block; font-size: 1rem; }
.ratebook-row small { color: var(--muted); font-size: 0.83rem; }
.ratebook-row .dots { flex: 1; border-bottom: 2px dotted #b9c7d8; min-width: 24px; transform: translateY(-4px); }
.ratebook-row b { font-family: var(--font-display); font-size: 1.4rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ratebook-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.8rem 1.4rem; background: var(--bg-soft); border-top: 2px solid var(--navy); padding: 1rem 1.5rem; font-size: 0.9rem; color: var(--muted); }

/* ---------- Hazard divider ---------- */
.hazard-div { height: 10px; background: repeating-linear-gradient(-45deg, var(--orange) 0 18px, var(--navy) 18px 36px); }
.price-big { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; margin: 0.6rem 0; }
.price-big small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.tick-list { list-style: none; margin: 1.1rem 0 1.4rem; padding: 0; display: grid; gap: 0.55rem; font-size: 0.94rem; }
.tick-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; background: var(--sky-soft); color: var(--blue-deep); font-weight: 800; font-size: 0.75rem; margin-right: 0.6rem; border: 1px solid var(--line-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 820px; }
.faq { background: #fff; border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; font-weight: 700; font-size: 1rem; text-align: left; color: var(--ink); font-family: var(--font-body); }
.faq-q .plus { flex: none; width: 32px; height: 32px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--line-soft); color: var(--navy); display: grid; place-items: center; font-size: 1.2rem; transition: transform 0.25s, background 0.25s, color 0.25s; }
.faq.open .plus { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 1.3rem 1.2rem; margin: 0; color: var(--muted); }

/* ---------- Service area / contact ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.visit-card { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 1.8rem; }
.visit-card h3 { font-size: 1.12rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours td { padding: 0.55rem 0; border-bottom: 1px dashed var(--line); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 700; }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.area-chips span { font-size: 0.82rem; font-weight: 700; background: var(--bg-soft); border: 1px solid var(--line-soft); padding: 0.4rem 0.85rem; border-radius: 999px; }
.map-fake { border-radius: 18px; overflow: hidden; background: linear-gradient(135deg, #cfdef0 0%, #e8eef6 55%, #f6ecdf 100%); border: 1px solid var(--line-soft); min-height: 320px; position: relative; display: grid; place-items: center; }
.map-fake::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,34,57,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(10,34,57,0.08) 1px, transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(ellipse at center, black, transparent 75%); }
.map-pin { position: relative; background: #fff; border-radius: 16px; padding: 1rem 1.2rem; box-shadow: var(--shadow); display: flex; gap: 0.8rem; align-items: center; max-width: 330px; border-top: 5px solid var(--orange); }
.map-pin .pin { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 1.3rem; flex: none; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--navy) 20%, var(--navy-2) 60%, #14395f 100%); border-top: 6px solid var(--orange); border-radius: 24px; padding: 3rem; color: #fff; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255, 106, 0, 0.16); right: -120px; top: -120px; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 0.4em; }
.cta-banner p { color: #a9bccd; margin-bottom: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 0.8rem; position: relative; z-index: 1; }
.cta-note { font-size: 0.88rem; color: #9db4c9; text-align: center; }
.cta-banner.emg-banner { background: linear-gradient(135deg, #c24e00, var(--orange) 55%, #ff8a2a); border-top-color: var(--navy); }
.cta-banner.emg-banner p, .cta-banner.emg-banner .cta-note { color: rgba(255, 255, 255, 0.9); }

/* ---------- Page hero ---------- */
.page-hero { background: radial-gradient(700px 400px at 80% 0%, #c3d9f5, transparent 60%), radial-gradient(600px 400px at 10% 20%, var(--orange-soft), transparent 55%), var(--bg-soft); border-bottom: 1px solid var(--line-soft); padding: 3.6rem 0 2.8rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0.2em 0 0.4em; }
.page-hero p { color: var(--muted); max-width: 62ch; font-size: 1.08rem; }
.crumbs { font-size: 0.85rem; color: var(--muted); }
.crumbs a { color: var(--orange-deep); font-weight: 700; text-decoration: none; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 1.6rem; }
.filter-btn { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 0.6rem 1.2rem; font-weight: 700; font-size: 0.9rem; cursor: pointer; color: var(--muted); transition: all 0.2s; font-family: var(--font-body); }
.filter-btn:hover { border-color: var(--navy); color: var(--ink); }
.filter-btn.on { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Service rows ---------- */
.svc-full { display: grid; gap: 1rem; }
.svc-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 1.4rem; align-items: center; background: #fff; border: 1px solid var(--line-soft); border-left: 6px solid var(--navy); border-radius: 16px; padding: 1.2rem 1.4rem; transition: transform 0.2s, box-shadow 0.2s; }
.svc-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.svc-row.hidden { display: none; }
.svc-row.urgent { border-left-color: var(--orange); background: linear-gradient(90deg, var(--orange-soft), #fff 40%); }
.svc-thumb { width: 120px; height: 96px; border-radius: 12px; display: grid; place-items: center; font-size: 2rem; }
.svc-row h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.svc-row p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.5rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.svc-tags span { font-size: 0.74rem; font-weight: 700; background: var(--bg-soft); border: 1px solid var(--line-soft); padding: 0.2rem 0.6rem; border-radius: 8px; color: var(--muted); }
.svc-pricebox { text-align: right; min-width: 175px; }
.svc-pricebox b { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1; }
.svc-pricebox small { color: var(--muted); font-size: 0.82rem; display: block; margin-bottom: 0.7rem; }

/* ---------- Calculator ---------- */
.calc-shell { background: var(--navy); color: #fff; border-radius: 24px; border-top: 6px solid var(--orange); padding: 2.4rem; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
.calc-shell h2 { color: #fff; }
.calc-shell > div > p { color: #a9bccd; }
.calc-opts { display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.calc-opt { display: flex; align-items: center; gap: 0.9rem; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 14px; padding: 0.85rem 1rem; cursor: pointer; transition: all 0.2s; }
.calc-opt:hover { background: rgba(255, 255, 255, 0.1); }
.calc-opt input { width: 20px; height: 20px; accent-color: var(--orange); flex: none; }
.calc-opt strong { display: block; font-size: 0.96rem; }
.calc-opt small { color: #9db4c9; font-size: 0.83rem; }
.calc-opt b { margin-left: auto; white-space: nowrap; }
.calc-total { background: #fff; color: var(--ink); border-radius: 18px; padding: 1.8rem; align-self: start; position: sticky; top: 100px; }
.calc-total small { color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; }
.calc-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; margin: 0.4rem 0; }
.calc-note { font-size: 0.88rem; color: var(--muted); }
.calc-toggle { display: flex; align-items: center; gap: 0.7rem; margin-top: 1rem; background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 14px; padding: 0.8rem 1rem; font-size: 0.9rem; font-weight: 600; }
.switch { position: relative; width: 46px; height: 26px; background: #c6d2e0; border-radius: 999px; border: 0; cursor: pointer; transition: background 0.2s; flex: none; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: left 0.2s; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); }
.switch.on { background: var(--orange); }
.switch.on::after { left: 23px; }

/* ---------- Membership ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.club-card { background: linear-gradient(135deg, #fff, var(--sky-soft)); border: 2px solid var(--navy); border-radius: 18px; padding: 2rem; }
.insure-card { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 2rem; }
.logo-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1rem; }
.logo-chips span { background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 10px; padding: 0.55rem 0.95rem; font-weight: 700; font-size: 0.88rem; }

/* ---------- About ---------- */
.collage { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; }
.collage .tall { grid-row: span 2; }
.collage div { border-radius: 18px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-sm); background: linear-gradient(135deg, var(--navy), var(--blue)); min-height: 180px; }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value { background: #fff; border: 1px solid var(--line-soft); border-top: 5px solid var(--navy); border-radius: 16px; padding: 1.5rem; }
.value:nth-child(2) { border-top-color: var(--orange); }
.value .svc-icon { margin-bottom: 0.8rem; }
.value h3 { font-size: 1rem; }
.value p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.timeline { display: grid; margin-top: 1rem; }
.tl-item { display: grid; grid-template-columns: 110px 28px 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px dashed var(--line); }
.tl-item:last-child { border-bottom: 0; }
.tl-year { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.tl-dot { width: 14px; height: 14px; border-radius: 4px; background: var(--orange); margin-top: 0.5rem; box-shadow: 0 0 0 6px var(--orange-soft); }
.tl-item p { color: var(--muted); margin: 0.2rem 0 0; }
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.tech { display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.4rem; }
.tech .svc-icon { margin: 0; flex: none; }
.tech h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.tech p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #a9bccd; padding: 3.5rem 0 1.6rem; border-top: 6px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr; gap: 2rem; margin-bottom: 2.2rem; }
.footer .brand-name { color: #fff; }
.footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 0.9rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; font-size: 0.94rem; }
.footer a { color: #a9bccd; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; align-items: center; justify-content: space-between; font-size: 0.85rem; }
.case-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.case-badge a { color: #fff; font-weight: 700; }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(8, 22, 36, 0.6); backdrop-filter: blur(6px); z-index: 120; display: grid; place-items: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal { background: #fff; border-radius: 22px; border-top: 6px solid var(--orange); width: min(640px, 100%); max-height: 92vh; overflow: auto; box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5); transform: translateY(18px) scale(0.98); transition: transform 0.25s; }
.modal-backdrop.open .modal { transform: none; }
.modal-head { padding: 1.6rem 1.8rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal-head h2 { font-size: 1.6rem; margin: 0; }
.modal-head p { color: var(--muted); margin: 0.3rem 0 0; font-size: 0.94rem; }
.modal-x { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.2rem; flex: none; }
.modal-x:hover { border-color: var(--navy); }
.modal-body { padding: 1.4rem 1.8rem 1.8rem; }
.emg-strip { display: flex; align-items: center; gap: 0.7rem; background: var(--orange-soft); border: 1px solid #f6d9bd; border-radius: 14px; padding: 0.8rem 1rem; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.1rem; cursor: pointer; }
.emg-strip input { width: 20px; height: 20px; accent-color: var(--orange); flex: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { display: grid; gap: 0.35rem; align-content: start; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.86rem; }
.field input, .field select, .field textarea { font: inherit; border: 1.5px solid var(--line); border-radius: 12px; padding: 0.8rem 0.95rem; background: #fff; color: var(--ink); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30, 124, 232, 0.14); }
.field .err { font-size: 0.8rem; color: #c0392b; min-height: 1.1em; }
.slot-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.slot { border: 1.5px solid var(--line); background: #fff; border-radius: 10px; padding: 0.5rem 0.95rem; font-weight: 700; font-size: 0.85rem; cursor: pointer; font-family: var(--font-body); }
.slot:hover { border-color: var(--navy); }
.slot.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.slot.emg-slot { border-color: var(--orange); color: var(--orange-deep); }
.slot.emg-slot.on { background: var(--orange); border-color: var(--orange); color: #fff; }
.form-foot { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; margin-top: 1.2rem; }
.form-note { font-size: 0.82rem; color: var(--muted); }
.success { text-align: center; padding: 1rem 0.4rem; }
.success-check { width: 76px; height: 76px; border-radius: 20px; background: var(--navy); color: #fff; font-size: 2rem; display: grid; place-items: center; margin: 0 auto 1rem; animation: pop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.4); }
@keyframes pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.success p { color: var(--muted); }
.success-card { background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 14px; padding: 1rem; text-align: left; font-size: 0.92rem; margin: 1rem 0; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 120px); background: var(--navy); color: #fff; padding: 0.9rem 1.3rem; border-radius: 12px; border-left: 5px solid var(--orange); box-shadow: var(--shadow); z-index: 150; transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2); font-weight: 600; font-size: 0.92rem; max-width: min(520px, calc(100% - 2rem)); text-align: center; }
.toast.show { transform: translate(-50%, 0); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(8, 22, 36, 0.85); z-index: 140; display: grid; place-items: center; padding: 1.2rem; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1000px, 100%); max-height: 84vh; border-radius: 16px; border: 6px solid #fff; object-fit: contain; background: #fff; }
.lightbox button { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 12px; border: 0; background: #fff; font-size: 1.3rem; cursor: pointer; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid, .split, .calc-shell, .visit-grid, .two-col, .cta-banner { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .float-1 { left: 8px; }
  .float-2 { right: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-pricebox { text-align: left; }
  .collage { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 3.8rem 0; }
  .nav-links { position: fixed; inset: 76px 12px auto 12px; flex-direction: column; background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 0.7rem; box-shadow: var(--shadow); transform: translateY(-16px); opacity: 0; pointer-events: none; transition: all 0.25s; z-index: 90; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 0.85rem 1rem; }
  .burger { display: inline-flex; }
  .nav-phone span + b { display: none; }
  .topbar-inner { font-size: 0.78rem; }
  .topbar-inner span.hide-m { display: none; }
  .svc-grid, .tech-grid { grid-template-columns: 1fr; }
  .ratebook-row { flex-wrap: wrap; }
  .ratebook-row .dots { display: none; }
  .ratebook-row b { margin-left: auto; }
  .do-dont { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem 1.4rem; }
  .testi-shell, .calc-shell { padding: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 70px 20px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .pulse { animation: none; }
}

/* ============================================================
   Visual refresh — SVG icons, initial avatars
   ============================================================ */
.svc-icon { color: var(--navy); }
.svc-icon svg { width: 27px; height: 27px; }
.svc-card.emg .svc-icon { color: var(--orange-deep); }
.svc-thumb { color: var(--navy); }
.svc-thumb svg { width: 38px; height: 38px; }
.tech .svc-icon svg { width: 26px; height: 26px; }
.value .svc-icon svg { width: 26px; height: 26px; }
.brand-mark svg { width: 24px; height: 24px; }
.nav-phone svg { width: 17px; height: 17px; }
.float-card .dot svg { width: 21px; height: 21px; }
.float-card .dot { color: var(--navy); }
.map-pin .pin svg { width: 21px; height: 21px; }
.inline-ic { width: 1.05em; height: 1.05em; vertical-align: -0.18em; }
.emg-strip svg { width: 20px; height: 20px; flex: none; color: var(--orange-deep); }

/* ---------- Initial avatars ---------- */
.hero-av { display: grid !important; place-items: center; color: #fff !important; font-size: 0.72rem; font-weight: 800; }
.t-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; border: 2px solid rgba(255, 255, 255, 0.4); flex: none; font-size: 0.95rem; }
