/* Sub-Zero & Wolf Repair Specialists — shared stylesheet */
:root {
  --primary: #0c4a6e;
  --primary-dark: #082f4a;
  --primary-light: #e6f0f5;
  --accent: #c9a227;
  --accent-dark: #a08418;
  --success: #16a34a;
  --emergency: #dc2626;
  --ink: #0f172a;
  --text: #334155;
  --text-dim: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-warm: #fafaf7;
  --rule: #e2e8f0;
  --rule-dark: #cbd5e1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* === TOP UTILITY BAR === */
.utility-bar {
  background: var(--primary-dark);
  color: white;
  padding: 8px 0;
  font-size: 13px;
}
.utility-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
.utility-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.utility-right a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.utility-right a:hover { opacity: 0.85; }
.utility-phone {
  background: var(--accent);
  color: var(--ink) !important;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700 !important;
}

/* === HEADER === */
header {
  background: white;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}
.logo-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.logo-tag {
  font-size: 10.5px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.15s;
}
nav a:hover { color: var(--primary); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-button {
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}
.phone-button:hover { background: var(--primary-dark); }
.phone-button svg { width: 16px; height: 16px; }

/* === HERO === */
.hero {
  background: var(--bg-soft);
  padding: 56px 24px 64px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: var(--primary);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 18px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s;
  box-shadow: 0 4px 14px rgba(12, 74, 110, 0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(12, 74, 110, 0.3);
}
.btn-primary svg { width: 20px; height: 20px; }
.btn-secondary {
  background: white;
  color: var(--ink);
  padding: 18px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--rule-dark);
  transition: all 0.15s;
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.hero-trust {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* === HERO PHOTO === */
.hero-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.2);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
  pointer-events: none;
  z-index: 1;
}
.hero-photo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  z-index: 2;
}

/* Floating review card */
.hero-review-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border: 1px solid var(--rule);
  z-index: 3;
}
.hero-review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.hero-review-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}
.hero-review-author {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

/* === TRUST STRIP === */
.cred-strip {
  background: white;
  padding: 28px 24px;
  border-bottom: 1px solid var(--rule);
}
.cred-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.cred-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cred-icon svg { width: 22px; height: 22px; }
.cred-info { line-height: 1.25; }
.cred-info strong {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  display: block;
}
.cred-info span {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
  display: block;
}

/* === SECTION BASE === */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-title .highlight { color: var(--primary); }
.section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  max-width: 720px;
}

/* === SERVICES === */
.services {
  background: var(--bg-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.service-brand-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}
.service-brand-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(12, 74, 110, 0.08);
  transform: translateY(-2px);
}
.service-brand-photo {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.service-brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-brand-photo-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.service-brand-content { padding: 28px 28px 32px; }
.service-brand-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.service-brand-content p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.55;
}
.service-brand-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.service-brand-list li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.service-brand-list li svg {
  width: 14px;
  height: 14px;
  color: var(--success);
  flex-shrink: 0;
}

/* === WHY US === */
.why { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  padding: 28px 24px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: white;
  transition: all 0.2s;
}
.why-card:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}

/* === PRICING === */
.pricing { background: var(--bg-soft); }
.pricing-card-single {
  margin-top: 40px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 12px 36px rgba(12, 74, 110, 0.08);
  position: relative;
  overflow: hidden;
}
.pricing-card-single::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(12, 74, 110, 0.03));
  pointer-events: none;
}
.pricing-left {
  text-align: center;
  border-right: 1px solid var(--rule);
  padding-right: 48px;
  position: relative;
}
.pricing-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}
.pricing-amount {
  font-size: 88px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.pricing-amount .dollar {
  font-size: 40px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 4px;
  margin-top: 8px;
  display: inline-block;
}
.pricing-sublabel {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.pricing-applied {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.pricing-right h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pricing-right p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
}
.pricing-right p:last-child { margin-bottom: 0; }
.pricing-right strong { color: var(--ink); }

/* === PROCESS === */
.process { background: white; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rule-dark) 20%, var(--rule-dark) 80%, transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px;
  height: 56px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  margin: 0 auto 20px;
  position: relative;
}
.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}
.process-step-time {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

/* === RECENT WORK === */
.recent { background: var(--bg-soft); }
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.recent-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: all 0.2s;
}
.recent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.recent-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.recent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-photo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  z-index: 2;
}
.recent-content { padding: 18px 20px 22px; }
.recent-content h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.recent-content p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* === SERVICE AREA === */
.area { background: var(--bg-soft); }
.area-wrapper {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.coverage-map-wrapper {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  position: sticky;
  top: 100px;
}
.coverage-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.coverage-map-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.coverage-map-legend {
  display: flex;
  gap: 14px;
  font-size: 12px;
}
.coverage-map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}
.coverage-map-legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.legend-dot-primary { background: var(--primary); }
.legend-dot-secondary { background: rgba(12, 74, 110, 0.25); }

