/* ============================================================
   Full Throttle Pressure Washing — site stylesheet
   Brand: navy #0d1b2a / orange #f26522 / blue #1a6fbb
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b2a; --navy-mid: #152234; --navy-deep: #090f18;
  --blue: #1a6fbb; --blue-bright: #2589e0;
  --orange: #f26522; --orange-light: #ff7a30;
  --white: #f4f7fb; --gray: #8a9bb0; --light: #e8eef6; --body: #c4d4e6;
  --max: 1320px;
  --border: rgba(26,111,187,0.18);
  --border-hover: rgba(26,111,187,0.4);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  background: var(--navy); color: var(--white);
  overflow-x: hidden; font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-bright); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: 0.75rem 1.25rem;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 72px;
  display: flex; align-items: center; padding: 0 4rem;
  background: rgba(13,27,42,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,111,187,0.2);
}
.nav-brand {
  text-decoration: none; flex-shrink: 0; margin-right: auto;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.03em;
  white-space: nowrap; display: flex; align-items: center; gap: 0.5rem;
}
/* Two-line brand block so the full registered name fits without crowding the nav. */
.nav-brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.nav-brand-1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.35rem;
  letter-spacing: 0.02em; color: var(--white); white-space: nowrap;
}
.nav-brand-1 span { color: var(--orange); }
.nav-brand-2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.66rem;
  letter-spacing: 0.19em; color: var(--gray); white-space: nowrap; margin-top: 0.18rem;
}
.nav-logo-img {
  height: 40px; width: 40px; object-fit: cover; object-position: center;
  border-radius: 50%; border: 1.5px solid rgba(26,111,187,0.6);
  box-shadow: 0 0 8px rgba(26,111,187,0.35); flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin-right: 2rem; }
.nav-links a {
  color: var(--gray); text-decoration: none; font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.7; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #16273a; border: 1px solid var(--border); border-radius: 6px;
  padding: 0.5rem; min-width: 240px; list-style: none;
  opacity: 0; visibility: hidden; transition: opacity 0.18s, visibility 0.18s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5); margin-top: 0.5rem;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; }
.nav-drop-menu li { display: block; }
.nav-drop-menu a {
  display: block; padding: 0.6rem 0.9rem; border-radius: 4px;
  font-size: 0.85rem; text-transform: none; letter-spacing: 0.02em;
}
.nav-drop-menu a:hover { background: rgba(26,111,187,0.18); color: var(--white); }

.nav-phone {
  color: var(--gray); font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: color 0.2s; white-space: nowrap; margin-right: 1.25rem;
}
.nav-phone:hover { color: var(--white); }
.nav-cta {
  background: var(--orange); color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; padding: 0.65rem 1.75rem;
  border-radius: 4px; text-decoration: none; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-light); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 10px;
}
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(13,27,42,0.99); border-bottom: 1px solid rgba(26,111,187,0.2);
  padding: 1.25rem 1.5rem 1.5rem; flex-direction: column;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray); text-decoration: none; font-size: 1.02rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mm-sub { padding-left: 1rem; font-size: 0.9rem; text-transform: none; letter-spacing: 0.02em; }
.mobile-menu .mm-head {
  color: var(--orange); font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.18em; padding: 1rem 0 0.35rem; border: none;
}
.mobile-menu .mob-cta {
  background: var(--orange); color: #fff; text-align: center; border-radius: 4px;
  padding: 0.9rem; border-bottom: none; margin-top: 1rem; font-weight: 700; font-size: 1.05rem;
}
.mobile-menu .mob-cta-alt {
  background: transparent; border: 2px solid rgba(255,255,255,0.25); color: var(--white);
  text-align: center; border-radius: 4px; padding: 0.85rem; margin-top: 0.6rem; font-weight: 700;
}

