/*
Theme Name: Plumber Brookings Pro
Theme URI: https://plumberbrookingspro.com
Author: Plumber Brookings Pro
Author URI: https://plumberbrookingspro.com
Description: A premium, conversion-focused one-page WordPress theme built for local plumbing companies. Sticky navigation, sticky mobile call bar, emergency banner, service cards, process timeline, gallery, FAQ accordion and a lead-capture quote form. Fully responsive and Customizer-driven.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plumber-brookings-pro
Tags: one-column, custom-colors, custom-logo, custom-menu, editor-style, featured-images, threaded-comments, translation-ready, blog, portfolio
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
  --navy: #0b1f3a;
  --navy-soft: #14315a;
  --navy-deep: #071528;
  --accent: #1d7fe4;
  --accent-strong: #1668bd;
  --accent-soft: #e8f2fd;
  --success: #0f9d63;
  --success-soft: #e6f6ef;
  --ink: #17202c;
  --muted: #5b6879;
  --line: #e6e9ef;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --mist: linear-gradient(180deg, #f4f8fd 0%, #fdfdfb 100%);
  --gradient-navy: linear-gradient(135deg, #0b1f3a 0%, #14315a 55%, #0f2a4d 100%);
  --gradient-accent: linear-gradient(135deg, #1d7fe4 0%, #46b6f0 100%);
  --shadow-soft: 0 1px 2px rgba(11, 31, 58, .04), 0 4px 14px rgba(11, 31, 58, .05);
  --shadow-card: 0 2px 6px rgba(11, 31, 58, .05), 0 14px 34px rgba(11, 31, 58, .07);
  --shadow-lift: 0 10px 24px rgba(11, 31, 58, .09), 0 30px 60px rgba(11, 31, 58, .12);
  --shadow-success: 0 8px 22px rgba(15, 157, 99, .28);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --container: 1200px;
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tint { background: var(--surface-2); }
.section--edge { border-block: 1px solid var(--line); background: var(--surface); }
.lede { color: var(--muted); font-size: 1.0625rem; line-height: 1.8; max-width: 68ch; }
.lede + .lede { margin-top: 18px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; left: 16px; top: 16px; z-index: 999; width: auto; height: auto;
  clip: auto; padding: 12px 18px; border-radius: 12px; background: var(--navy); color: #fff;
}

/* ==========================================================================
   3. Buttons & chips
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 16px; border: 1px solid transparent;
  font-family: var(--font-display); font-weight: 700; font-size: .975rem;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--call { background: var(--success); color: #fff; box-shadow: var(--shadow-success); }
.btn--call:hover { filter: brightness(1.05); }
.btn--hero { background: var(--gradient-accent); color: #fff; box-shadow: 0 10px 26px rgba(29, 127, 228, .3); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-card); }
.btn--navy:hover { background: var(--navy-soft); }
.btn--quiet { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-soft); }
.btn--quiet:hover { border-color: rgba(29, 127, 228, .4); color: var(--accent); }
.btn--glass { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .22); backdrop-filter: blur(14px); }
.btn--glass:hover { background: rgba(255, 255, 255, .2); }
.btn--sm { padding: 11px 18px; font-size: .875rem; border-radius: 13px; }
.btn--block { width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
}
.eyebrow svg { width: 15px; height: 15px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px;
  border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  font-size: .78rem; font-weight: 600; color: var(--muted); box-shadow: var(--shadow-soft);
}
.chip--success { border-color: rgba(15, 157, 99, .25); background: var(--success-soft); color: var(--success); box-shadow: none; }
.chip svg { width: 15px; height: 15px; color: var(--accent); }
.pill {
  display: inline-block; padding: 9px 17px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: .875rem; font-weight: 500; color: var(--muted);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse-ring 2.4s ease-out infinite; }

/* ==========================================================================
   4. Cards & surfaces
   ========================================================================== */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden;
}
.card__body { padding: clamp(26px, 3.4vw, 46px); }
.lift { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.glass {
  background: rgba(255, 255, 255, .72); border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 22px; box-shadow: var(--shadow-lift); backdrop-filter: blur(18px) saturate(150%);
}
.glass-dark {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px; backdrop-filter: blur(16px);
}
.icon-badge {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 16px; background: var(--accent-soft); color: var(--accent); flex: none;
}
.icon-badge svg { width: 21px; height: 21px; }
.icon-badge--success { background: var(--success-soft); color: var(--success); }
.icon-badge--navy { background: var(--gradient-navy); color: #fff; box-shadow: var(--shadow-card); }
.icon-badge--sm { width: 38px; height: 38px; border-radius: 13px; }
.icon-badge--sm svg { width: 17px; height: 17px; }
.zoom { overflow: hidden; }
.zoom img { transition: transform 1.1s var(--ease); width: 100%; height: 100%; object-fit: cover; }
.zoom:hover img { transform: scale(1.06); }
.callout {
  border-left: 3px solid var(--accent); background: rgba(232, 242, 253, .7);
  border-radius: 18px; padding: 22px 24px;
}
.stars { display: inline-flex; gap: 2px; color: var(--success); }
.stars svg { width: 17px; height: 17px; fill: currentColor; }

/* ==========================================================================
   5. Header / navigation
   ========================================================================== */
.utility-bar { background: var(--navy-deep); color: rgba(255, 255, 255, .78); font-size: .8rem; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 0; }
.utility-bar__group { display: flex; align-items: center; gap: 16px; min-width: 0; }
.utility-bar span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.utility-bar svg { width: 14px; height: 14px; color: var(--success); }
.utility-bar__live { color: #fff; font-weight: 600; }

.site-header { position: sticky; top: 0; z-index: 60; }
.site-header__bar {
  background: rgba(255, 255, 255, .86); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(160%); transition: box-shadow .35s ease, background-color .35s ease;
}
.site-header.is-stuck .site-header__bar { box-shadow: var(--shadow-card); background: rgba(255, 255, 255, .95); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: var(--gradient-navy); color: #fff; flex: none; box-shadow: var(--shadow-card);
}
.brand__mark svg { width: 21px; height: 21px; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.06rem; color: var(--ink); line-height: 1.15; }
.brand__meta { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  position: relative; display: inline-block; padding: 9px 14px; border-radius: 10px;
  color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: none; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.header-phone svg { width: 17px; height: 17px; color: var(--accent); }

.nav-toggle {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink); box-shadow: var(--shadow-soft);
}
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-nav {
  display: grid; gap: 6px; padding: 0 22px; max-height: 0; overflow: hidden;
  background: var(--surface); border-bottom: 1px solid transparent;
  transition: max-height .45s var(--ease), padding .35s ease, border-color .35s ease;
}
.mobile-nav.is-open { max-height: 460px; padding: 14px 22px 22px; border-bottom-color: var(--line); }
.mobile-nav a { padding: 13px 4px; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 12px; }

.emergency-banner { background: var(--success); color: #fff; }
.emergency-banner__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 11px 0;
}
.emergency-banner p { display: flex; align-items: center; gap: 9px; font-size: .875rem; font-weight: 600; min-width: 0; }
.emergency-banner p span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.emergency-banner svg { width: 17px; height: 17px; flex: none; }
.emergency-banner a { flex: none; background: rgba(0, 0, 0, .18); color: #fff; padding: 7px 16px; border-radius: 11px; font-weight: 700; font-size: .875rem; }

/* ==========================================================================
   6. Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--mist); padding: clamp(46px, 6vw, 70px) 0 clamp(72px, 9vw, 120px); }
.hero__grid { display: grid; gap: 52px; align-items: center; }
.hero h1 { margin-top: 26px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__proof { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; margin-top: 34px; font-size: .9rem; color: var(--muted); }
.hero__proof strong { color: var(--ink); }
.hero__media { position: relative; max-width: 460px; margin-inline: auto; }
.hero__media::before {
  content: ""; position: absolute; inset: -26px; border-radius: 46px;
  background: var(--gradient-accent); opacity: .12; filter: blur(34px); z-index: -1;
}
.hero__media figure { margin: 0; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--line); box-shadow: var(--shadow-lift); }
.hero__media img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.float-card { position: absolute; left: -14px; bottom: -26px; width: 265px; padding: 20px; animation: float 6.5s ease-in-out infinite; }
.float-card__label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.float-card__value { margin-top: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.float-card ul { margin-top: 14px; display: grid; gap: 10px; font-size: .875rem; color: var(--muted); }
.float-card li { display: flex; gap: 9px; align-items: flex-start; }
.float-card svg { width: 16px; height: 16px; color: var(--success); flex: none; margin-top: 3px; }
.float-chip { position: absolute; right: -10px; top: 26px; display: none; align-items: center; gap: 12px; padding: 13px 17px; }
.float-chip__title { font-family: var(--font-display); font-weight: 800; font-size: .875rem; }
.float-chip__sub { font-size: .7rem; color: var(--muted); }

/* ==========================================================================
   7. Layout helpers
   ========================================================================== */
.split { display: grid; gap: 48px; align-items: center; }
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.section__head { max-width: 62ch; }
.section__head h2, .section__head .display { margin-top: 20px; }
.section__head .lede { margin-top: 22px; }

.trust-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 26px; padding: 28px 0; }
.trust-strip li { display: flex; align-items: center; gap: 12px; min-width: 0; }
.trust-strip span { font-size: .9rem; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-soft); }
.stat__value { font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; letter-spacing: -.02em; }
.stat__label { margin-top: 6px; font-size: .85rem; color: var(--muted); }

.checklist { display: grid; gap: 12px; margin-top: 18px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .975rem; }
.checklist svg { width: 18px; height: 18px; color: var(--success); flex: none; margin-top: 4px; }

.service-card { margin-top: 30px; display: grid; }
.service-card .card__body { display: flex; flex-direction: column; }
.service-card h3 { margin-top: 22px; }
.service-card .lede { margin-top: 18px; }
.service-card figure { margin: 0; min-height: 260px; border-top: 1px solid var(--line); }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.tag-row span { border: 1px solid var(--line); background: var(--surface-2); border-radius: 999px; padding: 7px 14px; font-size: .78rem; color: var(--muted); }

.emergency { position: relative; overflow: hidden; background: var(--gradient-navy); color: #fff; padding: clamp(60px, 8vw, 100px) 0; }
.emergency::before {
  content: ""; position: absolute; left: -140px; top: 50%; width: 460px; height: 460px; transform: translateY(-50%);
  border-radius: 50%; background: rgba(29, 127, 228, .3); filter: blur(90px);
}
.emergency .container { position: relative; }
.emergency h2, .emergency .display { color: #fff; }
.emergency .lede { color: rgba(255, 255, 255, .78); }

.steps { counter-reset: step; display: grid; gap: 20px; margin-top: 52px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); }
.step__top { display: flex; align-items: center; justify-content: space-between; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--line); }
.step h4 { margin-top: 22px; font-size: 1.1rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: .95rem; }

.gallery { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 52px; }
.gallery figure { margin: 0; height: 220px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-card); }

.quote-block {
  margin-top: 30px; border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft);
}
.quote-block p { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.35; letter-spacing: -.02em; }