.coverage-map-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.coverage-map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coverage-map-photo .map-placeholder { width: 100%; height: 100%; }

/* === GOOGLE MAP EMBED (Local SEO trust block) === */
.gmap-block {
  margin-top: 40px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.gmap-block-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gmap-block-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gmap-block-title svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.gmap-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.gmap-block-cta:hover { background: var(--primary-dark); }
.gmap-block-cta svg { width: 14px; height: 14px; }
.gmap-iframe-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
}
.gmap-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 600px) {
  .gmap-block-header { padding: 16px 18px; }
  .gmap-iframe-wrapper { aspect-ratio: 4 / 3; }
}

.coverage-list h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.coverage-zone {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 14px;
}
.coverage-zone.priority {
  border-color: var(--primary);
  background: linear-gradient(135deg, white, var(--primary-light));
}
.coverage-zone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.coverage-zone-header h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.coverage-zone-neighborhoods {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}
.coverage-zone-neighborhoods strong { color: var(--ink); font-weight: 600; }
.label-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.label-tag.secondary {
  background: var(--bg-soft);
  color: var(--text-dim);
  border: 1px solid var(--rule-dark);
}

/* === REVIEWS === */
.reviews { background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.review-card-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-card blockquote {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 500;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.review-info { line-height: 1.3; }
.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.review-location {
  font-size: 12px;
  color: var(--text-dim);
}

.reviews-summary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 14px;
  padding: 32px 36px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.reviews-summary-big {
  font-size: 56px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}
.reviews-summary-text strong {
  display: block;
  color: white;
  font-size: 19px;
  margin-bottom: 4px;
  font-weight: 700;
}
.reviews-summary-text p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* === BOOKING FORM === */
.booking {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
}
.booking-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-top: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.booking-left h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.booking-left p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.booking-left ul {
  list-style: none;
  margin-top: 16px;
}
.booking-left li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  padding: 5px 0;
}
.booking-left li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* CRM iframe widget */
.booking-widget {
  width: 100%;
  background: var(--bg-soft);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  min-height: 600px;
}
.booking-widget iframe {
  display: block;
  width: 100%;
  border: none;
  background: white;
  border-radius: 12px;
}

/* Legacy form styles kept for fallback */
.booking-form { display: grid; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group label .req {
  color: var(--emergency);
  margin-left: 2px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: white;
  border: 1.5px solid var(--rule-dark);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.1);
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
textarea.form-input {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}
.btn-submit {
  background: var(--primary);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(12, 74, 110, 0.25);
}
.form-note {
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}

/* === FAQ === */
.faq { background: white; }
.faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(12, 74, 110, 0.06);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-content {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

/* === FINAL CTA === */
.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
}
.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.final-cta p {
  font-size: 18px;
  margin-bottom: 36px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: var(--primary);
  padding: 22px 36px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.final-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.2);
}
.final-phone svg { width: 28px; height: 28px; }
.final-hours {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.final-hours .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* === FOOTER === */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 24px;
  font-size: 14px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  max-width: 220px;
  margin-bottom: 20px;
  display: block;
}
.footer-logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.footer-brand p {
  line-height: 1.6;
  max-width: 400px;
}
footer h5 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
footer a:hover { color: white; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* === MOBILE === */
@media (max-width: 1080px) {
  nav ul { gap: 16px; }
  nav a { font-size: 13px; }
}
@media (max-width: 920px) {
  nav ul, .utility-right { display: none; }
  .utility-bar { font-size: 12px; padding: 6px 0; }
  .hero { padding: 40px 20px 56px; }
  .hero-inner, .area-wrapper, .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-photo { aspect-ratio: 16/10; max-height: 320px; }
  .hero-review-card { bottom: 12px; left: 12px; right: 12px; padding: 12px 16px; }
  .cred-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .services-grid, .recent-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .process-grid::before { display: none; }
  .pricing-card-single {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .pricing-left {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .pricing-amount { font-size: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 56px 20px; }
  .hero-cta-group { width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .reviews-summary { flex-direction: column; align-items: flex-start; }
  .booking-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .coverage-map-wrapper { position: static; }
  .logo-text { display: none; }
  .logo-icon { width: 48px; height: 48px; }
}

@media (max-width: 520px) {
  .cred-strip-inner, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }
  .service-brand-list { grid-template-columns: 1fr; }
  .header-inner { gap: 12px; }
  .final-phone { font-size: 22px; padding: 18px 24px; }
  .coverage-map-legend { display: none; }
}
/* ===== PHASE 2 ADDITIONS: subpage templates ===== */

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 8px; color: var(--rule); }

/* Subpage hero — slimmer than homepage */
.subpage-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 56px 32px 64px;
}
.subpage-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.subpage-hero .section-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.subpage-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 16px;
  max-width: 800px;
  color: white;
}
.subpage-hero .lede {
  font-size: 18px;
  line-height: 1.55;
  max-width: 700px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}
.subpage-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.subpage-hero-ctas .btn {
  font-size: 15px;
  padding: 14px 22px;
}
/* Ensure CTAs in dark subpage hero are clearly contrasted */
.subpage-hero .btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.subpage-hero .btn-primary:hover {
  background: #fbbf24;
  color: var(--ink);
}
.subpage-hero .btn-secondary {
  background: white;
  color: var(--primary-dark);
  border: 2px solid white;
  font-weight: 700;
}
.subpage-hero .btn-secondary:hover {
  background: var(--primary-dark);
  color: white;
  border-color: white;
}
@media (max-width: 700px) {
  .subpage-hero { padding: 36px 22px 44px; }
  .subpage-hero h1 { font-size: 30px; }
  .subpage-hero .lede { font-size: 16px; }
}

/* Article / content body */
.content-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.content-body h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin: 48px 0 16px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}
.content-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 10px;
}
.content-body p { margin-bottom: 16px; }
.content-body ul, .content-body ol { margin: 0 0 18px 22px; }
.content-body li { margin-bottom: 8px; }
.content-body strong { color: var(--ink); font-weight: 700; }
.content-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(12,74,110,0.3);
  text-underline-offset: 3px;
}
.content-body a:hover { text-decoration-color: var(--primary); }