/* ---------- LAYOUT ---------- */
section { padding: 5.5rem 4rem; }
.container { max-width: var(--max); margin: 0 auto; }
.container-narrow { max-width: 860px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2.1rem, 3.5vw, 3.25rem); text-transform: uppercase;
  line-height: 1.02; margin-bottom: 1rem;
}
.section-sub { color: var(--gray); font-size: 1.05rem; line-height: 1.7; max-width: 620px; }
.section-header-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-cta { text-align: center; margin-top: 3rem; }
.bg-mid { background: var(--navy-mid); }
.bg-navy { background: var(--navy); }

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; border-radius: 4px;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--orange); color: #fff; font-weight: 800; font-size: 1.15rem;
  padding: 1rem 2.25rem; box-shadow: 0 4px 24px rgba(242,101,34,0.35);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--white); font-weight: 700; font-size: 1.15rem;
  padding: 1rem 2.25rem; border: 2px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { border-color: var(--blue-bright); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--orange); font-weight: 700; font-size: 1.1rem;
  padding: 0.85rem 2rem; border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* ---------- HERO ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 72px 4rem 0; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(26,111,187,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(242,101,34,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #0d1b2a 0%, #152234 55%, #0d1b2a 100%);
}
.drops { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.drop { position: absolute; border-radius: 50%; background: rgba(37,137,224,0.10); animation: dropFall linear infinite; }
@keyframes dropFall {
  0% { transform: translateY(-20px); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 0.15; }
  100% { transform: translateY(110vh); opacity: 0; }
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; padding: 5rem 0;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--orange); }
h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 6rem); line-height: 0.95; letter-spacing: -0.01em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
h1 em { color: var(--blue-bright); font-style: normal; }
h1 .outline { color: transparent; -webkit-text-stroke: 3px var(--orange); }
.hero-sub { font-size: 1.15rem; color: #a8bdd4; line-height: 1.75; margin-bottom: 2.25rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; color: var(--gray); font-weight: 500; }
.trust-item svg { color: var(--orange); flex-shrink: 0; }
.hero-right {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(26,111,187,0.22);
  border-radius: 16px; padding: 2.5rem 2.25rem; display: flex; flex-direction: column; align-items: center;
}
.hero-logo-wrap { text-align: center; margin-bottom: 1rem; }
.hero-logo-wrap img {
  width: 260px; height: 260px; object-fit: cover; border-radius: 50%;
  border: 3px solid rgba(26,111,187,0.7);
  box-shadow: 0 0 0 1px rgba(26,111,187,0.3), 0 0 20px rgba(26,111,187,0.5),
              0 0 45px rgba(26,111,187,0.2), 0 4px 30px rgba(0,0,0,0.6);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-logo-wrap img:hover {
  box-shadow: 0 0 0 2px rgba(26,111,187,0.6), 0 0 30px rgba(26,111,187,0.7),
              0 0 60px rgba(26,111,187,0.3), 0 4px 40px rgba(0,0,0,0.7);
  transform: scale(1.03);
}
.hero-logo-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 0.05em; text-align: center;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero-logo-name span { color: var(--orange); }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; }
.hero-stat { background: rgba(26,111,187,0.08); border: 1px solid rgba(26,111,187,0.18); border-radius: 8px; padding: 1.1rem; text-align: center; }
.hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.1rem; color: var(--blue-bright); line-height: 1; }
.hero-stat-label { color: var(--gray); font-size: 0.8rem; margin-top: 0.3rem; line-height: 1.3; }
.hero-tagline {
  margin-top: 1rem; width: 100%; background: rgba(242,101,34,0.08);
  border: 1px solid rgba(242,101,34,0.2); border-radius: 6px; padding: 1rem 1.1rem;
  text-align: center; font-size: 0.88rem; color: var(--body); line-height: 1.55; font-style: italic;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { padding: 10rem 4rem 4rem; position: relative; overflow: hidden; background: var(--navy); }
.page-hero .hero-bg { z-index: 0; }
.page-hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); margin-bottom: 1.25rem; max-width: 20ch; }
.page-hero .hero-sub { max-width: 640px; margin-bottom: 2rem; }