.map-frame { margin-top: 30px; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; filter: grayscale(35%); }

/* Accordion */
.faq { margin-top: 30px; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink);
}
.faq__q svg { width: 18px; height: 18px; color: var(--muted); transition: transform .35s var(--ease); flex: none; }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a > div { padding: 0 22px 20px; color: var(--muted); font-size: .975rem; }
.faq__item.is-open .faq__a { max-height: 320px; }

/* Contact form */
.form-grid { display: grid; gap: 18px; margin-top: 30px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); font: inherit; font-size: .95rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(29, 127, 228, .14);
}
.form-note { font-size: .78rem; color: var(--muted); text-align: center; }
.form-alert { border-radius: 14px; padding: 14px 18px; font-size: .9rem; font-weight: 600; }
.form-alert--ok { background: var(--success-soft); color: var(--success); }
.form-alert--err { background: #fdecec; color: #c0392b; }

.final-cta { position: relative; overflow: hidden; background: var(--gradient-navy); color: #fff; border-radius: var(--radius-xl); padding: clamp(48px, 7vw, 86px) clamp(24px, 5vw, 60px); text-align: center; box-shadow: var(--shadow-lift); }
.final-cta::before, .final-cta::after {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(90px);
}
.final-cta::before { left: -110px; top: -110px; background: rgba(29, 127, 228, .32); }
.final-cta::after { right: -110px; bottom: -110px; background: rgba(15, 157, 99, .26); }
.final-cta > * { position: relative; }
.final-cta .display { color: #fff; margin-top: 26px; font-size: clamp(1.7rem, 3.6vw, 2.75rem); }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.final-cta__address { margin-top: 30px; font-size: .85rem; color: rgba(255, 255, 255, .6); }

/* ==========================================================================
   8. Footer + sticky mobile CTA
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .68); padding: clamp(56px, 7vw, 86px) 0 0; }
.site-footer a { color: rgba(255, 255, 255, .68); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.site-footer ul { margin-top: 18px; display: grid; gap: 11px; font-size: .925rem; }
.footer-brand .brand__name, .footer-brand .brand__meta { color: #fff; }
.footer-brand .brand__meta { color: rgba(255, 255, 255, .55); }
.footer-brand p { margin-top: 20px; font-size: .925rem; max-width: 38ch; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; border: 1px solid rgba(255, 255, 255, .16); transition: background-color .25s ease; }
.footer-socials a:hover { background: rgba(255, 255, 255, .1); }
.footer-socials svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: 52px; padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .12); font-size: .82rem;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .9); border-top: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(160%);
  transform: translateY(120%); transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { padding: 13px 14px; font-size: .9rem; border-radius: 14px; }
body.has-sticky-cta { padding-bottom: 84px; }

/* ==========================================================================
   9. Animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 currentColor; opacity: .9; } 70% { box-shadow: 0 0 0 8px transparent; opacity: 1; } 100% { box-shadow: 0 0 0 0 transparent; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   10. WordPress core classes (blog/pages fallback)
   ========================================================================== */
.entry { max-width: 78ch; margin-inline: auto; }
.entry + .entry { margin-top: 56px; }
.entry__title { margin-bottom: 14px; }
.entry__meta { color: var(--muted); font-size: .85rem; }
.entry__content { margin-top: 22px; color: var(--muted); line-height: 1.85; }
.entry__content p + p { margin-top: 18px; }
.entry__content a { text-decoration: underline; }
.alignleft { float: left; margin: 0 24px 18px 0; }
.alignright { float: right; margin: 0 0 18px 24px; }
.aligncenter { margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: .82rem; color: var(--muted); }
.sticky, .bypostauthor { display: block; }
.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 48px; }
.pagination .page-numbers {
  display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
  border-radius: 13px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-weight: 600;
}
.pagination .current { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ==========================================================================
   11. Responsive
   ========================================================================== */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .emergency-banner__inner { display: flex; justify-content: space-between; }
  .float-chip { display: flex; }
  .form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .nav, .header-actions { display: flex; }
  .nav-toggle, .mobile-nav { display: none; }
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 64px; }
  .hero__media { max-width: none; }
  .split { grid-template-columns: 1fr 1fr; gap: 72px; }
  .split--wide-left { grid-template-columns: 1.05fr .95fr; }
  .split--wide-right { grid-template-columns: .95fr 1.05fr; }
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat-grid--2x2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { grid-template-columns: 1.05fr .95fr; }
  .service-card--flip { grid-template-columns: .95fr 1.05fr; }
  .service-card--flip .card__body { order: 2; }
  .service-card--flip figure { order: 1; border-top: 0; border-right: 1px solid var(--line); }
  .service-card figure { border-top: 0; border-left: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 210px; }
  .gallery figure { height: auto; }
  .gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .sticky-form { position: sticky; top: 132px; }
}