/* Callout / info boxes */
.callout {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 4px;
  margin: 24px 0;
}
.callout.warning { border-left-color: #b45309; background: #fffbeb; }
.callout.success { border-left-color: #15803d; background: #f0fdf4; }
.callout.danger  { border-left-color: #b91c1c; background: #fef2f2; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { display: block; margin-bottom: 6px; color: var(--ink); }

/* TOC (table of contents) */
.toc {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 32px;
}
.toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.toc ol {
  list-style: decimal;
  margin: 0 0 0 20px;
  font-size: 15px;
}
.toc li { margin-bottom: 6px; }
.toc a {
  color: var(--ink);
  text-decoration: none;
}
.toc a:hover { color: var(--primary); text-decoration: underline; }

/* Error code table */
.error-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  font-size: 14px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.error-table th,
.error-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.error-table th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.error-table tr:last-child td { border-bottom: 0; }
.error-table td code {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

/* Inline CTA card */
.inline-cta {
  background: linear-gradient(135deg, var(--primary-light), white);
  border: 1px solid var(--primary);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.inline-cta-text strong {
  display: block;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
}
.inline-cta-text span { color: var(--text); font-size: 15px; }
.inline-cta-btns { display: flex; flex-direction: column; gap: 8px; }
.inline-cta-btns .btn { white-space: nowrap; font-size: 14px; padding: 11px 18px; }
@media (max-width: 700px) {
  .inline-cta {
    grid-template-columns: 1fr;
    padding: 22px 22px;
  }
  .inline-cta-btns { flex-direction: row; }
}

/* Card grid (services, areas, blog) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(12,74,110,0.08);
  text-decoration: none;
}
.card-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.card-arrow {
  margin-top: 8px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* FAQ accordion-like (no JS, uses <details>) */
.faq-list { margin: 24px 0; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 18px 8px 18px 0;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 16px;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  padding: 0 8px 18px 0;
  color: var(--text);
  line-height: 1.65;
}
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* Brand card pillar link (homepage) */
.brand-card-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.brand-card-link:hover {
  background: var(--primary);
  color: white;
}

/* Resources section (homepage) */
.resources {
  background: var(--bg-soft);
  padding: 80px 0;
}
.resources .card-grid {
  margin-top: 48px;
}

/* Page hero image — shown on all subpages between hero section and content */
.page-hero-image {
  margin: 0;
  width: 100%;
  background: var(--bg-soft);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.page-hero-image picture {
  display: block;
  width: 100%;
  height: 320px;
  max-height: 320px;
}
.page-hero-image img {
  display: block;
  width: 100%;
  height: 320px;
  max-height: 320px;
  object-fit: cover;
  object-position: center 40%;
}
@media (max-width: 700px) {
  .page-hero-image,
  .page-hero-image picture,
  .page-hero-image img { height: 200px; max-height: 200px; }
}

/* Add visual rhythm to content sections */
.content-body figure {
  margin: 36px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.content-body figure img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* ====================================================================
   v11 ADDITIONS — premium header, trust strip, mobile sticky CTA
   ==================================================================== */

/* === UNIFIED HEADER (v11) === */
.site-header {
  background: white;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  min-height: 72px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-link img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.logo-link .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}
.logo-link .logo-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.logo-link .logo-tag {
  font-size: 10.5px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.15s;
  padding: 6px 0;
  position: relative;
}
.site-nav a:hover { color: var(--primary); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Gold phone pill */
.header-phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f5d76e 0%, #d4af37 100%);
  border: 1.5px solid #b8941f;
  color: #1f1408;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.header-phone-pill:hover {
  background: linear-gradient(135deg, #f7df87 0%, #e1b941 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(184,148,31,0.25);
}
.header-phone-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Book Service button — bold blue */
.header-book-btn {
  display: inline-block;
  background: var(--primary);
  color: white !important;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.15s;
  box-shadow: 0 1px 2px rgba(12,74,110,0.18);
  white-space: nowrap;
}
.header-book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(12,74,110,0.3);
}

/* Hide old phone-button from homepage (if still present anywhere) */
.phone-button { display: none !important; }

/* === UTILITY BAR — refresh with gold phone === */
.utility-bar {
  background: var(--primary-dark);
  color: white;
  padding: 8px 0;
  font-size: 13px;
}
.utility-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.utility-bar-inner .utility-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.utility-bar-inner .live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}
.utility-bar-inner .utility-phone {
  background: linear-gradient(135deg, #f5d76e 0%, #d4af37 100%);
  color: #1f1408 !important;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 800 !important;
  text-decoration: none;
}
.utility-bar-inner .utility-phone:hover {
  filter: brightness(1.05);
}

/* === TRUST STRIP (right below hero on all pages) === */
.trust-strip {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--rule);
  padding: 24px 24px;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: center;
}
.trust-item {
  text-align: center;
  padding: 8px 6px;
  border-right: 1px solid var(--rule);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.trust-lbl {
  display: block;
  font-size: 11.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 4px;
}

/* === MOBILE STICKY BOTTOM CTA === */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--rule);
  padding: 10px 12px;
  z-index: 90;
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.10);
}
.msc-call {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: linear-gradient(135deg, #f5d76e 0%, #d4af37 100%);
  color: #1f1408;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  border-radius: 8px;
  border: 1.5px solid #b8941f;
}
.msc-call svg { width: 18px; height: 18px; }
.msc-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 76px; } /* room for sticky cta */
  /* Avoid double-stickying header AND bottom cta hiding content */
}

/* === RESPONSIVE HEADER === */
@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 13px; }
  .header-phone-pill { padding: 8px 12px; font-size: 13px; }
  .header-book-btn { padding: 9px 14px; font-size: 13px; }
}
@media (max-width: 920px) {
  /* Hide About/Reviews on tighter screens to keep header clean */
  .site-nav a[href="/reviews/"],
  .site-nav a[href="/about/"] { display: none; }
}
@media (max-width: 768px) {
  .site-header-inner { padding: 10px 16px; gap: 12px; min-height: 60px; }
  .site-nav { display: none; }
  .logo-link img { width: 40px; height: 40px; }
  .logo-link .logo-name { font-size: 13px; }
  .logo-link .logo-tag { font-size: 9.5px; }
  /* Show just phone pill on mobile in header */
  .header-phone-pill { padding: 8px 12px; font-size: 12.5px; }
  .header-phone-pill .header-phone-num { display: none; }
  .header-phone-pill svg { width: 18px; height: 18px; }
  .header-book-btn { padding: 9px 14px; font-size: 12.5px; }
}

@media (max-width: 560px) {
  .utility-bar-inner { font-size: 11.5px; gap: 8px; }
  .utility-bar-inner .utility-left strong { display: inline; }
  .utility-bar-inner span:not(.live-dot) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 170px; }
  .utility-bar-inner .utility-phone { font-size: 12px; padding: 3px 10px; }
}