/* ---------- BREADCRUMBS ---------- */
.crumbs { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.25rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.crumbs li::after { content: '/'; margin-left: 0.4rem; opacity: 0.5; }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--gray); text-decoration: none; }
.crumbs a:hover { color: var(--orange); text-decoration: underline; }

/* ---------- SERVICE CARDS ---------- */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.service-card {
  background: var(--navy); padding: 2.25rem 1.6rem; border-right: 1px solid rgba(26,111,187,0.12);
  transition: background 0.2s; position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { background: rgba(26,111,187,0.07); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.1rem; margin-bottom: 1rem; display: block; }
.service-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.6rem; color: var(--white);
}
.service-desc { color: var(--gray); font-size: 0.93rem; line-height: 1.65; }
.service-price { display: block; margin-top: 0.9rem; color: var(--orange); font-weight: 700; font-size: 0.92rem; }
.service-more { display: block; margin-top: 0.8rem; color: var(--blue-bright); font-size: 0.85rem; font-weight: 600; }

/* City cards on /areas/ — must be a class, never an inline grid-template-columns,
   because an inline style beats the responsive rules below and traps phones at 4 columns. */
.areas-cards { grid-template-columns: repeat(4, 1fr); }

/* ---------- BEFORE / AFTER ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.ba-card {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
  background: var(--navy-mid); transition: transform 0.2s, border-color 0.2s; position: relative;
}
.ba-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.ba-card img { width: 100%; display: block; object-fit: cover; height: 300px; }
.ba-badge {
  position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 3px;
}
.ba-caption { padding: 1rem 1.25rem; font-size: 0.9rem; color: var(--gray); line-height: 1.55; }

/* ---------- WHY / ABOUT ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.why-item {
  display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.4rem 1.6rem;
  background: rgba(26,111,187,0.05); border: 1px solid rgba(26,111,187,0.14);
  border-radius: 6px; transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--border-hover); }
.why-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.1rem; color: var(--orange); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.why-text strong { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 1.02rem; }
.why-text span { color: var(--gray); font-size: 0.93rem; line-height: 1.6; }
.why-visual {
  background: linear-gradient(135deg, rgba(26,111,187,0.12), rgba(242,101,34,0.06));
  border: 1px solid rgba(26,111,187,0.2); border-radius: 10px; padding: 3rem 2.5rem; text-align: center;
}
.why-stat { margin-bottom: 1.75rem; }
.why-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 4.25rem; color: var(--blue-bright); line-height: 1; }
.why-stat-label { color: var(--gray); font-size: 0.93rem; margin-top: 0.3rem; }
.why-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 1.5rem 0; }
.why-tagline { font-size: 1rem; color: var(--body); line-height: 1.7; font-style: italic; margin-top: 1rem; }

/* ---------- NAMED COMMERCIAL CLIENTS ---------- */
.clients {
  background: var(--navy); border: 1px solid rgba(242,101,34,0.28);
  border-radius: 12px; padding: 2.25rem 2rem;
}
.clients-compact { background: transparent; border: none; padding: 0; text-align: center; }
.clients-kicker {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem;
}
.clients-h {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase;
  line-height: 1.05; margin-bottom: 0.75rem;
}
.clients-intro { color: var(--body); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.clients-list { list-style: none; padding: 0; margin: 0 0 1.25rem; text-align: left; }
.clients-list li {
  display: flex; align-items: baseline; gap: 0.85rem; flex-wrap: wrap;
  padding: 0.85rem 0.25rem; border-bottom: 1px solid rgba(26,111,187,0.18);
}
.clients-list li:last-child { border-bottom: none; }
.clients-list li::before {
  content: '\25B8'; color: var(--orange); font-weight: 700; flex-shrink: 0;
}
.client-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--white); margin-right: auto;
}
.client-detail { color: var(--gray); font-size: 0.85rem; }
.clients-more { color: var(--gray); font-size: 0.92rem; font-style: italic; }

/* ---------- REVIEWS ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; max-width: 900px; margin: 0 auto; }
.review-card {
  background: var(--navy-mid); border: 1px solid rgba(26,111,187,0.15);
  border-radius: 8px; padding: 2rem; transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.review-stars { color: #f59e0b; font-size: 1.05rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-text { color: var(--body); font-size: 0.98rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.85rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.98rem; }
.review-location { color: var(--gray); font-size: 0.83rem; margin-top: 0.1rem; }

/* ---------- AREAS ---------- */
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.area-tag {
  background: rgba(26,111,187,0.1); border: 1px solid rgba(26,111,187,0.25); color: var(--light);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.55rem 1.2rem;
  border-radius: 4px; transition: border-color 0.2s, background 0.2s; text-decoration: none; display: inline-block;
}
.area-tag:hover { background: rgba(26,111,187,0.2); border-color: var(--border-hover); color: var(--white); }
.area-tag.primary { background: rgba(242,101,34,0.14); border-color: rgba(242,101,34,0.45); color: var(--orange); }
.areas-cta { background: rgba(26,111,187,0.05); border: 1px solid rgba(26,111,187,0.2); border-radius: 10px; padding: 2.5rem; }
.areas-cta h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.7rem; text-transform: uppercase; margin-bottom: 0.75rem; }
.areas-cta p { color: var(--gray); font-size: 1rem; line-height: 1.65; margin-bottom: 1.5rem; }

/* ---------- PRICING ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.price-card {
  background: var(--navy-mid); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem 1.75rem; transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.price-card.featured { border-color: rgba(242,101,34,0.5); background: rgba(242,101,34,0.05); }
.price-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.35rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.75rem; color: var(--orange); line-height: 1; margin-bottom: 0.35rem; }
.price-amount small { font-size: 1rem; color: var(--gray); font-weight: 600; display: block; margin-bottom: 0.2rem; }
.price-unit { color: var(--gray); font-size: 0.87rem; margin-bottom: 1.25rem; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.price-list li { color: var(--body); font-size: 0.93rem; padding-left: 1.5rem; position: relative; line-height: 1.55; }
.price-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.price-note {
  margin-top: 2rem; padding: 1.1rem 1.35rem; background: rgba(26,111,187,0.07);
  border-left: 3px solid var(--blue); border-radius: 4px; color: var(--gray);
  font-size: 0.93rem; line-height: 1.65;
}

/* ---------- CONTENT PROSE ---------- */
.prose h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; text-transform: uppercase; margin: 2.5rem 0 1rem; line-height: 1.1; }
.prose h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; text-transform: uppercase; margin: 2rem 0 0.75rem; color: var(--light); }
.prose p { color: var(--body); line-height: 1.8; margin-bottom: 1.15rem; }
.prose ul, .prose ol { margin: 0 0 1.35rem 0; padding-left: 0; list-style: none; }
.prose ul li { color: var(--body); line-height: 1.75; margin-bottom: 0.65rem; padding-left: 1.6rem; position: relative; }
.prose ul li::before { content: '▸'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.prose ol { counter-reset: n; }
.prose ol li { color: var(--body); line-height: 1.75; margin-bottom: 0.8rem; padding-left: 2.2rem; position: relative; counter-increment: n; }
.prose ol li::before {
  content: counter(n); position: absolute; left: 0; top: 0.1rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; color: var(--orange);
  background: rgba(242,101,34,0.12); width: 1.6rem; height: 1.6rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.prose strong { color: var(--white); }
.prose a { color: var(--blue-bright); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 2.5rem auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 0.9rem; background: var(--navy-mid); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 1.35rem 1.75rem; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem; letter-spacing: 0.02em; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange); font-size: 1.6rem; line-height: 1; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--orange); }
.faq-answer { padding: 0 1.75rem 1.5rem; color: var(--body); line-height: 1.8; }
.faq-answer p { margin-bottom: 0.9rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- QUOTE / FORM ---------- */
#quote { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-top: 1px solid var(--border); }
.quote-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(26,111,187,0.2); border-radius: 10px; padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(26,111,187,0.2);
  border-radius: 5px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 1rem;
  padding: 0.85rem 1rem; outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(138,155,176,0.55); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-bright); }