/* Trust strip responsive */
@media (max-width: 1080px) {
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .trust-item:nth-child(3) { border-right: none; }
  .trust-item:nth-child(4), .trust-item:nth-child(5), .trust-item:nth-child(6) {
    border-top: 1px solid var(--rule);
    padding-top: 14px;
    margin-top: 4px;
  }
}
@media (max-width: 560px) {
  .trust-strip { padding: 18px 16px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .trust-item { border-right: 1px solid var(--rule) !important; }
  .trust-item:nth-child(2n) { border-right: none !important; }
  .trust-num { font-size: 17px; }
  .trust-lbl { font-size: 10px; }
}

/* === SUBPAGE HERO consistency improvements === */
.subpage-hero {
  background: linear-gradient(135deg, #0a3d5e 0%, #0c4a6e 50%, #0e5a82 100%);
  color: white;
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,215,110,0.08), transparent 60%);
  pointer-events: none;
}
.subpage-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.subpage-hero h1 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 8px 0 14px;
  color: white;
}
.subpage-hero .section-eyebrow {
  color: #f5d76e;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  display: inline-block;
}
.subpage-hero .lede {
  color: #cbd9e6;
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 760px;
  margin: 0 0 22px;
}
.subpage-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.subpage-hero .btn-primary {
  background: linear-gradient(135deg, #f5d76e 0%, #d4af37 100%);
  color: #1f1408;
  border: 1.5px solid #b8941f;
  padding: 12px 22px;
  font-weight: 800;
}
.subpage-hero .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.subpage-hero .btn-secondary {
  background: rgba(255,255,255,0.10);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 12px 22px;
}
.subpage-hero .btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
  .subpage-hero { padding: 36px 16px 32px; }
  .subpage-hero h1 { font-size: 28px; }
  .subpage-hero .lede { font-size: 15px; }
}