.form-group input[aria-invalid="true"] { border-color: #ef4444; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a9bb0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  background-color: rgba(255,255,255,0.05); padding-right: 2.5rem;
}
.form-group select option { background: #152234; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1.05rem; background: var(--orange); color: #fff; border: none;
  border-radius: 5px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, transform 0.15s; margin-top: 0.5rem;
}
.form-submit:hover:not(:disabled) { background: var(--orange-light); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: wait; }
.form-note { text-align: center; margin-top: 0.8rem; font-size: 0.87rem; color: var(--gray); }
.form-error {
  display: none; margin-top: 1rem; padding: 1rem 1.15rem; background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.4); border-radius: 5px; color: #fca5a5;
  font-size: 0.93rem; line-height: 1.6;
}
.form-error a { color: #fff; font-weight: 700; }
.form-error.show { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contact-option {
  display: flex; align-items: center; gap: 1.1rem; padding: 1.25rem 1.5rem;
  background: rgba(26,111,187,0.06); border: 1px solid rgba(26,111,187,0.17);
  border-radius: 8px; margin-bottom: 1rem; text-decoration: none; color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.contact-option:hover { border-color: var(--blue-bright); background: rgba(26,111,187,0.14); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-value { font-weight: 600; font-size: 1.05rem; }
.preferred-badge {
  display: inline-block; background: var(--orange); color: #fff; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.15rem 0.45rem; border-radius: 3px; margin-left: 0.45rem; vertical-align: middle;
}
.quote-tip { margin-top: 1.25rem; padding: 1rem 1.25rem; background: rgba(242,101,34,0.07); border-left: 3px solid var(--orange); border-radius: 4px; }
.quote-tip p { font-size: 0.93rem; color: var(--gray); line-height: 1.65; }
.quote-tip strong { color: var(--white); }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success.show { display: block; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.25rem; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--blue-bright); }
.form-success p { color: var(--gray); line-height: 1.6; font-size: 1rem; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(242,101,34,0.14), rgba(26,111,187,0.1));
  border-top: 1px solid rgba(242,101,34,0.25); border-bottom: 1px solid rgba(242,101,34,0.25);
  padding: 4rem 4rem; text-align: center;
}
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.9rem, 3.2vw, 2.9rem); text-transform: uppercase; margin-bottom: 0.85rem; line-height: 1.05; }
.cta-band p { color: var(--body); font-size: 1.08rem; max-width: 620px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- STICKY MOBILE CTA ---------- */
/* Texting is the primary conversion path, so it gets the wide orange bar and
   calling gets a compact secondary button beside it. */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    display: grid; grid-template-columns: 1fr 4.5rem; gap: 1px; position: fixed;
    bottom: 0; left: 0; right: 0; z-index: 98; background: rgba(26,111,187,0.3);
    border-top: 1px solid rgba(26,111,187,0.35);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .sticky-cta a {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.95rem 0.5rem; text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.05rem;
    letter-spacing: 0.05em; text-transform: uppercase;
  }
  .sticky-cta .sc-text { background: var(--orange); color: #fff; }
  .sticky-cta .sc-call { background: #16273a; color: var(--white); font-size: 1.3rem; }
  body { padding-bottom: 56px; }
}

/* ---------- TEXT-FIRST PANEL ---------- */
.textfirst {
  background: linear-gradient(140deg, rgba(242,101,34,0.13), rgba(26,111,187,0.09));
  border: 1px solid rgba(242,101,34,0.35);
  border-radius: 12px; padding: 2rem 1.85rem;
}
.textfirst-kicker {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem;
}
.textfirst-h {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2rem); text-transform: uppercase;
  line-height: 1.05; margin-bottom: 0.75rem;
}
.textfirst-lead { color: var(--body); font-size: 1rem; line-height: 1.65; margin-bottom: 1.25rem; }
.textfirst-lead strong { color: var(--orange); white-space: nowrap; }
.textfirst-note { color: var(--gray); font-size: 0.88rem; line-height: 1.6; margin-top: 1rem; }
/* Availability sits directly under the text button — a posted closing time was
   stopping people getting in touch in the evening. */
.textfirst-hours {
  margin-top: 1rem; padding: 0.75rem 0.95rem; border-radius: 6px;
  background: rgba(37,137,224,0.10); border: 1px solid rgba(37,137,224,0.28);
  color: var(--body); font-size: 0.9rem; line-height: 1.6;
}
.textfirst-hours strong { color: var(--white); }

.text-steps { list-style: none; counter-reset: ts; margin-bottom: 1.5rem; padding: 0; }
.text-steps li {
  counter-increment: ts; position: relative; padding-left: 2.6rem;
  margin-bottom: 0.75rem; color: var(--white); font-weight: 600; font-size: 1.02rem; line-height: 1.5;
}
.text-steps li::before {
  content: counter(ts); position: absolute; left: 0; top: -0.1rem;
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.btn-block { width: 100%; }

/* ---------- PRICE DISPLAY (always paired with a disclaimer) ---------- */
.price-varies {
  display: block; font-style: normal; font-size: 0.73rem; font-weight: 600;
  color: var(--gray); letter-spacing: 0.02em; margin-top: 0.15rem; text-transform: none;
}
.price-flag {
  margin-top: 1.5rem; padding: 1.15rem 1.35rem; border-radius: 8px;
  background: rgba(242,101,34,0.08); border: 1px solid rgba(242,101,34,0.3);
  max-width: 640px;
}
.price-flag-amount {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.65rem;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--orange); line-height: 1.1;
}
.price-flag-unit { color: var(--light); font-size: 0.95rem; margin-top: 0.15rem; }
.price-flag-warn {
  color: var(--gray); font-size: 0.85rem; line-height: 1.55; margin-top: 0.7rem;
  padding-top: 0.7rem; border-top: 1px solid rgba(242,101,34,0.22);
}
.price-warning {
  padding: 1.5rem 1.75rem; border-radius: 10px;
  background: rgba(242,101,34,0.07); border: 1px solid rgba(242,101,34,0.35);
}
.price-warning-head {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem;
}
.price-warning p { color: var(--body); font-size: 0.96rem; line-height: 1.7; margin-bottom: 0.85rem; }
.price-warning strong { color: var(--white); }
.price-warning a { color: var(--orange); font-weight: 700; }

/* ---------- MISC TEXT-FIRST SUPPORT ---------- */
.hero-textnote {
  margin-top: 1.5rem; padding: 0.9rem 1.15rem; border-radius: 6px;
  background: rgba(242,101,34,0.09); border-left: 3px solid var(--orange);
  color: var(--body); font-size: 0.93rem; line-height: 1.6; max-width: 520px;
}
.hero-textnote strong { color: var(--white); }
.cta-band-note { color: var(--gray); font-size: 0.9rem; margin-top: 1.25rem; }
.contact-alt-head {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray);
  margin: 2rem 0 0.85rem;
}
.contact-option-sm { padding: 0.9rem 1.25rem; }
.contact-option-sm .contact-value { font-size: 0.9rem; font-weight: 500; }
.form-card-head {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.25rem;
}
.form-card-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ---------- FOOTER ---------- */
footer { background: var(--navy-deep); border-top: 1px solid rgba(26,111,187,0.15); padding: 3.5rem 4rem 2.5rem; color: var(--gray); font-size: 0.9rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; text-align: left; margin-bottom: 2.5rem; }
/* Footer column labels are navigation, not document sections — styled like
   headings but not marked up as them, so heading order stays clean. */