/* === BREADCRUMBS positioning fix below new header === */
.breadcrumbs {
  background: #f8fafc;
  border-bottom: 1px solid var(--rule);
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-dim);
  max-width: none;
  margin: 0;
}
.breadcrumbs > * { display: inline; }
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { margin: 0 8px; color: #94a3b8; }

/* === PAGE HERO IMAGE between hero and content === */
.page-hero-image {
  margin: 0;
}
.page-hero-image picture,
.page-hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .page-hero-image picture,
  .page-hero-image img { height: 220px; }
}

/* === Hide old separate header from homepage that might conflict === */
body > header:not(.site-header) { display: none; }

/* === Improvements to make experienced-techs section pop on homepage === */
.techs-block {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 56px 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.techs-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.techs-block h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.techs-block p { font-size: 16px; line-height: 1.65; color: var(--text); margin: 0 0 14px; }
.techs-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.techs-points li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
}
.techs-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 800;
  font-size: 18px;
}
.techs-image { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.techs-image img { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
  .techs-block { padding: 36px 16px; }
  .techs-block-inner { grid-template-columns: 1fr; gap: 24px; }
  .techs-block h2 { font-size: 24px; }
}

/* ====================================================================
   v11 PATCH — inline-cta premium look + site-footer logo sizing
   ==================================================================== */

/* === Inline CTA — make phone clearly visible gold pill, Book clear blue === */
.inline-cta {
  background: linear-gradient(135deg, #0a3d5e 0%, #0c4a6e 50%, #0e5a82 100%);
  border: none;
  border-radius: 16px;
  padding: 32px 36px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(12, 74, 110, 0.18);
}
.inline-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,215,110,0.10), transparent 60%);
  pointer-events: none;
}
.inline-cta-text {
  position: relative;
  z-index: 1;
}
.inline-cta-text strong {
  display: block;
  font-size: 22px;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.inline-cta-text span {
  color: #cbd9e6;
  font-size: 15.5px;
  line-height: 1.55;
}

/* Re-style the .btn classes inside .inline-cta-btns specifically */
.inline-cta-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.inline-cta-btns .btn,
.inline-cta-btns a {
  white-space: nowrap;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  letter-spacing: 0.01em;
}
.inline-cta-btns .btn-primary,
.inline-cta-btns a.btn-primary {
  background: linear-gradient(135deg, #f5d76e 0%, #d4af37 100%) !important;
  color: #1f1408 !important;
  border: 1.5px solid #b8941f !important;
  box-shadow: 0 4px 14px rgba(184, 148, 31, 0.25);
}
.inline-cta-btns .btn-primary:hover,
.inline-cta-btns a.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 148, 31, 0.35);
}
.inline-cta-btns .btn-secondary,
.inline-cta-btns a.btn-secondary {
  background: rgba(255,255,255,0.10) !important;
  color: white !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  box-shadow: none;
}
.inline-cta-btns .btn-secondary:hover,
.inline-cta-btns a.btn-secondary:hover {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.55) !important;
}