.footer-head { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-brand-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-brand-row img {
  height: 64px; width: 64px; object-fit: cover; border-radius: 50%;
  border: 2px solid rgba(26,111,187,0.6); box-shadow: 0 0 14px rgba(26,111,187,0.4);
}
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--white); line-height: 1.1; }
.footer-logo-text span { color: var(--orange); }
.footer-logo-sub { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.05em; }
.footer-blurb { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-hours { color: var(--blue-bright); font-size: 0.95rem; font-weight: 600; line-height: 1.5; }
.footer-hours-note { color: var(--gray); font-size: 0.82rem; line-height: 1.6; margin-top: 0.3rem; }
.footer-badges { display: flex; justify-content: center; gap: 1.5rem; margin: 0 0 1rem; flex-wrap: wrap; }
.footer-badge { color: var(--blue-bright); font-size: 0.87rem; font-weight: 600; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; }
.footer-phone a { color: var(--blue-bright); text-decoration: none; font-weight: 600; font-size: 1rem; }
.footer-phone a:hover { text-decoration: underline; }

/* ---------- ANIMATION ---------- */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .drop { animation: none; display: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  nav { padding: 0 1.25rem; }
  .nav-brand { font-size: 1.2rem; }
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 3.25rem 1.25rem; }
  .hero { padding: 72px 1.25rem 0; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 2.5rem 0 3rem; }
  .hero-right { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
  .page-hero { padding: 7rem 1.25rem 2.5rem; }
  .section-header-2col { grid-template-columns: 1fr; gap: 0.75rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-cards { grid-template-columns: repeat(3, 1fr); }
  .service-card { border-bottom: 1px solid rgba(26,111,187,0.12); }
  .service-card:nth-child(even) { border-right: none; }

  /* Touch targets: 44px minimum on anything a thumb has to hit.
     Links sitting inline inside a sentence are deliberately excluded — enlarging
     those would break the line flow, and WCAG 2.5.8 exempts them for that reason. */
  .nav-hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .nav-brand { min-height: 44px; }
  .footer-col a { display: flex; align-items: center; min-height: 44px; }
  .footer-col li { margin-bottom: 0; }
  .footer-col ul { gap: 0; }
  .crumbs li { display: flex; align-items: center; }
  .crumbs a { display: inline-flex; align-items: center; min-height: 44px; padding-right: 0.15rem; }
  .section-cta .btn-outline { width: 100%; }
  .ba-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-visual { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-inner { grid-template-columns: 1fr; gap: 2rem; }
  .areas-cta { padding: 1.75rem; }
  .quote-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-value { font-size: 0.92rem; word-break: break-word; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.25rem; }
  .cta-band { padding: 3rem 1.25rem; }
  .cta-band-actions { flex-direction: column; }
  .cta-band-actions a { width: 100%; }
  footer { padding: 2.5rem 1.25rem 2rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-badges { gap: 0.75rem; }
  .textfirst { padding: 1.5rem 1.25rem; }
  .price-warning { padding: 1.25rem 1.15rem; }
  .price-flag { padding: 1rem 1.15rem; }
  .hero-textnote { max-width: none; }
}
@media (max-width: 820px) {
  .areas-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-brand { font-size: 1.02rem; gap: 0.45rem; }
  .nav-brand-1 { font-size: 1.08rem; }
  .nav-brand-2 { font-size: 0.54rem; letter-spacing: 0.14em; }
  .nav-logo-img { height: 34px; width: 34px; }
  .services-grid, .areas-cards { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .hero-trust { gap: 0.6rem 1rem; }
  .trust-item { font-size: 0.83rem; }
  .hero-inner { padding: 2rem 0 2.5rem; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.75rem; }
  .price-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 1.1rem 1.25rem; font-size: 1.08rem; }
  .faq-answer { padding: 0 1.25rem 1.25rem; }
}
@media (max-width: 480px) {
  .btn-primary, .btn-secondary { padding: 0.9rem 1.35rem; font-size: 1.05rem; }
  .section-label { font-size: 0.75rem; }
  .review-card { padding: 1.35rem 1.15rem; }
  .service-card { padding: 1.6rem 1.15rem; }
  .prose h2 { font-size: 1.65rem; }
}