@media (max-width: 700px) {
  .inline-cta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    gap: 18px;
  }
  .inline-cta-text strong { font-size: 19px; }
  .inline-cta-text span { font-size: 14.5px; }
  .inline-cta-btns {
    flex-direction: column;
    gap: 10px;
  }
  .inline-cta-btns .btn,
  .inline-cta-btns a {
    justify-content: center;
    width: 100%;
  }
}

/* === Footer logo size constraint (.site-footer) === */
.site-footer .footer-grid > div:first-child img {
  width: 220px;
  max-width: 220px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 14px;
}
.site-footer .footer-tagline {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 6px;
  max-width: 320px;
}

@media (max-width: 768px) {
  .site-footer .footer-grid > div:first-child img {
    width: 180px;
    max-height: 48px;
  }
}

/* ====================================================================
   v11 EXTENDED — Pricing Trust Block, Testimonials, Related Services list
   ==================================================================== */

/* === PRICING TRUST BLOCK === */
.pricing-trust-block {
  background: linear-gradient(135deg, #0a3d5e 0%, #0c4a6e 50%, #0e5a82 100%);
  color: white;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.pricing-trust-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,215,110,0.10), transparent 60%);
  pointer-events: none;
}
.pricing-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-trust-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-trust-header h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 8px 0 0;
  color: white;
  letter-spacing: -0.01em;
}
.pricing-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.pricing-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,215,110,0.45);
  transform: translateY(-2px);
}
.pricing-card-accent {
  background: linear-gradient(135deg, rgba(245,215,110,0.12), rgba(212,175,55,0.06));
  border-color: rgba(245,215,110,0.45);
}
.pricing-icon {
  font-size: 38px;
  font-weight: 800;
  color: #f5d76e;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.pricing-card h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}
.pricing-card p {
  color: #cbd9e6;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.pricing-card p strong { color: white; }
.pricing-trust-footer {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-cta-call {
  background: linear-gradient(135deg, #f5d76e 0%, #d4af37 100%);
  color: #1f1408;
  border: 1.5px solid #b8941f;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
}
.pricing-cta-call:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.pricing-cta-book {
  background: rgba(255,255,255,0.10);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
}
.pricing-cta-book:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
}

@media (max-width: 1024px) {
  .pricing-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-trust-block { padding: 40px 16px; }
  .pricing-trust-header h2 { font-size: 24px; }
  .pricing-trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-icon { font-size: 32px; }
}

/* === TESTIMONIALS BLOCK === */
.testimonials-block {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 64px 24px;
  border-bottom: 1px solid var(--rule);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header {
  text-align: center;
  margin-bottom: 36px;
}
.testimonials-header h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: 8px 0 12px;
  color: var(--ink);
}
.testimonials-sub {
  color: var(--text);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(12,74,110,0.08);
  border-color: rgba(245,215,110,0.5);
}
.testimonial-stars {
  color: #f5d76e;
  font-size: 17px;
  letter-spacing: 2px;
  text-shadow: 0 1px 0 #d4af37;
}
.testimonial-card blockquote {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  font-style: normal;
  flex: 1;
}
.testimonial-card cite {
  color: var(--text-dim);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  margin-top: auto;
}
.testimonials-cta {
  text-align: center;
  margin-top: 32px;
}
.testimonials-more {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.testimonials-more:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-block { padding: 44px 16px; }
  .testimonials-header h2 { font-size: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* === RELATED SERVICES LIST (used in pillars + case studies index) === */
.related-services {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.related-services li {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.15s;
}
.related-services li:hover {
  border-color: var(--primary);
  box-shadow: 0 3px 12px rgba(12,74,110,0.08);
}
.related-services a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.5;
  display: block;
}
.related-services a strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}
@media (max-width: 700px) {
  .related-services { grid-template-columns: 1fr; }
}

/* ====================================================================
   v11 PATCH 3 — Contact page Service Zones Grid
   ==================================================================== */

.service-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 32px;
}

.service-zone-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 22px;
  transition: all 0.2s;
  position: relative;
}
.service-zone-card:hover {
  border-color: rgba(245,215,110,0.6);
  box-shadow: 0 4px 16px rgba(12,74,110,0.08);
  transform: translateY(-1px);
}

.service-zone-icon {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

.service-zone-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.005em;
}

.zone-tagline {
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.zone-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.zone-list li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.zone-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  top: 4px;
}

.zone-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  padding-top: 6px;
  border-top: 1px solid var(--rule);
  width: 100%;
}
.zone-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.service-area-note {
  background: linear-gradient(135deg, rgba(245,215,110,0.10), rgba(212,175,55,0.05));
  border-left: 3px solid #d4af37;
  padding: 14px 18px;
  border-radius: 8px;
  margin: 24px 0 36px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
}
.service-area-note strong { color: var(--ink); }

@media (max-width: 700px) {
  .service-zones-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-zone-card { padding: 20px 18px; }
}

/* Inline figure within blog/article content (image + caption) */
.inline-figure {
  margin: 28px 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft, #f7f7f5);
  border: 1px solid var(--rule, #e5e5e0);
}
.inline-figure picture,
.inline-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.inline-figure figcaption {
  padding: 12px 18px 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted, #4a4a4a);
  font-style: italic;
  border-top: 1px solid var(--rule, #e5e5e0);
  background: #fff;
}
@media (max-width: 700px) {
  .inline-figure { margin: 22px 0; }
  .inline-figure figcaption { padding: 10px 14px 12px; font-size: 13px; }
}
