/* aap-public-css-v1 — consolidated public polish */

/* ===== contact-page-polish.css ===== */
/* Contact page — layout polish (boxes, no overlap) */
.page-content .hub-guest-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0;
  box-sizing: border-box;
  width: 100%;
}

.hub-guest-banner-text {
  min-width: 0;
}

.hub-guest-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  width: 100%;
}

.contact-layout > * {
  min-width: 0;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card,
.contact-hours-card,
.contact-hub-card,
.contact-map-card {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.contact-map-address {
  margin: 0 0 0.9rem;
  color: #2e2e2e;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-map-embed {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #e8e8e8;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-directions {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  margin-top: 0.9rem;
}

.contact-info-card .contact-info-value {
  word-break: break-word;
}

.contact-service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.5rem;
}

.contact-service-areas-grid .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  min-height: 2.5rem;
}

.contact-hub-card--paused {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.12);
  background: linear-gradient(165deg, #ffffff 0%, #f3f3f3 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-hub-card--paused .contact-hub-note {
  margin: 0 0 1rem;
  color: #5c5c5c;
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-hub-card--paused h3,
.contact-hub-card--paused .contact-hub-title {
  color: #1a1a1a;
}

.portal-cta-disabled .btn:disabled,
.contact-hub-card--paused .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.contact-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form-track-prompt {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.contact-form-track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-form-track-actions .btn {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .contact-hub-card,
  .contact-hours-card,
  .contact-map-card {
    grid-column: 1 / -1;
  }

  .page-content .hub-guest-banner {
    grid-template-columns: 1fr;
  }

  .hub-guest-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .page-content .hub-guest-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hub-guest-banner-actions {
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
  }

  .hub-guest-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-info-col {
    grid-template-columns: 1fr;
  }

  .contact-form-track-actions .btn {
    width: 100%;
  }
}

/* ===== nav-dropdown-hover-fix.css ===== */
/* nav-dropdown-hover-fix-v1 — desktop dropdown hover bridge + close delay */

@media (min-width: 1280px) {
  /* Invisible bridge so moving the mouse down doesn't leave the hover zone */
  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
    z-index: 99;
  }

  .nav-dropdown-menu {
    top: calc(100% + 4px);
    max-height: min(70vh, 440px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  }

  .nav-dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .nav-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
  }

  /* Stay open briefly when the pointer leaves — easier for slower mouse movement */
  .nav-dropdown .nav-dropdown-menu {
    transition:
      opacity 0.18s ease,
      visibility 0s linear 0.28s,
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transition:
      opacity 0.18s ease,
      visibility 0s linear 0s,
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

/* ===== form-select-theme.css ===== */
/* form-select-theme-v2 — light selects matching white/black/silver site palette */

:root {
  color-scheme: light;
}

select,
.form-group select,
.contact-form select,
.contact-form .form-group select {
  color-scheme: light;
  -webkit-appearance: none;
  appearance: none;
  color: #1a1a1a !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a5a5a' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.16) !important;
  padding-right: 2.5rem !important;
  cursor: pointer;
}

select:focus,
.form-group select:focus,
.contact-form .form-group select:focus {
  outline: none !important;
  border-color: rgba(0, 0, 0, 0.35) !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06) !important;
  background-color: #ffffff !important;
}

select option,
select optgroup {
  color: #1a1a1a !important;
  background-color: #ffffff !important;
}

select option:checked,
select option:hover,
select option:focus {
  color: #1a1a1a !important;
  background-color: #e6e6e6 !important;
}

select option[value=""],
select option:disabled {
  color: #737373 !important;
}

@-moz-document url-prefix() {
  select option {
    background-color: #ffffff;
    color: #1a1a1a;
  }
}

/* ===== reviews-platform-links.css ===== */
/* reviews-platform-links-v1 — Google / Yelp / Facebook CTAs on /reviews */

.reviews-leave-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
}

@media (max-width: 640px) {
  .reviews-leave-grid,
  .reviews-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-leave-btn,
  .google-review-btn {
    width: 100%;
    justify-content: center;
  }
}

.reviews-google-cta {
  padding: clamp(1.25rem, 3vw, 1.75rem) !important;
}

.reviews-google-cta h3 {
  color: var(--palette-ink, #1a1a1a) !important;
  margin-bottom: 0.5rem;
}

.reviews-google-cta p {
  color: var(--palette-mute, #5c5c5c) !important;
  margin-bottom: 1.1rem;
  max-width: 52ch;
  line-height: 1.65;
}

.reviews-leave-btn {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
}

.reviews-leave-btn--yelp {
  border-color: rgba(0, 0, 0, 0.16) !important;
}

.reviews-leave-btn--facebook {
  border-color: rgba(0, 0, 0, 0.16) !important;
}

.reviews-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border-radius: 10px;
  background: #1c1c1c !important;
  color: #e6e6e6 !important;
  border: 1px solid #1c1c1c !important;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.google-review-btn:hover {
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.google-review-btn-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

/* ===== service-areas-directory.css ===== */
/* service-areas-directory-v2 — featured cities + chip directory, motion */

.cms-service-areas-section {
  position: relative;
  overflow: hidden;
}

.cms-service-areas-section .container {
  position: relative;
  z-index: 1;
}

.cms-service-areas-section::before {
  content: "";
  position: absolute;
  inset: -15% 10% auto;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55), transparent 72%);
  pointer-events: none;
  animation: sa-glow 8s ease-in-out infinite alternate;
}

.cms-service-areas-section .section-label,
.cms-service-areas-section h2 {
  text-align: center;
}

.cms-service-areas-section .section-lead {
  max-width: 52ch;
  margin: 0.45rem auto 0;
  line-height: 1.65;
  text-align: center;
}

.sa-home-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (max-width: 1024px) {
  .sa-home-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .sa-home-featured {
    grid-template-columns: 1fr;
  }
}

.sa-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.45rem 1.45rem 1.3rem;
  border-radius: 18px;
  text-decoration: none !important;
  color: inherit !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  animation: sa-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--sa-i, 0) * 90ms);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.sa-feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(40, 40, 40, 0.35), transparent);
  opacity: 0.55;
}

.sa-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.16) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.11);
}

.sa-feature-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6a6a !important;
}

.sa-feature-card h3 {
  margin: 0 !important;
  font-size: 1.25rem !important;
  line-height: 1.25;
  color: #121212 !important;
}

.sa-feature-card p {
  margin: 0 !important;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #555 !important;
  flex: 1;
}

.sa-feature-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1a1a1a !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.sa-feature-card:hover .sa-feature-link {
  gap: 0.55rem;
}

.sa-home-more {
  margin-top: 2rem;
}

.sa-home-more-label {
  text-align: center;
  margin: 0 0 1rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6a6a !important;
}

.sa-home-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.sa-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 12px;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1a1a1a !important;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  animation: sa-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--sa-i, 0) * 32ms);
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.sa-city-chip:hover {
  transform: translateY(-2px) scale(1.02);
  background: #1c1c1c !important;
  border-color: #1c1c1c !important;
  color: #ececec !important;
}

.sa-city-chip span {
  opacity: 0.5;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sa-city-chip:hover span {
  opacity: 1;
  transform: translateX(2px);
}

.sa-home-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.85rem;
  animation: sa-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.sa-home-actions .btn {
  min-width: 0;
  width: min(100%, 280px);
}

@media (max-width: 768px) {
  .sa-home-actions {
    padding: 0 0.5rem;
  }

  .sa-home-actions .btn {
    width: 100%;
  }
}

/* Hub directory */
.sa-directory {
  padding-top: 0.5rem;
  overflow: hidden;
}

.sa-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin: 0 0 2rem;
}

@media (max-width: 768px) {
  .sa-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 0.35rem;
  }

  .sa-tab {
    flex: 0 0 auto;
    min-height: 44px;
  }
}

.sa-tab {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #5c5c5c;
  border-radius: 12px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sa-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.2);
  color: #1a1a1a;
}

.sa-tab.is-active {
  background: #1c1c1c;
  color: #f0f0f0;
  border-color: #1c1c1c;
}

.sa-county-block {
  margin-bottom: 2.25rem;
  animation: sa-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sa-county-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6a6a !important;
}

.sa-county-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.sa-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 0.85rem;
}

.sa-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: sa-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--sa-i, 0) * 35ms);
  min-height: 100%;
  color: #2e2e2e;
}

.sa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.16) !important;
}

.sa-card-city {
  margin: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 750 !important;
  color: #121212 !important;
  line-height: 1.25;
}

.sa-card-meta {
  margin: 0 !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a6a6a !important;
}

.sa-card-excerpt {
  margin: 0 !important;
  color: #555 !important;
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}

.sa-card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.sa-directory-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sa-directory-footer p {
  color: #5c5c5c !important;
  margin-bottom: 1rem !important;
}

@keyframes sa-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sa-glow {
  from {
    opacity: 0.45;
    transform: scale(1);
  }
  to {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-feature-card,
  .sa-city-chip,
  .sa-card,
  .sa-county-block,
  .sa-home-actions,
  .cms-service-areas-section::before {
    animation: none !important;
  }
}

/* ===== brand-logo-panels.css ===== */
/* brand-logo-panels-v6 — stable sizes + visible seal; do not invert brand art */

.about-brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}

@media (max-width: 1024px) {
  .about-brand-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-brand-grid .subtitle {
    text-align: center !important;
  }

  .about-brand-grid .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-brand-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-brand-grid .subtitle {
    text-align: center !important;
  }

  .about-brand-grid .btn {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 280px);
  }

  .about-brand-grid .brand-mark-inline,
  .brand-mark.about-brand-logos.brand-mark-inline {
    flex-wrap: wrap;
  }
}

.brand-badge,
.brand-mark-sub,
.brand-mark-sub img,
.about-brand-logos .brand-badge,
.footer .brand-badge,
.site-footer .brand-badge,
.header .brand-badge,
.logo .brand-badge,
.team-hero-badge .brand-badge,
.page-hero-team .brand-badge,
.staff-login-panel .brand-badge,
.hub-brand .brand-badge,
.admin-login-brand .brand-badge,
.header .logo .brand-logo,
.header .logo img,
.logo .brand-logo,
.footer .brand-logo,
.site-footer .brand-logo,
.about-brand-logos .brand-logo,
.about-brand-grid .brand-logo {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  -webkit-filter: none !important;
}

.brand-logo,
.brand-badge,
.logo img,
.header .logo img,
.header .logo .brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  background: transparent !important;
}

.brand-logo-header,
.header .logo .brand-logo,
.header .logo img {
  max-height: 52px !important;
  max-width: min(220px, 52vw) !important;
  width: auto !important;
  height: auto !important;
}

.brand-logo-sm {
  max-height: 36px !important;
  max-width: 120px !important;
}

.brand-logo-md {
  max-height: 56px !important;
  max-width: 180px !important;
}

.brand-logo-lg {
  max-height: 96px !important;
  max-width: 240px !important;
}

.brand-logo-footer,
.footer .brand-logo,
.site-footer .brand-logo,
.footer-brand .brand-logo,
.footer .brand-mark-main,
.site-footer .brand-mark-main,
.footer-brand .brand-mark-main {
  max-height: 64px !important;
  max-width: 200px !important;
  width: auto !important;
  height: auto !important;
}

.brand-logo-about,
.about-brand-logos .brand-mark-main,
.about-brand-grid .brand-mark-main {
  max-height: 120px !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
}

.brand-logo-admin,
.hub-brand .brand-mark-main,
.admin-login-brand .brand-mark-main,
.staff-login-panel .brand-mark-main {
  max-height: 72px !important;
  max-width: 220px !important;
  width: auto !important;
  height: auto !important;
  margin-left: auto;
  margin-right: auto;
}

.brand-badge-sm,
.footer .brand-mark-sub,
.site-footer .brand-mark-sub,
.footer-brand .brand-mark-sub {
  max-height: 64px !important;
  max-width: 64px !important;
  width: auto !important;
  height: auto !important;
}

.brand-badge-md,
.team-hero-badge .brand-mark-sub {
  max-height: 80px !important;
  max-width: 80px !important;
}

.brand-badge-lg,
.about-brand-logos .brand-mark-sub,
.about-brand-grid .brand-mark-sub {
  max-height: 100px !important;
  max-width: 100px !important;
  width: auto !important;
  height: auto !important;
}

.hub-brand .brand-mark-sub,
.admin-login-brand .brand-mark-sub,
.staff-login-panel .brand-mark-sub {
  max-height: 64px !important;
  max-width: 64px !important;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .brand-logo-header,
  .header .logo .brand-logo,
  .header .logo img {
    max-height: 44px !important;
    max-width: min(168px, 58vw) !important;
  }
}

.about-brand-grid .brand-mark,
.team-hero-badge.brand-mark,
.brand-mark.about-brand-logos,
.page-hero-team .brand-mark {
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  border: 1px solid rgba(220, 220, 220, 0.22);
  border-radius: 22px;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  justify-self: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.about-brand-grid .brand-mark-inline,
.brand-mark.about-brand-logos.brand-mark-inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  flex-wrap: nowrap;
}

.about-brand-logos .brand-mark-main,
.about-brand-logos .brand-mark-sub,
.about-brand-grid .brand-mark-main,
.about-brand-grid .brand-mark-sub,
.team-hero-badge .brand-mark-main,
.team-hero-badge .brand-mark-sub {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  flex: 0 0 auto;
}

.about-brand-grid .brand-mark-stacked,
.brand-mark-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.page-hero-team .brand-mark {
  margin: 0 auto 1.25rem;
}

.header .logo {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  max-height: 56px;
  overflow: hidden;
}

.hub-brand,
.admin-login-brand,
.staff-login-panel .brand-mark {
  gap: 0.6rem !important;
  margin: 0 auto 0.85rem;
  max-width: 240px;
}

.hub-brand.brand-mark-stacked,
.admin-login-brand.brand-mark-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand .brand-mark,
.site-footer .brand-mark,
.footer .footer-brand .brand-mark-stacked {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: min(100%, 280px);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.footer .brand-mark-main,
.site-footer .brand-mark-main,
.footer-brand .brand-mark-main,
.footer .brand-mark-sub,
.site-footer .brand-mark-sub,
.footer-brand .brand-mark-sub {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  .about-brand-grid .brand-mark-inline,
  .brand-mark.about-brand-logos.brand-mark-inline {
    flex-direction: column;
  }

  .brand-badge-lg,
  .about-brand-logos .brand-mark-sub,
  .about-brand-grid .brand-mark-sub {
    max-height: 84px !important;
    max-width: 84px !important;
  }
}

/* ===== cms-pages-polish.css ===== */
/* cms-pages-polish-v1 — About / CMS / legal readability + layout */

.cms-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding-top: 1rem !important;
  padding-bottom: 0.85rem;
}

.page-hero .container,
.page-hero-legal .container {
  padding-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.page-hero h1,
.page-hero-legal h1 {
  margin: 0.35rem 0 0.85rem !important;
  max-width: 18ch;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-content {
  padding-top: clamp(2rem, 4.5vw, 3.25rem) !important;
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem) !important;
}

/* Soften empty-feeling short About body */
.page-content > .container.cms-page-body {
  min-height: 12rem;
}

.page-content > .container.cms-page-body p {
  margin: 0 0 1.1rem;
}

.page-content > .container.cms-page-body p:last-of-type {
  margin-bottom: 0;
}

.page-content > .container.cms-page-body:empty::before,
.page-content > .container.cms-page-body:has(> :only-child:empty)::before {
  content: "We're updating this page. Call (864) 436-3006 or request service online anytime.";
  display: block;
  color: #5c5c5c;
  line-height: 1.7;
}

.cms-page-cta {
  margin-top: -0.5rem;
}

.cms-page-cta .container {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0.5rem;
  background: transparent;
}

.page-content > .container.cms-page-body::after {
  content: "";
  display: block;
  margin-top: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent);
}

.cms-page-cta .btn {
  min-width: 0;
}

.cms-page-cta .btn-outline {
  background: #ffffff !important;
}

@media (max-width: 768px) {
  .page-hero h1,
  .page-hero-legal h1 {
    max-width: none;
  }

  .cms-page-cta .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cms-page-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-hero h1,
  .page-hero-legal h1 {
    max-width: none;
  }

  .page-content > .container.cms-page-body {
    border-radius: 14px;
  }
}

/* ===== service-areas-map.css ===== */
/* service-areas-map-v1 — service detail pages: map banner + embed + cities + work photos */

.service-areas-map {
  background: #f3f3f3 !important;
  color: #2e2e2e !important;
  padding-top: clamp(2.5rem, 5vw, 3.75rem) !important;
  padding-bottom: clamp(2.75rem, 6vw, 4rem) !important;
}

.service-areas-map .section-label {
  color: #6a6a6a !important;
}

.service-areas-map h2 {
  color: #1a1a1a !important;
  margin: 0.35rem 0 0.75rem !important;
}

.service-areas-map-lead {
  color: #5c5c5c !important;
  max-width: 46rem;
  margin: 0 0 1.75rem !important;
  line-height: 1.65;
}

.service-areas-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.service-areas-map-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.service-areas-map-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  background: #0a0a0a;
  object-fit: cover;
  max-height: 280px;
}

.service-areas-map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  background: #e8e8e8;
}

.service-areas-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.service-areas-map-side {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.service-areas-map-side h3 {
  margin: 0 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6a6a !important;
}

.service-areas-map-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-areas-map-cities a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1a1a1a !important;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.service-areas-map-cities a:hover {
  background: #1c1c1c !important;
  border-color: #1c1c1c !important;
  color: #f0f0f0 !important;
  transform: translateY(-1px);
}

.service-areas-map-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.service-areas-map-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #111;
  aspect-ratio: 4 / 3;
}

.service-areas-map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-areas-map-photo span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #f3f3f3 !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-areas-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .service-areas-map-grid {
    grid-template-columns: 1fr;
  }

  .service-areas-map-embed {
    padding-bottom: 68%;
  }
}

@media (max-width: 768px) {
  .service-areas-map-photos {
    grid-template-columns: 1fr;
  }

  .service-areas-map-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-areas-map-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-areas-map-banner {
    max-height: 200px;
  }
}

@media (max-width: 520px) {
  .service-areas-map-banner {
    max-height: 180px;
  }
}

/* ===== site-palette-balance.css ===== */
/* site-palette-balance-v13
   Site-wide white / silver / black system:
   - paper pages + ink text
   - charcoal chrome + silver text
   - remapped --color-* for light UI; restored on dark chrome only
   - v10/v11: readable ink across contact/blog/services/reviews/careers + leave-review/empty states
   - v12: silver/grey hover + selection (never black-on-black)
   - v13: nav-link hover scoped to dark chrome only */

:root {
  --palette-ink: #1a1a1a;
  --palette-ink-soft: #2e2e2e;
  --palette-mute: #5c5c5c;
  --palette-silver: #c8c8c8;
  --palette-silver-soft: #e6e6e6;
  --palette-silver-text: #d8d8d8;
  --palette-white: #fafafa;
  --palette-paper: #f3f3f3;
  --palette-steel: #dcdcdc;
  --palette-charcoal: #1c1c1c;
  --palette-night: #121212;
  --palette-border-light: rgba(0, 0, 0, 0.08);
  --palette-border-dark: rgba(255, 255, 255, 0.12);

  /* Bridge built dark-UI tokens → light paper so the whole project matches */
  --color-surface: #ffffff;
  --color-surface-elevated: #fafafa;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.14);
  --color-border-focus: rgba(0, 0, 0, 0.28);
  --color-grey-900: #1a1a1a;
  --color-grey-800: #2a2a2a;
  --color-grey-700: #3a3a3a;
  --color-grey-600: #4a4a4a;
  --color-grey-500: #5c5c5c;
  --color-grey-400: #6a6a6a;
  --color-grey-300: #3a3a3a;
  --color-grey-200: #e8e8e8;
  --color-grey-100: #f3f3f3;
  --color-accent: #1a1a1a;
  --color-accent-muted: rgba(0, 0, 0, 0.06);
  --color-accent-hover: rgba(0, 0, 0, 0.1);
  --color-info: #3a3a3a;
  --color-info-bg: rgba(0, 0, 0, 0.04);
  --color-info-border: rgba(0, 0, 0, 0.12);

  color-scheme: light;
}

html,
body {
  background: var(--palette-paper) !important;
  color: var(--palette-ink-soft) !important;
  color-scheme: light !important;
}

/* ---------- Global type: never pure white for body copy ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--palette-ink);
}

p,
li,
label,
.subtitle,
.section-title .subtitle,
.hero-lead,
.cms-page-body p,
.why-desc,
.service-why-text small {
  color: var(--palette-ink-soft);
}

a:not(.btn):not(.nav-link):not(.site-nav a):not(.admin-nav a):not(.hub-nav a) {
  color: #4a4a4a;
}

a:not(.btn):not(.nav-link):not(.site-nav a):not(.admin-nav a):not(.hub-nav a):hover {
  color: #111;
}

.site-header,
.header,
.topbar,
.site-topbar,
.footer,
.site-footer,
.mobile-nav,
.mobile-drawer,
.admin-sidebar,
.hub-sidebar,
.portal-header,
.hero,
.page-hero,
.service-area-hero,
.cta-section,
.section.cta-section,
.cookie-consent-panel,
.nav-dropdown-menu {
  --color-surface: #141414;
  --color-surface-elevated: #1a1a1a;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --color-grey-700: #9a9a9a;
  --color-grey-600: #b0b0b0;
  --color-grey-500: #c4c4c4;
  --color-grey-400: #d0d0d0;
  --color-grey-300: #e0e0e0;
  --color-grey-200: #ececec;
  --color-silver: #e6e6e6;
  --color-white: #ffffff;
  --color-accent: #e6e6e6;
  --color-accent-muted: rgba(200, 200, 200, 0.1);
  --color-accent-hover: rgba(200, 200, 200, 0.18);
  --color-info: #c8c8c8;
  --color-info-bg: rgba(200, 200, 200, 0.1);
  --color-info-border: rgba(200, 200, 200, 0.22);
}

/* ---------- Chrome bars: black + silver text ---------- */
.site-header,
.header,
.topbar,
.site-topbar,
.footer,
.site-footer,
.mobile-nav,
.mobile-drawer,
.admin-sidebar,
.hub-sidebar,
.portal-header {
  background: var(--palette-night) !important;
  color: var(--palette-silver-text) !important;
  border-color: var(--palette-border-dark) !important;
}

.site-header a,
.header a,
.topbar a,
.site-topbar a,
.footer a,
.site-footer a,
.mobile-nav a,
.mobile-drawer a,
.portal-header a,
.portal-home-link {
  color: var(--palette-silver-text) !important;
}

.site-header a:hover,
.header a:hover,
.topbar a:hover,
.footer a:hover,
.site-footer a:hover,
.portal-header a:hover {
  color: var(--palette-silver-soft) !important;
}

.site-header h1,
.site-header h2,
.footer h3,
.footer h4,
.site-footer h3,
.site-footer h4 {
  color: var(--palette-silver-soft) !important;
}

/* Homepage top bar: keep emergency status clearly readable on black. */
.topbar .topbar-left,
.topbar .topbar-left > span:not(.topbar-badge) {
  color: #e8e8e8 !important;
}

.topbar .topbar-badge {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.footer p,
.site-footer p,
.footer li,
.site-footer li,
.footer small,
.site-footer small {
  color: #c2c2c2 !important;
}

/* ---------- Footer + CTA: force readable silver/white on black ---------- */
.footer,
.site-footer,
.cta-section,
.section.cta-section {
  --color-grey-700: #9a9a9a;
  --color-grey-600: #b0b0b0;
  --color-grey-500: #c4c4c4;
  --color-grey-400: #d0d0d0;
  --color-grey-300: #e0e0e0;
  --color-silver: #e6e6e6;
  --color-white: #ffffff;
}

.footer,
.site-footer {
  background: #0d0d0d !important;
  color: #d8d8d8 !important;
}

.footer h3,
.footer h4,
.site-footer h3,
.site-footer h4,
.footer .footer-brand p,
.footer-brand p,
.footer-contact p,
.footer-contact strong,
.footer-contact span,
.footer-copyright,
.footer-policies a,
.footer-legal-extra a,
.footer-legal-extra .cookie-settings-link,
.footer .social-links-label {
  color: #e8e8e8 !important;
}

.footer a,
.site-footer a,
.footer-links a,
.footer-policies a,
.footer .social-links-list a {
  color: #cfcfcf !important;
}

.footer a:hover,
.site-footer a:hover,
.footer-links a:hover,
.footer-policies a:hover,
.footer .social-links-list a:hover {
  color: #ffffff !important;
}

.footer h4,
.site-footer h4 {
  color: #f2f2f2 !important;
  letter-spacing: 0.04em;
}

.footer-trust span,
.footer-trust li,
.footer .trust-item,
.footer .trust-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #e0e0e0 !important;
}

.footer-trust span:hover {
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.footer-contact a {
  color: #ffffff !important;
}

/* ---------- Footer: compact directory + untouched original logos ---------- */
.footer .footer-grid,
.site-footer .footer-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(0, 0.7fr)
    minmax(0, 0.7fr)
    minmax(0, 1.55fr)
    minmax(0, 0.9fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
}

.footer .footer-service-areas {
  min-width: 0;
}

.footer .footer-area-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.25rem;
  margin: 0;
}

.footer .footer-area-links li {
  margin: 0;
  min-width: 0;
}

.footer .footer-area-links a {
  display: block;
  padding: 0.12rem 0;
  line-height: 1.35;
}

.footer .footer-area-all {
  grid-column: 1 / -1;
  padding-bottom: 0.35rem;
  margin-bottom: 0.15rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .footer-area-all a {
  color: #ffffff !important;
  font-weight: 700;
}

.footer .footer-brand .brand-mark-stacked {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: min(100%, 270px);
}

.footer .footer-brand .brand-mark-main {
  display: block;
  width: min(185px, 70%);
  height: auto;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.footer .footer-brand .brand-mark-sub {
  display: block;
  width: min(76px, 28%);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .footer .footer-grid,
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer .footer-brand,
  .footer .footer-service-areas {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer .footer-grid,
  .site-footer .footer-grid,
  .footer .footer-area-links {
    grid-template-columns: 1fr;
  }

  .footer .footer-brand,
  .footer .footer-service-areas,
  .footer .footer-area-all {
    grid-column: auto;
  }

  .footer .footer-brand .brand-mark-stacked {
    width: min(100%, 240px);
  }
}

.footer .btn-primary,
.site-footer .btn-primary,
.cta-section .btn-primary {
  background: #f0f0f0 !important;
  color: #111111 !important;
  border-color: #f0f0f0 !important;
}

.footer .btn-primary:hover,
.site-footer .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #ffffff !important;
  color: #000000 !important;
}

.footer .btn-outline,
.footer .btn-silver,
.site-footer .btn-outline,
.site-footer .btn-silver,
.cta-section .btn-outline,
.cta-section .btn-silver {
  background: transparent !important;
  color: #ececec !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
}

.footer .btn-outline:hover,
.footer .btn-silver:hover,
.cta-section .btn-outline:hover,
.cta-section .btn-silver:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

.cta-section,
.section.cta-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  color: #d8d8d8 !important;
}

.cta-section h1,
.cta-section h2,
.cta-section h3 {
  color: #f3f3f3 !important;
}

.cta-section p,
.cta-section .subtitle,
.cta-section .section-lead {
  color: #c0c0c0 !important;
}

/* Footer logos: render the original transparent PNGs directly, with no plate. */
.footer .brand-mark,
.site-footer .brand-mark,
.footer-brand .brand-mark {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ---------- Hero: black plane, silver text ---------- */
.hero,
.page-hero,
.service-area-hero {
  background: var(--palette-night) !important;
  color: var(--palette-silver-text) !important;
}

.hero h1,
.hero h2,
.page-hero h1,
.page-hero h2,
.service-area-hero h1,
.service-area-hero h2 {
  color: var(--palette-silver-soft) !important;
}

.hero p,
.hero .hero-lead,
.hero .subtitle,
.page-hero p,
.page-hero .subtitle,
.service-area-hero p {
  color: #b5b5b5 !important;
}

.hero-badge,
.hero .hero-badge {
  color: var(--palette-silver) !important;
  border-color: rgba(200, 200, 200, 0.28) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.page-hero .section-label,
.page-hero-legal .section-label,
.service-area-hero .section-label,
.hero .section-label {
  color: #c8c8c8 !important;
}

/* ---------- Section rhythm: white ↔ silver ↔ charcoal ---------- */
.section {
  background: var(--palette-white) !important;
  color: var(--palette-ink-soft) !important;
}

.section-alt,
.cms-service-areas-section {
  background: linear-gradient(180deg, var(--palette-steel) 0%, var(--palette-silver-soft) 100%) !important;
  color: var(--palette-ink-soft) !important;
}

.section h1,
.section h2,
.section h3,
.section h4,
.section-alt h1,
.section-alt h2,
.section-alt h3,
.section-alt h4,
.cms-service-areas-section h1,
.cms-service-areas-section h2,
.cms-service-areas-section h3 {
  color: var(--palette-ink) !important;
}

.section p,
.section li,
.section .subtitle,
.section-alt p,
.section-alt li,
.section-alt .subtitle,
.cms-service-areas-section p,
.cms-service-areas-section li {
  color: var(--palette-ink-soft) !important;
}

.section-label {
  color: #6a6a6a !important;
}

.page-content {
  background: var(--palette-paper);
  color: var(--palette-ink-soft);
}

.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--palette-ink);
}

/* CTA must beat .section light-ink rules (class="section cta-section") */
.cta-section,
.section.cta-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  color: #d8d8d8 !important;
}

.section.cta-section h1,
.section.cta-section h2,
.section.cta-section h3,
.cta-section h1,
.cta-section h2,
.cta-section h3 {
  color: #f3f3f3 !important;
}

.section.cta-section p,
.section.cta-section li,
.section.cta-section .subtitle,
.section.cta-section .section-lead,
.cta-section p,
.cta-section li,
.cta-section .subtitle,
.cta-section .section-lead {
  color: #c0c0c0 !important;
}

/* Cards on light surfaces */
.section .card,
.section-alt .card,
.page-content .card,
.cms-service-areas-section .card,
.careers-stat,
.contact-info-card,
.contact-hours-card,
.contact-hub-card {
  background: #ffffff !important;
  border: 1px solid var(--palette-border-light) !important;
  color: var(--palette-ink-soft) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.section .card h2,
.section .card h3,
.section-alt .card h2,
.section-alt .card h3,
.page-content .card h2,
.page-content .card h3 {
  color: var(--palette-ink) !important;
}

.section .card p,
.section-alt .card p,
.page-content .card p,
.careers-stat span {
  color: var(--palette-mute) !important;
}

.careers-stat strong {
  color: var(--palette-ink) !important;
}

.section .form-group label,
.section-alt .form-group label,
.page-content .form-group label,
.contact-form label {
  color: var(--palette-ink) !important;
}

.section input:not([type="checkbox"]):not([type="radio"]),
.section textarea,
.section-alt input:not([type="checkbox"]):not([type="radio"]),
.section-alt textarea,
.page-content input:not([type="checkbox"]):not([type="radio"]),
.page-content textarea,
.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form textarea {
  background: #ffffff !important;
  color: var(--palette-ink) !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
}

.promo-banner,
.join-banner {
  background: var(--palette-charcoal) !important;
  color: var(--palette-silver-text) !important;
  border-color: var(--palette-border-dark) !important;
}

.promo-banner h2,
.promo-banner h3,
.join-banner h2,
.join-banner h3 {
  color: var(--palette-silver-soft) !important;
}

.promo-banner p,
.join-banner p {
  color: #b5b5b5 !important;
}

.promo-banner-bar {
  background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%) !important;
  color: var(--palette-silver-text) !important;
}

/* =========================================================
   HUB / PORTAL / ADMIN / DASH — same light palette
   ========================================================= */

.hub-page,
.hub-shell,
.hub-gateway,
.admin,
.admin-main,
.admin-page,
.admin-login,
.portal,
.portal-main,
.dash-page,
.unified-login,
.unified-login-panel {
  background: var(--palette-paper) !important;
  color: var(--palette-ink-soft) !important;
  color-scheme: light !important;
}

.hub-gateway-intro h1,
.hub-page h1,
.admin-header h1,
.dash-header h1,
.portal-main h1 {
  color: var(--palette-ink) !important;
  -webkit-text-fill-color: var(--palette-ink) !important;
  background: none !important;
}

.hub-lead,
.dash-lead,
.dash-greeting,
.dash-section-title,
.dash-record-meta,
.dash-empty p,
.dash-help-card p {
  color: var(--palette-mute) !important;
}

.hub-role-card,
.admin-login-form,
.unified-login-form,
.staff-login-panel,
.dash-metric,
.dash-quick-link,
.dash-help-card,
.dash-record-card,
.dash-stat-bar,
.insight-card,
.card,
.table-wrap {
  background: #ffffff !important;
  border: 1px solid var(--palette-border-light) !important;
  color: var(--palette-ink-soft) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  backdrop-filter: none !important;
}

.hub-role-card h2,
.hub-role-card h3,
.dash-metric-value,
.dash-record-title,
.dash-empty h3,
.dash-help-card h3,
.dash-quick-link strong,
.insight-card h4,
.dash-stat-bar-item strong {
  color: var(--palette-ink) !important;
}

.dash-metric-label,
.dash-quick-link,
.insight-card p,
.insight-card .type,
.dash-table th,
.admin-table th {
  color: var(--palette-mute) !important;
}

.dash-table td,
.admin-table td,
.dash-record-body,
.dash-timeline-body {
  color: var(--palette-ink-soft) !important;
}

.dash-empty {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

.hub-guest-banner,
.hub-switch-banner,
.dash-session-strip,
.admin-banner {
  background: #ffffff !important;
  border: 1px solid var(--palette-border-light) !important;
  color: var(--palette-ink-soft) !important;
}

.hub-trust-row li {
  background: var(--palette-steel) !important;
  border-color: var(--palette-border-light) !important;
  color: var(--palette-mute) !important;
}

.hub-auth-footer,
.client-auth-links {
  color: var(--palette-mute) !important;
}

/* Forms / auth on hub */
.hub-page input:not([type="checkbox"]):not([type="radio"]),
.hub-page textarea,
.admin-login input:not([type="checkbox"]):not([type="radio"]),
.unified-login input:not([type="checkbox"]):not([type="radio"]),
.portal input:not([type="checkbox"]):not([type="radio"]),
.portal textarea,
.dash-page input:not([type="checkbox"]):not([type="radio"]),
.dash-page textarea {
  background: #ffffff !important;
  color: var(--palette-ink) !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
}

.hub-page label,
.admin-login label,
.unified-login label,
.portal label {
  color: var(--palette-ink) !important;
}

/* Buttons readable on light */
.btn-primary {
  background: var(--palette-charcoal) !important;
  color: var(--palette-silver-soft) !important;
  border-color: var(--palette-charcoal) !important;
}

.btn-primary:hover {
  background: #000 !important;
  color: #fff !important;
}

.btn-silver,
.btn-outline {
  background: #ffffff !important;
  color: var(--palette-ink) !important;
  border-color: rgba(0, 0, 0, 0.16) !important;
}

.btn-silver:hover,
.btn-outline:hover {
  background: var(--palette-steel) !important;
  color: var(--palette-ink) !important;
}

/* Dark chrome children keep silver text */
.admin-sidebar a,
.hub-sidebar a,
.hub-nav a,
.hub-sidebar-title,
.hub-user-chip,
.hub-sidebar-btn,
.portal-header a {
  color: var(--palette-silver-text) !important;
}

.admin-sidebar .btn-outline,
.hub-sidebar .btn-outline,
.hub-sidebar .btn-silver {
  background: transparent !important;
  color: var(--palette-silver-text) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

/* Cookie / misc panels */
.cookie-consent-panel {
  background: rgba(18, 18, 18, 0.96) !important;
  color: var(--palette-silver-text) !important;
}

.cookie-consent-title {
  color: var(--palette-silver-soft) !important;
}

.cookie-consent-copy {
  color: #b0b0b0 !important;
}

/* Soften leftover pure-white type tokens inside dash CSS */
.dash-metric-value,
.dash-empty h3,
.dash-record-title,
.dash-help-card h3,
.dash-quick-link strong,
.insight-card h4,
.dash-stat-bar-item strong {
  color: var(--palette-ink) !important;
}

.dash-quick-link:hover {
  background: var(--palette-white) !important;
  color: var(--palette-ink) !important;
  border-color: rgba(0, 0, 0, 0.16) !important;
}

.dash-quick-link:hover strong {
  color: var(--palette-ink) !important;
}

.dash-help-card a:hover {
  color: var(--palette-ink) !important;
}

[role="dialog"],
.modal,
.modal-content {
  background: #ffffff !important;
  color: var(--palette-ink) !important;
  border-color: var(--palette-border-light) !important;
}

/* ---------- FAQ (home teaser + /faq page) — no black-on-black ---------- */
.faq-item,
.home-faq-teaser .faq-item,
.faq-list .faq-item {
  background: #ffffff !important;
  border: 1px solid var(--palette-border-light) !important;
  color: var(--palette-ink) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05) !important;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(0, 0, 0, 0.16) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08) !important;
}

.faq-question,
.faq-question p,
.home-faq-teaser .faq-question,
.faq-list .faq-question,
button.faq-question {
  color: var(--palette-ink) !important;
  background: transparent !important;
}

.faq-question:hover,
button.faq-question:hover {
  color: #111 !important;
  background: rgba(0, 0, 0, 0.03) !important;
}

.faq-answer,
.home-faq-teaser .faq-answer,
.faq-list .faq-answer,
.faq-answer p {
  color: #444 !important;
  border-top: 1px solid var(--palette-border-light) !important;
}

.home-faq-teaser .faq-answer[style],
.faq-item .faq-answer[style] {
  color: #444 !important;
}

.faq-icon {
  color: #5a5a5a !important;
  background: #f0f0f0 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.faq-empty h3,
.home-faq-teaser h2 {
  color: var(--palette-ink) !important;
}

.faq-empty p,
.faq-cta p {
  color: var(--palette-mute) !important;
}

.faq-cta {
  border-top-color: var(--palette-border-light) !important;
}

.home-faq-teaser .section-label {
  color: #6a6a6a !important;
}

/* ---------- CMS / About / legal pages — readable ink on white ---------- */
.cms-breadcrumb {
  background: var(--palette-paper, #f3f3f3) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cms-breadcrumb,
.cms-breadcrumb span,
.cms-breadcrumb .container {
  color: #5c5c5c !important;
}

.cms-breadcrumb a {
  color: #3a3a3a !important;
  text-decoration: none;
  font-weight: 600;
}

.cms-breadcrumb a:hover {
  color: #111 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content {
  background: var(--palette-paper, #f3f3f3) !important;
  color: var(--palette-ink-soft, #2e2e2e) !important;
}

.page-content .content-body,
.page-content .content-body p,
.page-content .content-body li {
  color: var(--palette-ink-soft, #2e2e2e) !important;
}

.page-content .content-body h1,
.page-content .content-body h2,
.page-content .content-body h3,
.page-content .content-body h4,
.page-content .content-body strong {
  color: var(--palette-ink, #1a1a1a) !important;
  border-top-color: rgba(0, 0, 0, 0.08) !important;
}

.cms-page-body,
.cms-page-body p,
.cms-page-body li {
  color: var(--palette-ink-soft, #2e2e2e) !important;
}

.cms-page-body h1,
.cms-page-body h2,
.cms-page-body h3,
.cms-page-body h4,
.cms-page-body strong {
  color: var(--palette-ink, #1a1a1a) !important;
}

.cms-page-body a {
  color: #3a3a3a !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cms-page-body a:hover {
  color: #111 !important;
}

.page-content .cms-page-body,
.page-content .card .cms-page-body {
  background: transparent !important;
}

.page-content > .container.cms-page-body {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px;
  padding: clamp(1.5rem, 3.5vw, 2.35rem) clamp(1.35rem, 3vw, 2.25rem);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  color: var(--palette-ink-soft, #2e2e2e) !important;
  line-height: 1.75;
  font-size: 1.05rem;
}

.page-content > .container.cms-page-body p:last-child {
  margin-bottom: 0;
}

.page-content .card:has(.cms-page-body),
.legal-page-card,
.cms-legal-wrap {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--palette-ink-soft, #2e2e2e) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.page-hero-legal,
.page-hero {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%) !important;
}

.page-hero .container > p,
.page-hero-legal .container > p {
  max-width: 42rem;
  color: #c4c4c4 !important;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.65;
}

/* ---------- v6 consistency: hub SA cards, nav menu, portals, status ---------- */
.nav-dropdown-menu {
  background: var(--palette-night) !important;
  color: var(--palette-silver-text) !important;
  border: 1px solid var(--palette-border-dark) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
}

.nav-dropdown-menu a,
.nav-dropdown-item {
  color: var(--palette-silver-text) !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-item:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.client-shell,
.portal-shell,
.employee-shell {
  background: var(--palette-paper) !important;
  color: var(--palette-ink-soft) !important;
}

.sa-tab {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  background: #ffffff !important;
  color: var(--palette-mute) !important;
}

.sa-tab:hover {
  border-color: rgba(0, 0, 0, 0.2) !important;
  color: var(--palette-ink) !important;
}

.sa-tab.is-active {
  background: var(--palette-charcoal) !important;
  color: #f0f0f0 !important;
  border-color: var(--palette-charcoal) !important;
}

.sa-county-title {
  color: var(--palette-mute) !important;
}

.sa-county-title::after {
  background: rgba(0, 0, 0, 0.1) !important;
}

.sa-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06) !important;
  color: var(--palette-ink-soft) !important;
}

.sa-card:hover {
  border-color: rgba(0, 0, 0, 0.16) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1) !important;
}

.sa-card-city {
  color: var(--palette-ink) !important;
}

.sa-card-meta,
.sa-card-excerpt,
.sa-directory-footer p {
  color: var(--palette-mute) !important;
}

.sa-directory-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.status-new,
.status-interviewed {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
  color: #2e2e2e !important;
}

.status-completed,
.status-hired {
  background: rgba(5, 150, 105, 0.1) !important;
  border-color: rgba(5, 150, 105, 0.28) !important;
  color: #047857 !important;
}

.status-contacted,
.status-reviewed {
  background: rgba(180, 120, 20, 0.1) !important;
  border-color: rgba(180, 120, 20, 0.28) !important;
  color: #92400e !important;
}

.status-rejected {
  background: rgba(185, 28, 28, 0.1) !important;
  border-color: rgba(185, 28, 28, 0.28) !important;
  color: #b91c1c !important;
}

.admin-notice--success {
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: rgba(5, 150, 105, 0.3) !important;
  color: #065f46 !important;
}

.admin-notice--error {
  background: rgba(185, 28, 28, 0.08) !important;
  border-color: rgba(185, 28, 28, 0.3) !important;
  color: #991b1b !important;
}

.admin-notice--warning {
  background: rgba(180, 120, 20, 0.08) !important;
  border-color: rgba(180, 120, 20, 0.3) !important;
  color: #92400e !important;
}

.admin-notice--info {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
  color: #2e2e2e !important;
}

.contact-portal-card,
.contact-login-card,
.careers-stat,
.careers-culture-quote,
.contact-hub-paused {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--palette-ink-soft) !important;
}

.careers-stat strong,
.careers-stat span,
.careers-culture-copy p,
.careers-culture-list li {
  color: var(--palette-ink-soft) !important;
}

.table-wrap table,
.admin-table,
.dash-table {
  color: var(--palette-ink-soft) !important;
}

.table-wrap th,
.admin-table th,
.dash-table th {
  color: var(--palette-ink) !important;
  background: #f7f7f7 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

.table-wrap td,
.admin-table td,
.dash-table td {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

/* Brand badges: never invert on dark plates (was washing out Commitment seal) */
.brand-badge,
.brand-mark-sub .brand-badge,
.about-brand-logos .brand-badge,
.footer .brand-badge,
.header .brand-badge {
  filter: none !important;
}

/* ---------- Homepage stats strip — was white-on-white after light token remap ---------- */
.stats-section {
  background: #121212 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e8e8e8 !important;
  --color-white: #ffffff;
  --color-grey-500: #b8b8b8;
  --color-border: rgba(255, 255, 255, 0.14);
}

.stats-item-value,
.stats-section .stats-item-value {
  color: #ffffff !important;
}

.stats-item-label,
.stats-section .stats-item-label {
  color: #c0c0c0 !important;
}

.stats-item:not(:last-child):after {
  background: rgba(255, 255, 255, 0.16) !important;
}

/* About page mini-stats on light cards */
.about-stats-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.about-stat-value {
  color: #121212 !important;
}

.about-stat-label {
  color: #5c5c5c !important;
}

/* Team page stats strip — same white-on-white bug as homepage stats */
.team-stats-strip {
  background: #121212 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e8e8e8 !important;
  --color-white: #ffffff;
  --color-grey-500: #b8b8b8;
  --color-border: rgba(255, 255, 255, 0.14);
}

.team-stat strong {
  color: #ffffff !important;
}

.team-stat span {
  color: #c0c0c0 !important;
}

.team-stat {
  border-right-color: rgba(255, 255, 255, 0.14) !important;
}

.team-empty h2,
.team-empty h3,
.team-card-body h3,
.team-card-name,
.team-card-role {
  color: var(--palette-ink, #1a1a1a) !important;
}

.team-card-body p,
.team-card-bio,
.team-empty p {
  color: var(--palette-ink-soft, #2e2e2e) !important;
}

.team-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--palette-ink-soft, #2e2e2e) !important;
}

/* ========== v10: site-wide readable ink on light surfaces ========== */

/* Paper strips that still used white titles (trust / about / careers) */
.trust-strip,
.service-trust-strip,
.about-highlights-section,
.careers-perks-strip,
.careers-stats-section {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #2e2e2e !important;
}

.trust-item strong,
.service-trust-item strong,
.about-highlight-title,
.careers-perk strong {
  color: #1a1a1a !important;
}

.trust-item span,
.trust-item p,
.service-trust-item span,
.about-highlight-text,
.careers-perk span,
.careers-perk p {
  color: #5c5c5c !important;
}

/* Contact */
.contact-info-value,
a.contact-info-value,
.contact-hours-val,
.contact-info-card strong,
.contact-hours-card strong {
  color: #1a1a1a !important;
}

a.contact-info-value:hover {
  color: #000 !important;
}

.contact-hours-day,
.contact-emergency-text,
.contact-form-track-copy,
.hub-guest-banner p,
.client-request-panel-note {
  color: #5c5c5c !important;
}

.contact-info-label,
.contact-hours-label {
  color: #6a6a6a !important;
}

/* Blog */
.blog-featured-title,
.blog-card-title,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-title,
.blog-hero h1 {
  color: #1a1a1a !important;
}

.blog-featured-excerpt,
.blog-post-excerpt,
.blog-post-content,
.blog-post-content p,
.blog-card-excerpt {
  color: #2e2e2e !important;
}

.blog-read-more,
.blog-post-content a,
.blog-meta,
.blog-card-meta {
  color: #4a4a4a !important;
}

.blog-featured:hover .blog-read-more,
.blog-card:hover .blog-read-more,
.blog-post-content a:hover {
  color: #111 !important;
}

.blog-card,
.blog-featured,
.blog-post-article {
  background: #ffffff !important;
  color: #2e2e2e !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Services detail + cards */
.service-block h2,
.service-main h2,
.service-intro h2 {
  color: #1a1a1a !important;
}

.service-link,
.service-scroll-cta {
  color: #3a3a3a !important;
}

.service-card:hover .service-link,
.service-scroll-cta:hover {
  color: #111 !important;
}

.service-checklist li,
.service-why-grid li,
.service-reviews blockquote,
.service-hero-lead,
.service-lead-paragraph,
.service-chip-row li {
  color: #2e2e2e !important;
}

.service-related a {
  color: #3a3a3a !important;
}

.service-related a:hover,
.service-related a.is-current {
  color: #111 !important;
  background: rgba(0, 0, 0, 0.04) !important;
}

.service-why-icon,
.why-check {
  color: #3a3a3a !important;
}

.service-breadcrumb a {
  color: #5c5c5c !important;
}

.service-breadcrumb [aria-current="page"] {
  color: #2e2e2e !important;
}

.service-card h3,
.service-card .service-title {
  color: #1a1a1a !important;
}

.service-card p {
  color: #2e2e2e !important;
}

/* Reviews */
.review-author,
.review-card cite,
.reviews-admin-step strong {
  color: #1a1a1a !important;
}

.review-card blockquote,
.reviews-google-cta p {
  color: #2e2e2e !important;
}

.review-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #2e2e2e !important;
}

.review-avatar {
  background: #ececec !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: #2e2e2e !important;
}

.reviews-filter-btn,
.faq-category-btn {
  color: #3a3a3a !important;
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

.reviews-filter-btn:hover,
.faq-category-btn:hover {
  color: #111 !important;
  border-color: rgba(0, 0, 0, 0.22) !important;
  background: #f5f5f5 !important;
}

.reviews-filter-btn.is-active,
.faq-category-btn.is-active {
  color: #f0f0f0 !important;
  background: #1c1c1c !important;
  border-color: #1c1c1c !important;
}

/* Team extras */
.team-card-title,
.team-specialties h3,
.team-intro {
  color: #1a1a1a !important;
}

.team-intro {
  color: #2e2e2e !important;
}

.team-avatar-initials {
  color: #2e2e2e !important;
}

.team-specialties li,
.team-cta p {
  color: #5c5c5c !important;
}

/* Careers / jobs */
.careers-open-count,
.job-salary,
.job-card-section-title,
.job-meta .job-meta-badge {
  color: #2e2e2e !important;
}

.job-meta .job-meta-badge {
  background: #f0f0f0 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.job-card-desc,
.job-card-full-desc,
.job-card-section-body,
.careers-empty p,
.job-apply-meta,
.job-apply-file-zone,
.job-apply-success-steps li {
  color: #2e2e2e !important;
}

.job-card,
.job-card-full {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #2e2e2e !important;
}

.job-card h2,
.job-card h3,
.job-card-full h1,
.job-card-full h2 {
  color: #1a1a1a !important;
}

.careers-culture-list li span {
  color: #3a3a3a !important;
}

/* Legal / leave-review body (hero stays dark via .page-hero) */
.legal-body p,
.legal-body li,
.legal-body {
  color: #2e2e2e !important;
}

.legal-body a,
.legal-sidebar-footer a {
  color: #3a3a3a !important;
}

.legal-body a:hover {
  color: #111 !important;
}

.legal-sidebar-link {
  color: #3a3a3a !important;
}

.legal-sidebar-link.is-active {
  color: #111 !important;
  background: #f0f0f0 !important;
  border-color: rgba(0, 0, 0, 0.16) !important;
}

.leave-review-hero p,
.leave-review-step {
  color: #c0c0c0 !important;
}

.leave-review-form label,
.leave-review-form p,
.leave-review-card h2,
.leave-review-card h3 {
  color: #1a1a1a !important;
}

.leave-review-card {
  background: #ffffff !important;
  color: #2e2e2e !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

/* ========== v11: leave-review + empty states + residual polish ========== */
.leave-review-hero {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e8e8e8 !important;
}

.leave-review-hero h1,
.leave-review-hero h2 {
  color: #f3f3f3 !important;
}

.leave-review-hero p {
  color: #c0c0c0 !important;
}

.leave-review-step {
  color: #5c5c5c !important;
}

.leave-review-step-num {
  background: #1c1c1c !important;
  color: #f0f0f0 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.leave-review-google-btn {
  background: #1c1c1c !important;
  color: #f0f0f0 !important;
  border-color: #1c1c1c !important;
}

.leave-review-google-btn:hover {
  background: #000 !important;
  color: #fff !important;
}

.gallery-empty,
.reviews-empty,
.team-empty,
.faq-empty,
.blog-empty {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.gallery-empty h3,
.reviews-empty h3,
.team-empty h2,
.team-empty h3,
.faq-empty h3,
.blog-empty h3 {
  color: #1a1a1a !important;
}

.gallery-empty p,
.reviews-empty p,
.team-empty p,
.faq-empty p,
.blog-empty p {
  color: #5c5c5c !important;
}

.team-empty-actions {
  gap: 0.85rem !important;
}

.team-empty-actions .btn {
  min-width: 0;
}

@media (max-width: 768px) {
  .team-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .team-empty-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.promo-banner,
.join-banner {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%) !important;
  color: #e8e8e8 !important;
}

.promo-banner h2,
.promo-banner h3,
.join-banner h2,
.join-banner h3,
.section .promo-banner h2,
.section .promo-banner h3,
.section-alt .promo-banner h2,
.section .join-banner h2,
.section .join-banner h3 {
  color: #f3f3f3 !important;
  -webkit-text-fill-color: #f3f3f3 !important;
}

.promo-banner p,
.join-banner p {
  color: #c0c0c0 !important;
}

.not-found-page h1,
.not-found-title {
  color: #1a1a1a !important;
}

.not-found-desc {
  color: #5c5c5c !important;
}

.hud-strip,
.live-status-bar {
  color: #2e2e2e !important;
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.hero .hud-strip .hud-strip-item,
.hero .hud-strip .hud-readout,
.hero .hud-strip .hud-readout--accent {
  color: #1a1a1a !important;
  opacity: 1 !important;
}

.hero .hud-strip .hud-strip-divider {
  background: rgba(0, 0, 0, 0.18) !important;
}

/* Forms / misc public */
.form-group label,
.section-title .subtitle,
.not-found-desc,
.not-found-link {
  color: #2e2e2e !important;
}

.tag {
  color: #2e2e2e !important;
  background: #f0f0f0 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.why-item strong,
.why-title,
.section .why-item h3 {
  color: #1a1a1a !important;
}

.why-desc,
.service-why-text small {
  color: #5c5c5c !important;
}

/* Global link default on paper (exclude chrome + buttons) */
.section a:not(.btn):not(.nav-link),
.page-content a:not(.btn),
.blog-post-content a,
.cms-page-body a {
  color: #3a3a3a !important;
}

.section a:not(.btn):hover,
.page-content a:not(.btn):hover {
  color: #111 !important;
}

/* Safety: any heading inside paper cards */
.card h1,
.card h2,
.card h3,
.card h4,
.card strong,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  color: #1a1a1a !important;
}

.card p,
.card li,
.page-content p,
.page-content li {
  color: #2e2e2e !important;
}

/* Keep intentional dark overlays readable (do not ink these) */
.gallery-item-title,
.gallery-lightbox-caption p,
.work-showcase-caption,
.work-showcase-caption span,
.promo-link,
.promo-banner h1,
.promo-banner h2,
.promo-banner h3,
.promo-banner .section-label,
.section .promo-banner h2,
.section .promo-banner h3,
.join-banner h2,
.join-banner h3,
.cookie-consent-title,
.stats-item-value,
.team-stat strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.page-hero h1,
.page-hero h2,
.hero h1,
.cta-section h2 {
  color: #f3f3f3 !important;
}

.page-hero p,
.hero-lead,
.cta-section p {
  color: #c0c0c0 !important;
}

/* ---------- v12: silver / grey hover + selection (never black-on-black) ---------- */
::selection,
::-moz-selection {
  background: #c8c8c8 !important;
  color: #111111 !important;
}

.header ::selection,
.footer ::selection,
.site-footer ::selection,
.hero ::selection,
.cta-section ::selection,
.topbar ::selection,
.nav-dropdown-menu ::selection {
  background: #d0d0d0 !important;
  color: #111111 !important;
}

.btn-primary:hover,
.btn-primary:hover:not(:disabled) {
  background: #3a3a3a !important;
  color: #f0f0f0 !important;
  border-color: #5a5a5a !important;
}

.footer .btn-primary:hover,
.site-footer .btn-primary:hover,
.cta-section .btn-primary:hover,
.hero .btn-primary:hover {
  background: #e8e8e8 !important;
  color: #111111 !important;
  border-color: #e8e8e8 !important;
}

.btn-silver:hover,
.btn-outline:hover,
.btn-outline:hover:not(:disabled) {
  background: #dcdcdc !important;
  color: #1a1a1a !important;
  border-color: #c0c0c0 !important;
}

.footer .btn-outline:hover,
.footer .btn-silver:hover,
.site-footer .btn-outline:hover,
.site-footer .btn-silver:hover,
.cta-section .btn-outline:hover,
.cta-section .btn-silver:hover,
.hero .btn-outline:hover,
.header .btn-outline:hover {
  background: rgba(220, 220, 220, 0.16) !important;
  color: #f2f2f2 !important;
  border-color: rgba(220, 220, 220, 0.55) !important;
}

.site-header a:hover,
.header a:hover,
.topbar a:hover,
.footer a:hover,
.site-footer a:hover,
.mobile-nav a:hover,
.mobile-drawer a:hover,
.site-header .nav-link:hover,
.header .nav-link:hover,
.nav-dropdown-item:hover,
.footer-links a:hover,
.portal-header a:hover {
  color: #eaeaea !important;
  background-color: rgba(200, 200, 200, 0.12) !important;
}

.site-header .nav-link:hover,
.site-header .nav-link.active,
.header .nav-link:hover,
.header .nav-link.active {
  color: #f5f5f5 !important;
}

/* ===== public-site-enhance.css ===== */
/* public-site-enhance-v3
   Premium public polish on the existing silver/black AAP system.
   Atmosphere, type hierarchy, hero presence, section rhythm, CTAs.
   Does not touch logo assets. */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --pub-ink: #141414;
  --pub-ink-soft: #2a2a2a;
  --pub-mute: #5a5a5a;
  --pub-paper: #f2f2f0;
  --pub-surface: #ffffff;
  --pub-border: rgba(0, 0, 0, 0.09);
  --pub-border-md: rgba(0, 0, 0, 0.15);
  --pub-radius: 14px;
  --pub-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  --pub-shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.1);
  --pub-touch: 46px;
  --pub-header-offset: 76px;
  --pub-display: "Archivo", "Arial Narrow", sans-serif;
  --pub-body: "Source Sans 3", "Segoe UI", sans-serif;
  --pub-accent-line: linear-gradient(90deg, #1a1a1a 0%, #9a9a9a 55%, transparent 100%);
  --pub-chrome: linear-gradient(165deg, #1a1a1a 0%, #2a2a2a 45%, #151515 100%);
}

/* Type system */
body:not(:has(.admin)):not(:has(.client-shell)) {
  font-family: var(--pub-body) !important;
  font-size: 1.02rem;
  letter-spacing: 0.005em;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(0, 0, 0, 0.04), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(0, 0, 0, 0.035), transparent 50%),
    var(--pub-paper) !important;
}

body:not(:has(.admin)) h1,
body:not(:has(.admin)) h2,
body:not(:has(.admin)) h3,
body:not(:has(.admin)) .hero h1,
body:not(:has(.admin)) .page-hero h1 {
  font-family: var(--pub-display) !important;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--pub-ink) !important;
}

body:not(:has(.admin)) .section-label,
body:not(:has(.admin)) .eyebrow {
  font-family: var(--pub-display) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #6a6a6a !important;
}

/* Skip link */
.aap-skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10000;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: #111;
  color: #f5f5f5;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.aap-skip-link:focus,
.aap-skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #c8c8c8;
  outline-offset: 2px;
}

html {
  scroll-padding-top: calc(var(--pub-header-offset) + 0.5rem);
  scroll-behavior: smooth;
}

body:not(:has(.admin)) .section {
  padding-block: clamp(2.75rem, 6vw, 5rem);
  position: relative;
}

body:not(:has(.admin)) .container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header chrome */
body:not(:has(.admin)) .site-header,
body:not(:has(.admin)) header.site-header {
  backdrop-filter: blur(12px);
  background: rgba(18, 18, 18, 0.92) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body:not(:has(.admin)) .site-header .nav-link,
body:not(:has(.admin)) .site-header a.nav-link {
  color: #e4e4e4 !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.15s ease, background 0.15s ease;
}

body:not(:has(.admin)) .site-header .nav-link:hover,
body:not(:has(.admin)) .site-header a.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

/* Hero — full presence on desktop; fluid on tablet/phone (see media below) */
body:not(:has(.admin)) .hero,
body:not(:has(.admin)) .page-hero,
body:not(:has(.admin)) .service-area-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  isolation: isolate;
}

@media (max-width: 968px) {
  body:not(:has(.admin)) .hero,
  body:not(:has(.admin)) .page-hero,
  body:not(:has(.admin)) .service-area-hero {
    min-height: auto;
    padding-top: clamp(2.5rem, 8vw, 4rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
    align-items: flex-start;
  }
}

body:not(:has(.admin)) .hero::after,
body:not(:has(.admin)) .page-hero::after,
body:not(:has(.admin)) .service-area-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.45) 48%, rgba(8, 8, 8, 0.25) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 42%);
}

body:not(:has(.admin)) .hero > *,
body:not(:has(.admin)) .page-hero > *,
body:not(:has(.admin)) .service-area-hero > * {
  position: relative;
  z-index: 1;
}

body:not(:has(.admin)) .hero h1,
body:not(:has(.admin)) .page-hero h1,
body:not(:has(.admin)) .service-area-hero h1 {
  color: #f7f7f7 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  max-width: 16ch;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem) !important;
}

body:not(:has(.admin)) .hero p,
body:not(:has(.admin)) .hero .hero-lead,
body:not(:has(.admin)) .hero .subtitle,
body:not(:has(.admin)) .page-hero p,
body:not(:has(.admin)) .page-hero .subtitle,
body:not(:has(.admin)) .service-area-hero p {
  color: #d8d8d8 !important;
  max-width: 38ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
}

body:not(:has(.admin)) .hero .section-label,
body:not(:has(.admin)) .page-hero .section-label {
  color: #c8c8c8 !important;
}

/* Section titles with silver accent rule */
body:not(:has(.admin)) .section > .container > h2,
body:not(:has(.admin)) .section-header h2,
body:not(:has(.admin)) .section .section-title {
  position: relative;
  padding-bottom: 0.65rem;
  margin-bottom: 1.25rem;
}

body:not(:has(.admin)) .section > .container > h2::after,
body:not(:has(.admin)) .section-header h2::after,
body:not(:has(.admin)) .section .section-title::after {
  content: "";
  display: block;
  width: min(7rem, 40%);
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: var(--pub-accent-line);
}

/* Alternating section atmosphere */
body:not(:has(.admin)) .section-alt,
body:not(:has(.admin)) .section.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.55)),
    var(--pub-paper) !important;
  border-block: 1px solid var(--pub-border);
}

/* Interactive surfaces — lift without “card spam” in hero */
body:not(:has(.admin)) .service-card,
body:not(:has(.admin)) .blog-card,
body:not(:has(.admin)) .review-card,
body:not(:has(.admin)) .area-card,
body:not(:has(.admin)) .team-card,
body:not(:has(.admin)) .faq-item,
body:not(:has(.admin)) .gallery-item {
  background: var(--pub-surface);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius);
  box-shadow: var(--pub-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body:not(:has(.admin)) .service-card:hover,
body:not(:has(.admin)) .blog-card:hover,
body:not(:has(.admin)) .review-card:hover,
body:not(:has(.admin)) .area-card:hover,
body:not(:has(.admin)) .team-card:hover,
body:not(:has(.admin)) .faq-item:hover,
body:not(:has(.admin)) .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--pub-shadow-lg);
  border-color: rgba(0, 0, 0, 0.18);
}

/* Buttons */
body:not(:has(.admin)) .btn,
body:not(:has(.admin)) a.btn,
body:not(:has(.admin)) button.btn {
  min-height: var(--pub-touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 11px;
  font-family: var(--pub-display) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body:not(:has(.admin)) .btn-primary,
body:not(:has(.admin)) a.btn-primary {
  background: linear-gradient(180deg, #2a2a2a, #111) !important;
  color: #f5f5f5 !important;
  border: 1px solid #0a0a0a !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

body:not(:has(.admin)) .btn-primary:hover,
body:not(:has(.admin)) a.btn-primary:hover {
  background: linear-gradient(180deg, #3a3a3a, #1a1a1a) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* Light surfaces: dark ink. Dark chrome overrides below. */
body:not(:has(.admin)) .btn-outline,
body:not(:has(.admin)) a.btn-outline,
body:not(:has(.admin)) .btn-silver {
  background: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
}

body:not(:has(.admin)) .btn-outline:hover,
body:not(:has(.admin)) a.btn-outline:hover,
body:not(:has(.admin)) .btn-silver:hover {
  background: #ececec !important;
  color: #111111 !important;
  border-color: rgba(0, 0, 0, 0.28) !important;
}

/* Dark chrome — never black text on charcoal */
body:not(:has(.admin)) .hero .btn-outline,
body:not(:has(.admin)) .page-hero .btn-outline,
body:not(:has(.admin)) .service-area-hero .btn-outline,
body:not(:has(.admin)) .hero .btn-silver,
body:not(:has(.admin)) .page-hero .btn-silver,
body:not(:has(.admin)) .cta-section .btn-outline,
body:not(:has(.admin)) .cta-section .btn-silver,
body:not(:has(.admin)) .site-footer .btn-outline,
body:not(:has(.admin)) .site-footer .btn-silver,
body:not(:has(.admin)) .footer .btn-outline,
body:not(:has(.admin)) .footer .btn-silver,
body:not(:has(.admin)) .promo-banner .btn-outline,
body:not(:has(.admin)) .promo-banner .btn-silver,
body:not(:has(.admin)) .join-banner .btn-outline,
body:not(:has(.admin)) .join-banner .btn-silver,
body:not(:has(.admin)) .sticky-call .btn-outline,
body:not(:has(.admin)) .sticky-call-bar .btn-outline,
body:not(:has(.admin)) .site-header .btn-outline,
body:not(:has(.admin)) .header .btn-outline {
  color: #f2f2f2 !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

body:not(:has(.admin)) .hero .btn-outline:hover,
body:not(:has(.admin)) .page-hero .btn-outline:hover,
body:not(:has(.admin)) .service-area-hero .btn-outline:hover,
body:not(:has(.admin)) .hero .btn-silver:hover,
body:not(:has(.admin)) .cta-section .btn-outline:hover,
body:not(:has(.admin)) .cta-section .btn-silver:hover,
body:not(:has(.admin)) .site-footer .btn-outline:hover,
body:not(:has(.admin)) .site-footer .btn-silver:hover,
body:not(:has(.admin)) .footer .btn-outline:hover,
body:not(:has(.admin)) .footer .btn-silver:hover,
body:not(:has(.admin)) .promo-banner .btn-outline:hover,
body:not(:has(.admin)) .join-banner .btn-outline:hover,
body:not(:has(.admin)) .sticky-call .btn-outline:hover,
body:not(:has(.admin)) .sticky-call-bar .btn-outline:hover,
body:not(:has(.admin)) .site-header .btn-outline:hover,
body:not(:has(.admin)) .header .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
}

body:not(:has(.admin)) .btn:focus-visible,
body:not(:has(.admin)) a:focus-visible,
body:not(:has(.admin)) input:focus-visible,
body:not(:has(.admin)) select:focus-visible,
body:not(:has(.admin)) textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(160, 160, 160, 0.75);
}

/* Sticky header touch */
body:not(:has(.admin)) .site-header a,
body:not(:has(.admin)) .nav-link,
body:not(:has(.admin)) .nav-toggle,
body:not(:has(.admin)) .mobile-nav-toggle,
body:not(:has(.admin)) .mobile-toggle,
body:not(:has(.admin)) button.mobile-toggle {
  min-height: var(--pub-touch);
  min-width: var(--pub-touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Forms */
body:not(:has(.admin)) .form-group label,
body:not(:has(.admin)) form label {
  display: block;
  font-weight: 650;
  color: var(--pub-ink);
  margin-bottom: 0.4rem;
}

body:not(:has(.admin)) input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),
body:not(:has(.admin)) select,
body:not(:has(.admin)) textarea {
  width: 100%;
  min-height: var(--pub-touch);
  border: 1px solid var(--pub-border-md);
  border-radius: 11px;
  background: #fff;
  color: var(--pub-ink);
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: var(--pub-body);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body:not(:has(.admin)) input:focus,
body:not(:has(.admin)) select:focus,
body:not(:has(.admin)) textarea:focus {
  border-color: #4a4a4a;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

body:not(:has(.admin)) textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
body:not(:has(.admin)) .site-footer,
body:not(:has(.admin)) footer.site-footer {
  background: var(--pub-chrome) !important;
  color: #d0d0d0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}

body:not(:has(.admin)) .site-footer a {
  color: #e8e8e8 !important;
  text-decoration: none;
  transition: color 0.15s ease;
}

body:not(:has(.admin)) .site-footer a:hover {
  color: #ffffff !important;
}

body:not(:has(.admin)) .site-footer h3,
body:not(:has(.admin)) .site-footer h4 {
  color: #f5f5f5 !important;
  font-family: var(--pub-display) !important;
}

/* Hub login — premium dark panel */
.hub-page .admin-login-form,
.hub-page .unified-login-form,
.hub-page .contact-form.admin-login-form {
  background: linear-gradient(180deg, #1f1f1f, #161616) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35) !important;
  padding: 1.75rem !important;
}

.hub-page h1,
.hub-page .page-hero h1 {
  font-family: var(--pub-display) !important;
}

/* Motion owned by public-motion-v1 scroll-reveal (not all-at-once on load) */
@media (prefers-reduced-motion: no-preference) {
  /* reserved — see public-motion.css */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body:not(:has(.admin)) .service-card:hover,
  body:not(:has(.admin)) .blog-card:hover,
  body:not(:has(.admin)) .review-card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  body:not(:has(.admin)) .hero,
  body:not(:has(.admin)) .page-hero,
  body:not(:has(.admin)) .service-area-hero {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }
  body:not(:has(.admin)) .hero h1,
  body:not(:has(.admin)) .page-hero h1,
  body:not(:has(.admin)) .service-area-hero h1 {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
  }
}

/* ===== design-polish-v4.css ===== */
/* design-polish-v4 — cascade fixes + empty states + mobile nav + contact map */

/* ----- CTA band: light button on dark strip (beat enhance-v3) ----- */
body:not(:has(.admin)) .cta-section .btn-primary,
body:not(:has(.admin)) .section.cta-section .btn-primary,
body:not(:has(.admin)) .cta-section a.btn-primary {
  background: #f5f5f5 !important;
  color: #111 !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28) !important;
}
body:not(:has(.admin)) .cta-section .btn-primary:hover,
body:not(:has(.admin)) .section.cta-section .btn-primary:hover {
  background: #ffffff !important;
  color: #000 !important;
  transform: translateY(-1px);
}
body:not(:has(.admin)) .cta-section .btn-outline,
body:not(:has(.admin)) .cta-section .btn-silver {
  color: #f0f0f0 !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* ----- Hub login: coherent light panel ----- */
.hub-page .admin-login-form,
.hub-page .unified-login-form,
.hub-page .contact-form.admin-login-form {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1) !important;
  padding: 1.75rem !important;
  color: #1a1a1a !important;
}
.hub-page .admin-login-form label,
.hub-page .unified-login-form label {
  color: #1a1a1a !important;
}
.hub-page .admin-login-form input,
.hub-page .unified-login-form input {
  background: #fff !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(0, 0, 0, 0.16) !important;
}
.hub-page .admin-login-form .btn-primary,
.hub-page .unified-login-form .btn-primary {
  background: linear-gradient(180deg, #2a2a2a, #111) !important;
  color: #f5f5f5 !important;
}

/* ----- Mobile nav drawer ----- */
body:not(:has(.admin)) .mobile-nav,
body:not(:has(.admin)) .mobile-menu,
body:not(:has(.admin)) .nav-drawer,
body:not(:has(.admin)) .site-header .mobile-nav-panel {
  background: #141414 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
body:not(:has(.admin)) .mobile-nav-link,
body:not(:has(.admin)) .mobile-nav a,
body:not(:has(.admin)) .mobile-menu a {
  color: #e8e8e8 !important;
  min-height: 48px;
  display: flex !important;
  align-items: center;
  padding: 0.65rem 0.85rem !important;
  border-radius: 10px;
  font-weight: 600;
}
body:not(:has(.admin)) .mobile-nav-link:hover,
body:not(:has(.admin)) .mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}
body:not(:has(.admin)) .mobile-nav .nav-dropdown-menu a,
body:not(:has(.admin)) .mobile-nav .submenu a {
  font-size: 0.92rem;
  color: #c8c8c8 !important;
  padding-left: 1.25rem !important;
  min-height: 42px;
}

/* ----- Contact map chrome ----- */
.contact-map-embed,
.contact-map-card iframe,
.contact-map-card .map-embed {
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: linear-gradient(145deg, #ececec, #f8f8f8) !important;
  min-height: 220px;
}

/* ----- Leave-review steps ----- */
.leave-review-step,
.leave-review-page .step,
.leave-review-card {
  color: #2e2e2e !important;
}
.leave-review-page .page-hero h1,
.leave-review-page .card h1 {
  font-family: Archivo, sans-serif !important;
}
.leave-review-page .card {
  border-radius: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07) !important;
}

/* ----- Public empty states ----- */
body:not(:has(.admin)) .empty-state,
body:not(:has(.admin)) .reviews-empty,
body:not(:has(.admin)) .services-empty,
body:not(:has(.admin)) .faq-empty {
  text-align: center;
  padding: 2.25rem 1.25rem;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: #4a4a4a;
  max-width: 36rem;
  margin-inline: auto;
}
body:not(:has(.admin)) .empty-state p,
body:not(:has(.admin)) .reviews-empty p {
  margin: 0.35rem 0 0;
  line-height: 1.6;
}

/* FAQ items — cleaner open state */
body:not(:has(.admin)) .faq-item summary,
body:not(:has(.admin)) .faq-question {
  font-family: Archivo, sans-serif !important;
  font-weight: 650;
  cursor: pointer;
}
body:not(:has(.admin)) .faq-item[open],
body:not(:has(.admin)) .faq-item.is-open {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Service cards — hide emoji glyph noise if present as lone emoji spans */
body:not(:has(.admin)) .service-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #f0f0f0;
  font-size: 0.85rem;
  font-family: Archivo, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ----- Tablet / phone layout (v4 had chrome only) ----- */
@media (max-width: 1024px) {
  body:not(:has(.admin)) .mobile-nav,
  body:not(:has(.admin)) .mobile-menu,
  body:not(:has(.admin)) .nav-drawer,
  body:not(:has(.admin)) .mobile-nav-panel {
    max-height: min(80dvh, 640px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body:not(:has(.admin)) .mobile-toggle,
  body:not(:has(.admin)) button.mobile-toggle {
    min-height: 48px;
    min-width: 48px;
  }

  body:not(:has(.admin)) .cta-section .btn-primary,
  body:not(:has(.admin)) .cta-section .btn-outline,
  body:not(:has(.admin)) .cta-section .btn-silver {
    min-height: 48px;
  }
}

@media (max-width: 768px) {
  body:not(:has(.admin)) .mobile-nav-link,
  body:not(:has(.admin)) .mobile-nav a,
  body:not(:has(.admin)) .mobile-menu a {
    width: 100%;
  }

  body:not(:has(.admin)) .cta-section .container,
  body:not(:has(.admin)) .section.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  body:not(:has(.admin)) .cta-section .btn-primary,
  body:not(:has(.admin)) .cta-section .btn-outline,
  body:not(:has(.admin)) .cta-section .btn-silver {
    width: 100%;
    justify-content: center;
  }

  .hub-page .admin-login-form,
  .hub-page .unified-login-form {
    padding: 1.25rem !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .leave-review-step,
  .leave-review-page .step {
    width: 100%;
  }
}

/* ===== public-motion.css ===== */
/* public-motion-v1 — brand-safe presence for public marketing pages
 * v2: hero ken-burns, parallax hook, nav underline draw, gallery/faq polish,
 *     topbar pulse, footer link draw, stronger section rhythm
 * v3: scroll progress, header elevate, CTA sheen, gallery clip, form focus,
 *     cookie settle, mobile ken/parallax off, section-label settle
   Atmosphere + scroll reveal + hero stagger + card/CTA hover.
   Logos / hero assets untouched. Merged into aap-public.css before responsive-public. */

/* ---------- Atmosphere (CSS only) ---------- */
body:not(:has(.admin)):not(:has(.client-shell)):not(:has(.careers-portal)) {
  background-image:
    radial-gradient(1100px 480px at 8% -8%, rgba(0, 0, 0, 0.055), transparent 58%),
    radial-gradient(900px 420px at 100% 4%, rgba(0, 0, 0, 0.04), transparent 52%),
    radial-gradient(700px 360px at 50% 100%, rgba(0, 0, 0, 0.03), transparent 60%),
    linear-gradient(180deg, #f4f4f2 0%, #f0f0ee 40%, #ebebe8 100%) !important;
  background-attachment: fixed;
}

body:not(:has(.admin)):not(:has(.client-shell))::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body:not(:has(.admin)) .site-main,
body:not(:has(.admin)) main,
body:not(:has(.admin)) .page {
  position: relative;
  z-index: 1;
}

/* ---------- Scroll reveal base ---------- */
@media (prefers-reduced-motion: no-preference) {
  body:not(:has(.admin)) .aap-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  body:not(:has(.admin)) .aap-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }

  body:not(:has(.admin)) .aap-reveal-stagger > .aap-reveal-child {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body:not(:has(.admin)) .aap-reveal-stagger.is-in > .aap-reveal-child:nth-child(1) { transition-delay: 0.04s; }
  body:not(:has(.admin)) .aap-reveal-stagger.is-in > .aap-reveal-child:nth-child(2) { transition-delay: 0.1s; }
  body:not(:has(.admin)) .aap-reveal-stagger.is-in > .aap-reveal-child:nth-child(3) { transition-delay: 0.16s; }
  body:not(:has(.admin)) .aap-reveal-stagger.is-in > .aap-reveal-child:nth-child(4) { transition-delay: 0.22s; }
  body:not(:has(.admin)) .aap-reveal-stagger.is-in > .aap-reveal-child:nth-child(5) { transition-delay: 0.28s; }
  body:not(:has(.admin)) .aap-reveal-stagger.is-in > .aap-reveal-child:nth-child(6) { transition-delay: 0.34s; }

  body:not(:has(.admin)) .aap-reveal-stagger.is-in > .aap-reveal-child {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero stagger (first viewport) */
  body:not(:has(.admin)) .hero .hero-content > *,
  body:not(:has(.admin)) .hero-content > .section-label,
  body:not(:has(.admin)) .hero-content > h1,
  body:not(:has(.admin)) .hero-content > p,
  body:not(:has(.admin)) .hero-content > .hero-ctas,
  body:not(:has(.admin)) .hero-content > .hero-actions,
  body:not(:has(.admin)) .hero-content > .hero-cta-row,
  body:not(:has(.admin)) .hero-content > .hero-badges,
  body:not(:has(.admin)) .page-hero .container > .section-label,
  body:not(:has(.admin)) .page-hero .container > h1,
  body:not(:has(.admin)) .page-hero .container > p,
  body:not(:has(.admin)) .page-hero .container > .page-hero-actions {
    opacity: 0;
    transform: translateY(16px);
    animation: aapHeroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  body:not(:has(.admin)) .hero .hero-content > *:nth-child(1),
  body:not(:has(.admin)) .page-hero .container > *:nth-child(1) { animation-delay: 0.05s; }
  body:not(:has(.admin)) .hero .hero-content > *:nth-child(2),
  body:not(:has(.admin)) .page-hero .container > *:nth-child(2) { animation-delay: 0.14s; }
  body:not(:has(.admin)) .hero .hero-content > *:nth-child(3),
  body:not(:has(.admin)) .page-hero .container > *:nth-child(3) { animation-delay: 0.23s; }
  body:not(:has(.admin)) .hero .hero-content > *:nth-child(4),
  body:not(:has(.admin)) .page-hero .container > *:nth-child(4) { animation-delay: 0.32s; }
  body:not(:has(.admin)) .hero .hero-content > *:nth-child(5),
  body:not(:has(.admin)) .page-hero .container > *:nth-child(5) { animation-delay: 0.4s; }
  body:not(:has(.admin)) .hero .hero-content > *:nth-child(n+6),
  body:not(:has(.admin)) .page-hero .container > *:nth-child(n+6) { animation-delay: 0.48s; }

  body:not(:has(.admin)) .hero-media,
  body:not(:has(.admin)) .hero .brand-video {
    opacity: 0;
    transform: scale(0.97);
    animation: aapMediaIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  }

  @keyframes aapHeroIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes aapMediaIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
  }

  /* Stats / trust emphasis when revealed */
  body:not(:has(.admin)) .stats-item.is-in strong,
  body:not(:has(.admin)) .stats-item.is-in .stats-item-value,
  body:not(:has(.admin)) .careers-stat.is-in strong,
  body:not(:has(.admin)) .trust-item.is-in {
    animation: aapStatPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes aapStatPop {
    from { opacity: 0.4; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Cards — lift + silver sheen */
  body:not(:has(.admin)) .service-card,
  body:not(:has(.admin)) .blog-card,
  body:not(:has(.admin)) .review-card,
  body:not(:has(.admin)) .why-item,
  body:not(:has(.admin)) .work-showcase-card,
  body:not(:has(.admin)) .sa-feature-card,
  body:not(:has(.admin)) .team-card,
  body:not(:has(.admin)) .faq-item,
  body:not(:has(.admin)) .contact-info-card,
  body:not(:has(.admin)) .contact-hours-card {
    transition:
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s ease,
      border-color 0.28s ease;
  }

  body:not(:has(.admin)) .service-card:hover,
  body:not(:has(.admin)) .blog-card:hover,
  body:not(:has(.admin)) .review-card:hover,
  body:not(:has(.admin)) .why-item:hover,
  body:not(:has(.admin)) .work-showcase-card:hover,
  body:not(:has(.admin)) .sa-feature-card:hover,
  body:not(:has(.admin)) .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.16);
  }

  body:not(:has(.admin)) .service-card::after,
  body:not(:has(.admin)) .blog-card::after,
  body:not(:has(.admin)) .review-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 42%, transparent 58%, rgba(200, 200, 200, 0.2));
    transition: opacity 0.35s ease;
  }

  body:not(:has(.admin)) .service-card,
  body:not(:has(.admin)) .blog-card,
  body:not(:has(.admin)) .review-card {
    position: relative;
    overflow: hidden;
  }

  body:not(:has(.admin)) .service-card:hover::after,
  body:not(:has(.admin)) .blog-card:hover::after,
  body:not(:has(.admin)) .review-card:hover::after {
    opacity: 1;
  }

  /* Promo / CTA soft glow (keep contrast from v13) */
  body:not(:has(.admin)) .promo-banner,
  body:not(:has(.admin)) .section .promo-banner,
  body:not(:has(.admin)) .cta-section {
    position: relative;
  }

  body:not(:has(.admin)) .promo-banner.is-in,
  body:not(:has(.admin)) .cta-section.aap-reveal.is-in {
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 48px rgba(180, 180, 180, 0.08);
  }

  /* Buttons — short press feel */
  body:not(:has(.admin)) .btn,
  body:not(:has(.admin)) a.btn {
    transition:
      transform 0.18s ease,
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      box-shadow 0.18s ease;
  }

  body:not(:has(.admin)) .btn:active,
  body:not(:has(.admin)) a.btn:active {
    transform: translateY(1px) scale(0.98);
  }

  /* Section title accent draw */
  body:not(:has(.admin)) .section > .container > h2::after,
  body:not(:has(.admin)) .section-header h2::after {
    transform-origin: left center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body:not(:has(.admin)) .section.aap-reveal:not(.is-in) > .container > h2::after,
  body:not(:has(.admin)) .section.aap-reveal:not(.is-in) .section-header h2::after {
    transform: scaleX(0);
  }

  body:not(:has(.admin)) .section.aap-reveal.is-in > .container > h2::after,
  body:not(:has(.admin)) .section.aap-reveal.is-in .section-header h2::after {
    transform: scaleX(1);
  }

  /* Back-to-top settle (contrast kept by v13) */
  body:not(:has(.admin)) .back-to-top {
    transition:
      opacity 0.28s ease,
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      box-shadow 0.18s ease;
  }

  body:not(:has(.admin)) .back-to-top.is-visible {
    animation: aapBttIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes aapBttIn {
    from { opacity: 0; transform: translateY(10px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Hub login light presence */
  .hub-page .unified-login-panel,
  .hub-page .admin-login-form,
  body:has(.hub-page) .unified-login-panel {
    animation: aapHeroIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  /* ----- v2: richer presence ----- */

  /* Hero media slow breathe (video/photo only — not brand logos) */
  body:not(:has(.admin)) .hero-media video,
  body:not(:has(.admin)) .hero-media img:not(.brand-badge):not([src*="logo"]),
  body:not(:has(.admin)) .brand-video video {
    animation: aapKen 22s ease-in-out infinite alternate;
    transform-origin: center center;
  }

  @keyframes aapKen {
    from { transform: scale(1); }
    to { transform: scale(1.045); }
  }

  /* Parallax hook set by JS (translate3d) */
  body:not(:has(.admin)) .hero-media.aap-parallax,
  body:not(:has(.admin)) .brand-video.aap-parallax {
    will-change: transform;
    transition: transform 0.12s linear;
  }

  /* After media-in finishes, allow ken + parallax without fighting opacity anim */
  body:not(:has(.admin)) .hero-media.is-in,
  body:not(:has(.admin)) .hero .brand-video.is-in {
    opacity: 1;
    animation: none;
  }

  /* Emergency / topbar status pulse — enhance existing badge, don't invent a second dot */
  body:not(:has(.admin)) .topbar .topbar-badge {
    animation: aapBadgeSoft 2.8s ease-in-out infinite;
  }

  @keyframes aapBadgeSoft {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.18); }
  }

  /* Nav link underline draw */
  body:not(:has(.admin)) .site-header .nav-link,
  body:not(:has(.admin)) .header .nav-link {
    position: relative;
  }

  body:not(:has(.admin)) .site-header .nav-link::after,
  body:not(:has(.admin)) .header .nav-link::after {
    content: "";
    position: absolute;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.35rem;
    height: 1px;
    background: rgba(232, 232, 232, 0.85);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body:not(:has(.admin)) .site-header .nav-link:hover::after,
  body:not(:has(.admin)) .site-header .nav-link.active::after,
  body:not(:has(.admin)) .header .nav-link:hover::after,
  body:not(:has(.admin)) .header .nav-link.active::after {
    transform: scaleX(1);
  }

  /* Footer link draw */
  body:not(:has(.admin)) .footer-links a,
  body:not(:has(.admin)) .site-footer .footer-links a,
  body:not(:has(.admin)) .footer-area-links a {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size 0.28s ease, color 0.18s ease;
  }

  body:not(:has(.admin)) .footer-links a:hover,
  body:not(:has(.admin)) .site-footer .footer-links a:hover,
  body:not(:has(.admin)) .footer-area-links a:hover {
    background-size: 100% 1px;
  }

  /* Gallery / work photos reveal */
  body:not(:has(.admin)) .gallery-grid img,
  body:not(:has(.admin)) .work-showcase-card img,
  body:not(:has(.admin)) .blog-featured-image,
  body:not(:has(.admin)) .blog-card img,
  body:not(:has(.admin)) .team-card-photo,
  body:not(:has(.admin)) .team-card-photo-wrap img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  }

  body:not(:has(.admin)) .aap-reveal:not(.is-in) .gallery-grid img,
  body:not(:has(.admin)) .aap-reveal:not(.is-in) .work-showcase-card img,
  body:not(:has(.admin)) .work-showcase-card.aap-reveal:not(.is-in) img,
  body:not(:has(.admin)) .blog-card.aap-reveal:not(.is-in) img,
  body:not(:has(.admin)) .team-card.aap-reveal:not(.is-in) img {
    transform: scale(1.04);
    filter: saturate(0.85);
  }

  body:not(:has(.admin)) .work-showcase-card.is-in img,
  body:not(:has(.admin)) .blog-card.is-in img,
  body:not(:has(.admin)) .team-card.is-in img {
    transform: scale(1);
    filter: none;
  }

  body:not(:has(.admin)) .work-showcase-card:hover img,
  body:not(:has(.admin)) .blog-card:hover img,
  body:not(:has(.admin)) .gallery-grid a:hover img {
    transform: scale(1.03);
  }

  /* FAQ open polish */
  body:not(:has(.admin)) .faq-item,
  body:not(:has(.admin)) .faq-item summary,
  body:not(:has(.admin)) .faq-question {
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  body:not(:has(.admin)) .faq-item[open],
  body:not(:has(.admin)) .faq-item.is-open {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }

  /* Section rhythm — soft separator wash */
  body:not(:has(.admin)) .section.section-alt.aap-reveal.is-in {
    background-image:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.65), transparent 70%);
  }

  /* Chip / tab hover snap */
  body:not(:has(.admin)) .sa-city-chip,
  body:not(:has(.admin)) .sa-tab,
  body:not(:has(.admin)) .faq-category-btn,
  body:not(:has(.admin)) .reviews-filter-btn {
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }

  body:not(:has(.admin)) .sa-city-chip:hover,
  body:not(:has(.admin)) .sa-tab:hover,
  body:not(:has(.admin)) .faq-category-btn:hover,
  body:not(:has(.admin)) .reviews-filter-btn:hover {
    transform: translateY(-1px);
  }

  /* Primary CTA gentle attention on dark bands */
  body:not(:has(.admin)) .cta-section .btn-primary,
  body:not(:has(.admin)) .promo-banner .btn-primary {
    animation: aapCtaGlow 3.2s ease-in-out infinite;
  }

  @keyframes aapCtaGlow {
    0%, 100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12), 0 8px 20px rgba(0, 0, 0, 0.25); }
  }

  /* ----- v3: deeper polish ----- */

  /* Thin reading progress (JS sets --aap-scroll) */
  body:not(:has(.admin)):not(:has(.client-shell))::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: calc(var(--aap-scroll, 0) * 100%);
    max-width: 100%;
    pointer-events: none;
    z-index: 9998;
    background: linear-gradient(90deg, #3a3a3a, #8a8a8a 55%, #c8c8c8);
    opacity: 0.85;
    transition: opacity 0.2s ease;
  }

  body:not(:has(.admin)).aap-at-top::after {
    opacity: 0;
  }

  /* Header elevates after scroll */
  body:not(:has(.admin)) .site-header,
  body:not(:has(.admin)) header.site-header {
    transition:
      box-shadow 0.35s ease,
      background-color 0.35s ease,
      border-color 0.35s ease;
  }

  body:not(:has(.admin)).aap-scrolled .site-header,
  body:not(:has(.admin)).aap-scrolled header.site-header {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  }

  /* Primary / outline button sheen on hover */
  body:not(:has(.admin)) .btn-primary,
  body:not(:has(.admin)) a.btn-primary,
  body:not(:has(.admin)) .btn-outline,
  body:not(:has(.admin)) a.btn-outline {
    position: relative;
    overflow: hidden;
  }

  body:not(:has(.admin)) .btn-primary::before,
  body:not(:has(.admin)) a.btn-primary::before,
  body:not(:has(.admin)) .btn-outline::before,
  body:not(:has(.admin)) a.btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
      100deg,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent
    );
    transform: skewX(-18deg);
    pointer-events: none;
    transition: left 0.55s ease;
  }

  body:not(:has(.admin)) .btn-primary:hover::before,
  body:not(:has(.admin)) a.btn-primary:hover::before,
  body:not(:has(.admin)) .btn-outline:hover::before,
  body:not(:has(.admin)) a.btn-outline:hover::before {
    left: 140%;
  }

  /* Gallery / showcase clip reveal */
  body:not(:has(.admin)) .gallery-item,
  body:not(:has(.admin)) .gallery-grid > a,
  body:not(:has(.admin)) .work-showcase-card {
    overflow: hidden;
  }

  body:not(:has(.admin)) .gallery-item.aap-reveal:not(.is-in),
  body:not(:has(.admin)) .gallery-grid > a.aap-reveal:not(.is-in),
  body:not(:has(.admin)) .work-showcase-card.aap-reveal:not(.is-in) {
    clip-path: inset(6% 6% 6% 6% round 4px);
  }

  body:not(:has(.admin)) .gallery-item.is-in,
  body:not(:has(.admin)) .gallery-grid > a.is-in,
  body:not(:has(.admin)) .work-showcase-card.is-in {
    clip-path: inset(0 0 0 0);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Section labels settle in */
  body:not(:has(.admin)) .section.aap-reveal:not(.is-in) .section-label,
  body:not(:has(.admin)) .section.aap-reveal:not(.is-in) .section-header .section-label {
    letter-spacing: 0.22em;
    opacity: 0.55;
  }

  body:not(:has(.admin)) .section.aap-reveal.is-in .section-label {
    letter-spacing: 0.14em;
    opacity: 1;
    transition: letter-spacing 0.7s ease, opacity 0.55s ease;
  }

  /* Contact / form focus presence */
  body:not(:has(.admin)) .contact-form input,
  body:not(:has(.admin)) .contact-form textarea,
  body:not(:has(.admin)) .contact-form select,
  body:not(:has(.admin)) form.contact-form input,
  body:not(:has(.admin)) form.contact-form textarea,
  body:not(:has(.admin)) .request-form input,
  body:not(:has(.admin)) .request-form textarea,
  body:not(:has(.admin)) .request-form select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  body:not(:has(.admin)) .contact-form input:focus,
  body:not(:has(.admin)) .contact-form textarea:focus,
  body:not(:has(.admin)) .contact-form select:focus,
  body:not(:has(.admin)) form.contact-form input:focus,
  body:not(:has(.admin)) form.contact-form textarea:focus,
  body:not(:has(.admin)) .request-form input:focus,
  body:not(:has(.admin)) .request-form textarea:focus,
  body:not(:has(.admin)) .request-form select:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
  }

  /* Cookie consent soft rise */
  body:not(:has(.admin)) .cookie-consent-panel {
    animation: aapCookieIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes aapCookieIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Footer columns stagger when revealed */
  body:not(:has(.admin)) .site-footer.aap-reveal:not(.is-in) .footer-col,
  body:not(:has(.admin)) .footer.aap-reveal:not(.is-in) .footer-col {
    opacity: 0;
    transform: translateY(10px);
  }

  body:not(:has(.admin)) .site-footer.aap-reveal.is-in .footer-col,
  body:not(:has(.admin)) .footer.aap-reveal.is-in .footer-col {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body:not(:has(.admin)) .site-footer.aap-reveal.is-in .footer-col:nth-child(1),
  body:not(:has(.admin)) .footer.aap-reveal.is-in .footer-col:nth-child(1) { transition-delay: 0.04s; }
  body:not(:has(.admin)) .site-footer.aap-reveal.is-in .footer-col:nth-child(2),
  body:not(:has(.admin)) .footer.aap-reveal.is-in .footer-col:nth-child(2) { transition-delay: 0.1s; }
  body:not(:has(.admin)) .site-footer.aap-reveal.is-in .footer-col:nth-child(3),
  body:not(:has(.admin)) .footer.aap-reveal.is-in .footer-col:nth-child(3) { transition-delay: 0.16s; }
  body:not(:has(.admin)) .site-footer.aap-reveal.is-in .footer-col:nth-child(4),
  body:not(:has(.admin)) .footer.aap-reveal.is-in .footer-col:nth-child(4) { transition-delay: 0.22s; }

  /* Trust strip soft wash when in */
  body:not(:has(.admin)) .trust-strip.aap-reveal.is-in,
  body:not(:has(.admin)) .service-trust-strip.aap-reveal.is-in {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  /* Phone CTA in header — quiet attention (not glow spam) */
  body:not(:has(.admin)) .site-header a[href^="tel:"],
  body:not(:has(.admin)) .header-phone a[href^="tel:"] {
    transition: transform 0.2s ease, color 0.2s ease;
  }

  body:not(:has(.admin)) .site-header a[href^="tel:"]:hover,
  body:not(:has(.admin)) .header-phone a[href^="tel:"]:hover {
    transform: translateY(-1px);
  }

  /* Mobile / tablet: drop ken + parallax for battery + clarity */
  @media (max-width: 900px) {
    body:not(:has(.admin)) .hero-media video,
    body:not(:has(.admin)) .hero-media img:not(.brand-badge):not([src*="logo"]),
    body:not(:has(.admin)) .brand-video video {
      animation: none !important;
      transform: none !important;
    }

    body:not(:has(.admin)) .hero-media.aap-parallax,
    body:not(:has(.admin)) .brand-video.aap-parallax {
      transform: none !important;
      transition: none !important;
    }

    body:not(:has(.admin)):not(:has(.client-shell)):not(:has(.careers-portal)) {
      background-attachment: scroll;
    }
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  body:not(:has(.admin)) .aap-reveal,
  body:not(:has(.admin)) .aap-reveal-stagger > .aap-reveal-child,
  body:not(:has(.admin)) .hero .hero-content > *,
  body:not(:has(.admin)) .page-hero .container > *,
  body:not(:has(.admin)) .hero-media,
  body:not(:has(.admin)) .hero .brand-video {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  body:not(:has(.admin)) .service-card:hover,
  body:not(:has(.admin)) .blog-card:hover,
  body:not(:has(.admin)) .review-card:hover,
  body:not(:has(.admin)) .why-item:hover,
  body:not(:has(.admin)) .work-showcase-card:hover,
  body:not(:has(.admin)) .sa-feature-card:hover,
  body:not(:has(.admin)) .team-card:hover {
    transform: none !important;
  }

  body:not(:has(.admin)) .hero-media video,
  body:not(:has(.admin)) .hero-media img,
  body:not(:has(.admin)) .brand-video video,
  body:not(:has(.admin)) .cta-section .btn-primary,
  body:not(:has(.admin)) .promo-banner .btn-primary,
  body:not(:has(.admin)) .topbar .topbar-badge,
  body:not(:has(.admin)) .cookie-consent-panel {
    animation: none !important;
  }

  body:not(:has(.admin)) .hero-media.aap-parallax,
  body:not(:has(.admin)) .brand-video.aap-parallax {
    transform: none !important;
  }

  body:not(:has(.admin)) .site-header .nav-link::after,
  body:not(:has(.admin)) .header .nav-link::after,
  body:not(:has(.admin)) .btn-primary::before,
  body:not(:has(.admin)) a.btn-primary::before,
  body:not(:has(.admin)) .btn-outline::before,
  body:not(:has(.admin)) a.btn-outline::before {
    transition: none !important;
  }

  body:not(:has(.admin)) .gallery-item,
  body:not(:has(.admin)) .gallery-grid > a,
  body:not(:has(.admin)) .work-showcase-card {
    clip-path: none !important;
  }

  body:not(:has(.admin))::before,
  body:not(:has(.admin))::after {
    display: none;
  }

  body:not(:has(.admin)):not(:has(.client-shell)):not(:has(.careers-portal)) {
    background-attachment: scroll;
  }
}

/* ===== responsive-public.css ===== */
/* responsive-public-v13 — public marketing overflow + contrast + shape fixes
 * v10: center public layout on mobile
 * v11: mobile drawer Request Service readable (dark ink on light button)
 * v12: tablet/phone parity with desktop hierarchy (all devices)
 * v13: Limited Offer / promo contrast + back-to-top arrow readable
 *      + mobile center alignment (no right-hugging layouts).
 * Merged LAST into aap-public.css. Desktop ≥1280 layout unchanged. */

body:not(:has(.admin)) {
  overflow-x: clip;
}

html:has(body:not(:has(.admin))) {
  overflow-x: clip;
}

body:not(:has(.admin)) img,
body:not(:has(.admin)) video,
body:not(:has(.admin)) iframe,
body:not(:has(.admin)) svg {
  max-width: 100%;
  height: auto;
}

body:not(:has(.admin)) .container,
body:not(:has(.admin)) .section,
body:not(:has(.admin)) .hero-inner,
body:not(:has(.admin)) .page-hero-inner,
body:not(:has(.admin)) .hero-media,
body:not(:has(.admin)) .hero-video,
body:not(:has(.admin)) .brand-video {
  max-width: 100%;
  box-sizing: border-box;
}

/* Hero media can crop; homepage intro (.brand-video) must show the full frame */
body:not(:has(.admin)) .hero-media video {
  width: 100%;
  max-height: min(42vh, 360px);
  object-fit: cover;
}

body:not(:has(.admin)) .brand-video video,
body:not(:has(.admin)) video.brand-video {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

body:not(:has(.admin)) .brand-video--landscape video {
  height: 100%;
  max-height: none;
  object-fit: contain;
}

/* ---------- Shell ---------- */
@media (max-width: 1024px) {
  body:not(:has(.admin)) .topbar .topbar-hours,
  body:not(:has(.admin)) .topbar .topbar-tagline,
  body:not(:has(.admin)) .topbar span.topbar-sep,
  body:not(:has(.admin)) .topbar .topbar-extra {
    display: none !important;
  }

  body:not(:has(.admin)) .topbar {
    white-space: normal;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    justify-content: center;
    text-align: center;
  }

  body:not(:has(.admin)) .site-header .header-inner,
  body:not(:has(.admin)) .header .header-inner,
  body:not(:has(.admin)) .site-header .container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  body:not(:has(.admin)) .promo-bar,
  body:not(:has(.admin)) .announcement-bar {
    white-space: normal;
    text-align: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  body:not(:has(.admin)) .mobile-toggle,
  body:not(:has(.admin)) button.mobile-toggle {
    min-height: 44px;
    min-width: 44px;
  }

  /* Kill desktop “push media to the right” on tablets */
  body:not(:has(.admin)) .hero-media {
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* v12: collapse hero to one centered column on tablets (match phone composition) */
  body:not(:has(.admin)) .hero-grid,
  body:not(:has(.admin)) .container.hero-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center;
  }

  body:not(:has(.admin)) .hero-content {
    width: 100%;
    max-width: 40rem;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body:not(:has(.admin)) .hero-ctas,
  body:not(:has(.admin)) .hero-actions,
  body:not(:has(.admin)) .hero-cta-row,
  body:not(:has(.admin)) .page-hero-actions {
    justify-content: center !important;
  }
}

/* ---------- Mobile center composition (v10) ---------- */
@media (max-width: 968px) {
  body:not(:has(.admin)) .hero-grid,
  body:not(:has(.admin)) .container.hero-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center;
  }

  body:not(:has(.admin)) .hero-content,
  body:not(:has(.admin)) .page-hero .container,
  body:not(:has(.admin)) .page-hero-inner,
  body:not(:has(.admin)) .service-area-hero .container,
  body:not(:has(.admin)) .leave-review-hero-inner {
    width: 100%;
    max-width: 40rem;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body:not(:has(.admin)) .hero-content h1,
  body:not(:has(.admin)) .hero-lead,
  body:not(:has(.admin)) .hero .subtitle,
  body:not(:has(.admin)) .hero-area,
  body:not(:has(.admin)) .page-hero h1,
  body:not(:has(.admin)) .page-hero p,
  body:not(:has(.admin)) .page-hero .subtitle,
  body:not(:has(.admin)) .service-area-hero h1,
  body:not(:has(.admin)) .service-area-hero p {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  body:not(:has(.admin)) .hero-badges,
  body:not(:has(.admin)) .hero-hud-strip,
  body:not(:has(.admin)) .hud-strip,
  body:not(:has(.admin)) .hero-cta-row,
  body:not(:has(.admin)) .hero-ctas,
  body:not(:has(.admin)) .hero-actions,
  body:not(:has(.admin)) .page-hero-actions {
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  body:not(:has(.admin)) .hero-eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body:not(:has(.admin)) .hero-media {
    justify-self: center !important;
    width: 100% !important;
    max-width: min(100%, 380px) !important;
  }

  body:not(:has(.admin)) .section > .container > h2,
  body:not(:has(.admin)) .section-header,
  body:not(:has(.admin)) .section-header h2,
  body:not(:has(.admin)) .section .section-title,
  body:not(:has(.admin)) .section .section-label,
  body:not(:has(.admin)) .section .section-lead,
  body:not(:has(.admin)) .section > .container > .subtitle,
  body:not(:has(.admin)) .section > .container > p.subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body:not(:has(.admin)) .section > .container > h2::after,
  body:not(:has(.admin)) .section-header h2::after,
  body:not(:has(.admin)) .section .section-title::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body:not(:has(.admin)) .trust-strip-grid,
  body:not(:has(.admin)) .trust-grid,
  body:not(:has(.admin)) .stats-grid,
  body:not(:has(.admin)) .home-stats,
  body:not(:has(.admin)) .team-stats-grid,
  body:not(:has(.admin)) .careers-stats-grid {
    justify-items: center;
    text-align: center;
  }

  body:not(:has(.admin)) .stats-item,
  body:not(:has(.admin)) .trust-item,
  body:not(:has(.admin)) .careers-stat {
    text-align: center !important;
  }

  body:not(:has(.admin)) .brand-mark,
  body:not(:has(.admin)) .brand-mark-inline,
  body:not(:has(.admin)) .about-brand-grid .brand-mark {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body:not(:has(.admin)) .cta-section,
  body:not(:has(.admin)) .cta-section .container,
  body:not(:has(.admin)) .promo-banner,
  body:not(:has(.admin)) .promo-banner .container {
    text-align: center !important;
  }

  body:not(:has(.admin)) .cta-section p,
  body:not(:has(.admin)) .cta-actions {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  /* v12: hub guest banner matches center composition on tablets */
  body:not(:has(.admin)) .hub-guest-banner,
  body:not(:has(.admin)) .page-content .hub-guest-banner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  body:not(:has(.admin)) .hub-guest-banner-actions {
    justify-content: center !important;
    width: 100%;
  }

  body:not(:has(.admin)) .hub-guest-banner-text {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  body:not(:has(.admin)) .btn,
  body:not(:has(.admin)) .btn-primary,
  body:not(:has(.admin)) .btn-outline,
  body:not(:has(.admin)) .btn-secondary,
  body:not(:has(.admin)) .btn-silver {
    white-space: normal;
    text-align: center;
  }

  body:not(:has(.admin)) .hero-ctas,
  body:not(:has(.admin)) .hero-actions,
  body:not(:has(.admin)) .cta-actions,
  body:not(:has(.admin)) .page-hero-actions,
  body:not(:has(.admin)) .hero-cta-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    gap: 0.75rem;
  }

  body:not(:has(.admin)) .hero-ctas .btn,
  body:not(:has(.admin)) .hero-actions .btn,
  body:not(:has(.admin)) .cta-actions .btn,
  body:not(:has(.admin)) .page-hero-actions .btn,
  body:not(:has(.admin)) .hero-cta-row .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  /* Contact / hub banners — never pin actions to the right on phones */
  body:not(:has(.admin)) .hub-guest-banner,
  body:not(:has(.admin)) .page-content .hub-guest-banner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  body:not(:has(.admin)) .hub-guest-banner-actions {
    justify-content: center !important;
    width: 100%;
  }

  body:not(:has(.admin)) .hub-guest-banner-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  body:not(:has(.admin)) .contact-layout,
  body:not(:has(.admin)) .about-layout,
  body:not(:has(.admin)) .service-layout,
  body:not(:has(.admin)) .blog-layout {
    justify-items: stretch;
  }

  body:not(:has(.admin)) .job-card-header-actions {
    align-items: stretch !important;
  }

  body:not(:has(.admin)) .footer-grid,
  body:not(:has(.admin)) .site-footer .footer-grid {
    justify-items: center;
    text-align: center;
  }

  body:not(:has(.admin)) .footer .footer-brand .brand-mark-stacked,
  body:not(:has(.admin)) .site-footer .footer-brand .brand-mark-stacked,
  body:not(:has(.admin)) .footer-brand .brand-mark,
  body:not(:has(.admin)) .footer-brand {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  body:not(:has(.admin)) .footer-links,
  body:not(:has(.admin)) .site-footer .footer-links,
  body:not(:has(.admin)) .footer-area-links {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  body:not(:has(.admin)) .services-grid > *,
  body:not(:has(.admin)) .service-card,
  body:not(:has(.admin)) .why-item,
  body:not(:has(.admin)) .careers-perk,
  body:not(:has(.admin)) .work-showcase-card,
  body:not(:has(.admin)) .sa-feature-card {
    text-align: center;
  }

  body:not(:has(.admin)) .why-item,
  body:not(:has(.admin)) .service-why-grid .why-item {
    justify-content: center;
    align-items: center;
  }

  /* Forms stay readable left-aligned inside centered cards */
  body:not(:has(.admin)) form.contact-form,
  body:not(:has(.admin)) .contact-form,
  body:not(:has(.admin)) .request-service-form,
  body:not(:has(.admin)) .leave-review-form,
  body:not(:has(.admin)) .admin-login-form,
  body:not(:has(.admin)) .hub-login-form {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 32rem;
  }

  body:not(:has(.admin)) .site-header .nav-link,
  body:not(:has(.admin)) .header-hub,
  body:not(:has(.admin)) .job-salary {
    white-space: normal;
  }

  body:not(:has(.admin)) .faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  body:not(:has(.admin)) .faq-category-btn {
    white-space: normal;
    text-align: center;
  }

  body:not(:has(.admin)).has-sticky-call,
  body:not(:has(.admin)):has(.sticky-call-bar),
  body:not(:has(.admin)):has(.mobile-call-bar) {
    padding-bottom: max(4.75rem, calc(3.5rem + env(safe-area-inset-bottom, 0px)));
  }

  body:not(:has(.admin)) .sticky-call-bar,
  body:not(:has(.admin)) .mobile-call-bar {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  }

  body:not(:has(.admin)) .section {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  body:not(:has(.admin)) .hero,
  body:not(:has(.admin)) .page-hero,
  body:not(:has(.admin)) .service-area-hero {
    min-height: auto !important;
  }
}

@media (max-width: 480px) {
  body:not(:has(.admin)) .topbar a[href^="tel"] {
    font-size: 0.95rem;
  }

  body:not(:has(.admin)) .hero-media video {
    max-height: min(36vh, 280px);
  }
}

/* ---------- Page grids (real class names) ---------- */
@media (max-width: 1024px) {
  body:not(:has(.admin)) .trust-strip-grid,
  body:not(:has(.admin)) .trust-grid,
  body:not(:has(.admin)) .service-trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:not(:has(.admin)) .stats-grid,
  body:not(:has(.admin)) .home-stats,
  body:not(:has(.admin)) .team-stats-grid,
  body:not(:has(.admin)) .careers-stats-grid,
  body:not(:has(.admin)) .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body:not(:has(.admin)) .service-layout,
  body:not(:has(.admin)) .blog-layout,
  body:not(:has(.admin)) .about-layout,
  body:not(:has(.admin)) .service-detail-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  body:not(:has(.admin)) .section {
    padding-top: clamp(2rem, 6vw, 3rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }

  body:not(:has(.admin)) .grid-3,
  body:not(:has(.admin)) .services-grid,
  body:not(:has(.admin)) .blog-grid,
  body:not(:has(.admin)) .reviews-skeleton-grid,
  body:not(:has(.admin)) .careers-perks-grid,
  body:not(:has(.admin)) .careers-process-steps,
  body:not(:has(.admin)) .careers-stats-grid {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .leave-review-steps,
  body:not(:has(.admin)) .leave-review-page .steps {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .blog-featured,
  body:not(:has(.admin)) .featured-post {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .blog-featured-image {
    min-height: 200px;
    max-height: 260px;
  }

  body:not(:has(.admin)) input,
  body:not(:has(.admin)) select,
  body:not(:has(.admin)) textarea {
    font-size: 16px !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  body:not(:has(.admin)) .contact-form .btn,
  body:not(:has(.admin)) .request-service .btn,
  body:not(:has(.admin)) form.contact-form button[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .reviews-leave-btn,
  body:not(:has(.admin)) .google-review-btn,
  body:not(:has(.admin)) .reviews-platform-links .btn {
    width: 100%;
    justify-content: center;
  }

  /* v12: promote tablet stacks that previously only fired at 480 */
  body:not(:has(.admin)) .blog-post-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  body:not(:has(.admin)) .blog-post-aside {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  body:not(:has(.admin)) .careers-cta-bar,
  body:not(:has(.admin)) .careers-cta-actions,
  body:not(:has(.admin)) .page-hero-actions.careers-offline-actions,
  body:not(:has(.admin)) .careers-offline-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
    gap: 0.85rem !important;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  body:not(:has(.admin)) .careers-cta-actions .btn,
  body:not(:has(.admin)) .careers-cta-bar .btn,
  body:not(:has(.admin)) .careers-offline-actions .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .reviews-leave-grid,
  body:not(:has(.admin)) .reviews-cta-actions {
    flex-direction: column;
    align-items: stretch !important;
  }

  body:not(:has(.admin)) .contact-info-col {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body:not(:has(.admin)) .sticky-call {
    display: flex !important;
    gap: 0.5rem;
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
  }

  body:not(:has(.admin)) .sticky-call a,
  body:not(:has(.admin)) .sticky-call-bar a,
  body:not(:has(.admin)) .mobile-call-bar a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    white-space: normal;
  }

  body:not(:has(.admin)) .sa-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    padding-bottom: 0.35rem;
    mask-image: linear-gradient(90deg, #000 85%, transparent);
  }

  body:not(:has(.admin)) .sa-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 44px;
  }

  body:not(:has(.admin)) .faq-question,
  body:not(:has(.admin)) button.faq-question {
    min-height: 48px;
    text-align: left;
    white-space: normal;
  }

  body:not(:has(.admin)) .team-card {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .job-card-header,
  body:not(:has(.admin)) .job-card-header-actions,
  body:not(:has(.admin)) .job-card-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body:not(:has(.admin)) .job-card-actions .btn,
  body:not(:has(.admin)) .job-card-header-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body:not(:has(.admin)) .trust-strip-grid,
  body:not(:has(.admin)) .trust-grid,
  body:not(:has(.admin)) .service-trust-strip-grid,
  body:not(:has(.admin)) .stats-grid,
  body:not(:has(.admin)) .home-stats,
  body:not(:has(.admin)) .team-stats-grid,
  body:not(:has(.admin)) .careers-stats-grid,
  body:not(:has(.admin)) .grid-4,
  body:not(:has(.admin)) .grid-2 {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .blog-featured-image {
    min-height: 160px;
    max-height: 200px;
  }

  body:not(:has(.admin)) .faq-category-btn {
    white-space: normal;
    width: auto;
    flex: 1 1 auto;
  }

  body:not(:has(.admin)) .cookie-consent {
    padding: 0.65rem !important;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(:has(.admin)) .cookie-consent-panel {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
    padding: 1rem !important;
    max-width: 100% !important;
  }

  body:not(:has(.admin)) .cookie-consent-actions,
  body:not(:has(.admin)) .cookie-consent-panel .btn,
  body:not(:has(.admin)) .cookie-consent-panel button {
    width: 100%;
    white-space: normal !important;
    justify-content: center;
  }

  body:not(:has(.admin)) .join-banner,
  body:not(:has(.admin)) .join-banner .container,
  body:not(:has(.admin)) .join-banner-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
    gap: 0.85rem;
  }

  body:not(:has(.admin)) .join-banner .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .job-salary,
  body:not(:has(.admin)) .job-meta,
  body:not(:has(.admin)) .job-card-meta {
    white-space: normal !important;
  }

  body:not(:has(.admin)) .reviews-filters,
  body:not(:has(.admin)) .reviews-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  body:not(:has(.admin)) .reviews-filter-btn {
    white-space: normal;
    flex: 1 1 auto;
  }

  body:not(:has(.admin)) .back-to-top {
    bottom: max(5.5rem, calc(4rem + env(safe-area-inset-bottom, 0px))) !important;
    right: max(0.75rem, env(safe-area-inset-right, 0px)) !important;
  }

  body:not(:has(.admin)) .service-areas-map-embed,
  body:not(:has(.admin)) .contact-map-embed {
    min-height: 200px;
  }

  body:not(:has(.admin)) .hero-cta-row,
  body:not(:has(.admin)) .hero-badges {
    width: 100%;
  }

  body:not(:has(.admin)) .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .hero-badge {
    white-space: normal;
  }

  body:not(:has(.admin)) .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  body:not(:has(.admin)) .gallery-lightbox {
    padding: 0.75rem !important;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px)) !important;
  }

  body:not(:has(.admin)) .gallery-lightbox-inner {
    max-width: 100% !important;
    max-height: 92dvh !important;
  }

  body:not(:has(.admin)) .gallery-lightbox-img {
    max-height: 70dvh !important;
  }

  body:not(:has(.admin)) .gallery-lightbox-arrow {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.35rem !important;
  }

  body:not(:has(.admin)) .gallery-lightbox-arrow--prev {
    left: 0.35rem !important;
  }

  body:not(:has(.admin)) .gallery-lightbox-arrow--next {
    right: 0.35rem !important;
  }

  body:not(:has(.admin)) .gallery-lightbox-close {
    top: max(0.5rem, env(safe-area-inset-top, 0px)) !important;
    right: max(0.5rem, env(safe-area-inset-right, 0px)) !important;
  }

  body:not(:has(.admin)) .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .reviews-leave-grid,
  body:not(:has(.admin)) .reviews-cta-actions {
    flex-direction: column;
    align-items: stretch !important;
  }

  body:not(:has(.admin)) .reviews-leave-btn,
  body:not(:has(.admin)) .google-review-btn {
    width: 100%;
  }

  body:not(:has(.admin)) .why-item {
    gap: 0.75rem;
  }

  body:not(:has(.admin)) .service-why-grid {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .pagination,
  body:not(:has(.admin)) .blog-pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }

  body:not(:has(.admin)) .request-service-form .btn,
  body:not(:has(.admin)) .leave-review-form .btn,
  body:not(:has(.admin)) form.leave-review-form button[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  /* Phase 8 — blog / FAQ / team / contact / sticky */
  body:not(:has(.admin)) .blog-post-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  body:not(:has(.admin)) .blog-post-aside {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  body:not(:has(.admin)) .blog-post-hero-image {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
  }

  body:not(:has(.admin)) .blog-post-meta {
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
  }

  body:not(:has(.admin)) .faq-question,
  body:not(:has(.admin)) button.faq-question {
    min-height: 48px;
    text-align: left;
    white-space: normal;
    align-items: flex-start;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
  }

  body:not(:has(.admin)) .team-card {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .team-card-photo,
  body:not(:has(.admin)) .team-card-photo-wrap {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
  }

  body:not(:has(.admin)) .contact-form-promo-row {
    flex-direction: column;
    align-items: stretch;
  }

  body:not(:has(.admin)) .contact-form-track-actions {
    flex-direction: column;
  }

  body:not(:has(.admin)) .contact-form-track-actions .btn {
    width: 100%;
  }

  body:not(:has(.admin)) .sticky-call {
    display: flex !important;
    gap: 0.5rem;
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
  }

  body:not(:has(.admin)) .sticky-call a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    font-size: 0.78rem !important;
  }

  body:not(:has(.admin)) .cms-breadcrumb .container {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Phase 9 — careers / jobs / leave-review / SA tabs */
  body:not(:has(.admin)) .careers-cta-bar,
  body:not(:has(.admin)) .careers-cta-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
    gap: 0.85rem !important;
  }

  body:not(:has(.admin)) .careers-cta-actions .btn,
  body:not(:has(.admin)) .careers-cta-bar .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .careers-culture-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  body:not(:has(.admin)) .job-card-header,
  body:not(:has(.admin)) .job-card-header-actions,
  body:not(:has(.admin)) .job-card-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body:not(:has(.admin)) .job-card-actions .btn,
  body:not(:has(.admin)) .job-card-header-actions .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .leave-review-hero {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  body:not(:has(.admin)) .leave-review-steps {
    grid-template-columns: 1fr !important;
  }

  body:not(:has(.admin)) .leave-review-google-btn,
  body:not(:has(.admin)) .leave-review-cta-card .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .sa-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start !important;
    padding-bottom: 0.35rem;
    mask-image: linear-gradient(90deg, #000 85%, transparent);
  }

  body:not(:has(.admin)) .sa-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 44px;
  }

  body:not(:has(.admin)) .sa-home-chips,
  body:not(:has(.admin)) .sa-chip-row,
  body:not(:has(.admin)) .sa-city-chips,
  body:not(:has(.admin)) .sa-home-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
  }

  body:not(:has(.admin)) .sa-city-chip,
  body:not(:has(.admin)) .sa-tab,
  body:not(:has(.admin)) .faq-category-btn,
  body:not(:has(.admin)) .reviews-filter-btn,
  body:not(:has(.admin)) .hero-badge {
    border-radius: 12px !important;
    min-height: 44px;
    padding: 0.55rem 0.9rem !important;
    box-sizing: border-box;
  }

  body:not(:has(.admin)) .sa-city-chip {
    flex: 1 1 auto;
    max-width: 100%;
    justify-content: center;
  }

  body:not(:has(.admin)) .sticky-call a,
  body:not(:has(.admin)) .sticky-call-bar a,
  body:not(:has(.admin)) .mobile-call-bar a {
    border-radius: 12px !important;
    flex: 1 1 0;
    min-width: 0;
  }
}

body:not(:has(.admin)) .soro-blog-embed,
body:not(:has(.admin)) #soro-blog {
  width: 100%;
  min-height: 12rem;
  margin: 0 0 2rem;
}

/* Soften capsules → rounded rectangles (less “oval sausage”) */
body:not(:has(.admin)) .sa-city-chip,
body:not(:has(.admin)) .sa-tab,
body:not(:has(.admin)) .faq-category-btn,
body:not(:has(.admin)) .reviews-filter-btn,
body:not(:has(.admin)) .hero-badge,
body:not(:has(.admin)) .service-chip-row li,
body:not(:has(.admin)) .job-meta-badge,
body:not(:has(.admin)) .service-areas-map-cities a {
  border-radius: 12px !important;
}

body:not(:has(.admin)) .btn,
body:not(:has(.admin)) a.btn,
body:not(:has(.admin)) button.btn {
  border-radius: 12px !important;
}

/* Light surfaces: ink stays dark on hover */
body:not(:has(.admin)) .section a:hover:not(.btn):not(.nav-link),
body:not(:has(.admin)) .section-alt a:hover:not(.btn):not(.nav-link),
body:not(:has(.admin)) .page-content a:hover:not(.btn),
body:not(:has(.admin)) .faq-category-btn:hover,
body:not(:has(.admin)) .reviews-filter-btn:hover {
  color: #111111 !important;
}

body:not(:has(.admin)) .faq-category-btn.is-active,
body:not(:has(.admin)) .reviews-filter-btn.is-active,
body:not(:has(.admin)) .sa-tab.is-active {
  color: #f2f2f2 !important;
  background: #1c1c1c !important;
}

/* Dark chrome: light text always (incl. hover) — beats enhance black ink */
body:not(:has(.admin)) .hero .btn-outline,
body:not(:has(.admin)) .hero .btn-silver,
body:not(:has(.admin)) .page-hero .btn-outline,
body:not(:has(.admin)) .page-hero .btn-silver,
body:not(:has(.admin)) .service-area-hero .btn-outline,
body:not(:has(.admin)) .cta-section .btn-outline,
body:not(:has(.admin)) .cta-section .btn-silver,
body:not(:has(.admin)) .site-footer .btn-outline,
body:not(:has(.admin)) .site-footer .btn-silver,
body:not(:has(.admin)) .footer .btn-outline,
body:not(:has(.admin)) .footer .btn-silver,
body:not(:has(.admin)) .promo-banner .btn-outline,
body:not(:has(.admin)) .promo-banner .btn-silver,
body:not(:has(.admin)) .join-banner .btn-outline,
body:not(:has(.admin)) .join-banner .btn-silver,
body:not(:has(.admin)) .site-header .btn-outline,
body:not(:has(.admin)) .header .btn-outline,
body:not(:has(.admin)) .sticky-call .btn-outline,
body:not(:has(.admin)) .sticky-call-bar .btn-outline,
body:not(:has(.admin)) .mobile-call-bar .btn-outline {
  color: #f2f2f2 !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

body:not(:has(.admin)) .hero .btn-outline:hover,
body:not(:has(.admin)) .hero .btn-silver:hover,
body:not(:has(.admin)) .page-hero .btn-outline:hover,
body:not(:has(.admin)) .page-hero .btn-silver:hover,
body:not(:has(.admin)) .service-area-hero .btn-outline:hover,
body:not(:has(.admin)) .cta-section .btn-outline:hover,
body:not(:has(.admin)) .cta-section .btn-silver:hover,
body:not(:has(.admin)) .site-footer .btn-outline:hover,
body:not(:has(.admin)) .site-footer .btn-silver:hover,
body:not(:has(.admin)) .footer .btn-outline:hover,
body:not(:has(.admin)) .footer .btn-silver:hover,
body:not(:has(.admin)) .promo-banner .btn-outline:hover,
body:not(:has(.admin)) .promo-banner .btn-silver:hover,
body:not(:has(.admin)) .join-banner .btn-outline:hover,
body:not(:has(.admin)) .join-banner .btn-silver:hover,
body:not(:has(.admin)) .site-header .btn-outline:hover,
body:not(:has(.admin)) .header .btn-outline:hover,
body:not(:has(.admin)) .site-header a:hover,
body:not(:has(.admin)) .header a:hover,
body:not(:has(.admin)) .topbar a:hover,
body:not(:has(.admin)) .site-footer a:hover,
body:not(:has(.admin)) .footer a:hover,
body:not(:has(.admin)) .mobile-nav a:hover,
body:not(:has(.admin)) .sticky-call .btn-outline:hover,
body:not(:has(.admin)) .sticky-call-bar .btn-outline:hover {
  color: #ffffff !important;
}

/* Primary on dark chrome stays light-on-dark or dark-on-light as designed */
body:not(:has(.admin)) .cta-section .btn-primary:hover,
body:not(:has(.admin)) .hero .btn-primary:hover,
body:not(:has(.admin)) .site-footer .btn-primary:hover {
  color: #111111 !important;
}

/* Scope nav-link hover light text to dark chrome only (not global paper) */
body:not(:has(.admin)) .section .nav-link:hover,
body:not(:has(.admin)) .page-content .nav-link:hover {
  color: #111111 !important;
  background-color: rgba(0, 0, 0, 0.06) !important;
}

/* ----- v11: hamburger Request Service contrast -----
   Mobile drawer uses btn-outline.mobile-nav-request. Global chrome rules
   forced silver text onto a white button → unreadable until hover.
   Keep light fill + dark ink at rest; hover stays black (readable). */
body:not(:has(.admin)) .mobile-nav a.btn.mobile-nav-request,
body:not(:has(.admin)) .mobile-nav .btn.mobile-nav-request,
body:not(:has(.admin)) .mobile-menu a.btn.mobile-nav-request,
body:not(:has(.admin)) a.mobile-nav-request,
body:not(:has(.admin)) .mobile-nav-request {
  background: #f0f0f0 !important;
  color: #111111 !important;
  border: 1px solid #e2e2e2 !important;
  box-shadow: none !important;
}

body:not(:has(.admin)) .mobile-nav a.btn.mobile-nav-request:hover,
body:not(:has(.admin)) .mobile-nav .btn.mobile-nav-request:hover,
body:not(:has(.admin)) .mobile-menu a.btn.mobile-nav-request:hover,
body:not(:has(.admin)) a.mobile-nav-request:hover,
body:not(:has(.admin)) .mobile-nav-request:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

/* ----- v13: Limited Offer / promo band — beat .section h2 ink -----
   .section h2 forces dark ink; promo sits inside .section so the title
   went dark-on-dark (or the band looked washed). Lock dark chrome + light type. */
body:not(:has(.admin)) .promo-banner,
body:not(:has(.admin)) .section .promo-banner,
body:not(:has(.admin)) .section-alt .promo-banner,
body:not(:has(.admin)) .join-banner,
body:not(:has(.admin)) .section .join-banner {
  background: linear-gradient(180deg, #1f1f1f 0%, #0e0e0e 100%) !important;
  color: #e8e8e8 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

body:not(:has(.admin)) .promo-banner .section-label,
body:not(:has(.admin)) .section .promo-banner .section-label,
body:not(:has(.admin)) .join-banner .section-label {
  color: #c8c8c8 !important;
}

body:not(:has(.admin)) .promo-banner h1,
body:not(:has(.admin)) .promo-banner h2,
body:not(:has(.admin)) .promo-banner h3,
body:not(:has(.admin)) .section .promo-banner h1,
body:not(:has(.admin)) .section .promo-banner h2,
body:not(:has(.admin)) .section .promo-banner h3,
body:not(:has(.admin)) .section-alt .promo-banner h2,
body:not(:has(.admin)) .join-banner h2,
body:not(:has(.admin)) .join-banner h3,
body:not(:has(.admin)) .section .join-banner h2 {
  color: #f5f5f5 !important;
  -webkit-text-fill-color: #f5f5f5 !important;
}

body:not(:has(.admin)) .promo-banner p,
body:not(:has(.admin)) .section .promo-banner p,
body:not(:has(.admin)) .join-banner p,
body:not(:has(.admin)) .section .join-banner p {
  color: #c8c8c8 !important;
}

body:not(:has(.admin)) .promo-banner .btn-primary,
body:not(:has(.admin)) .section .promo-banner .btn-primary,
body:not(:has(.admin)) .promo-banner a.btn-primary {
  background: #f0f0f0 !important;
  color: #111111 !important;
  border: 1px solid #e6e6e6 !important;
}

body:not(:has(.admin)) .promo-banner .btn-primary:hover,
body:not(:has(.admin)) .section .promo-banner .btn-primary:hover,
body:not(:has(.admin)) .promo-banner a.btn-primary:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

body:not(:has(.admin)) .promo-banner .btn-outline,
body:not(:has(.admin)) .promo-banner .btn-silver,
body:not(:has(.admin)) .section .promo-banner .btn-outline {
  background: transparent !important;
  color: #f2f2f2 !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}

body:not(:has(.admin)) .promo-banner .btn-outline:hover,
body:not(:has(.admin)) .promo-banner .btn-silver:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

/* ----- v13: back-to-top — was dark arrow on dark pill (invisible) -----
   Remapped --color-* made hover light-on-light too. Light pill + dark arrow;
   hover inverts to dark pill + white arrow. */
body:not(:has(.admin)) .back-to-top {
  background: #f0f0f0 !important;
  border: 1px solid #c8c8c8 !important;
  color: #111111 !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22) !important;
}

body:not(:has(.admin)) .back-to-top svg,
body:not(:has(.admin)) .back-to-top svg path {
  fill: currentColor !important;
  stroke: currentColor !important;
  color: inherit !important;
}

body:not(:has(.admin)) .back-to-top:hover,
body:not(:has(.admin)) .back-to-top:focus-visible {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

body:not(:has(.admin)) .back-to-top:before {
  border-color: rgba(200, 200, 200, 0.45) !important;
}


/* website-builder-tpl-v1 */
body:not(:has(.admin)) .service-card,
body:not(:has(.admin)) .services-grid > * {
  background: var(--tpl-services-card-bg, inherit);
  color: var(--tpl-services-card-text, inherit);
}
body:not(:has(.admin)) .service-card:hover {
  background: var(--tpl-services-card-hover, var(--tpl-services-card-bg, inherit));
}
body:not(:has(.admin)) .blog-card {
  background: var(--tpl-blog-card-bg, inherit);
  color: var(--tpl-blog-card-text, inherit);
}
body:not(:has(.admin)) .blog-card:hover {
  background: var(--tpl-blog-card-hover, var(--tpl-blog-card-bg, inherit));
}
body:not(:has(.admin)) .team-card {
  background: var(--tpl-team-card-bg, inherit);
  color: var(--tpl-team-card-text, inherit);
}
body:not(:has(.admin)) .gallery-item,
body:not(:has(.admin)) .gallery-card {
  background: var(--tpl-gallery-card-bg, inherit);
}
body:not(:has(.admin)) .faq-item {
  background: var(--tpl-faqs-card-bg, inherit);
  color: var(--tpl-faqs-card-text, inherit);
}


/* website-builder-blocks-v3 */
body:not(:has(.admin)) .aap-blocks { display: grid; gap: 1.1rem; }
body:not(:has(.admin)) .aap-blocks-columns { align-items: start; }
body:not(:has(.admin)) .aap-block-quote {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--theme-primary, #1a1a1a);
  background: rgba(0,0,0,0.03);
}
body:not(:has(.admin)) .aap-block-quote cite { display: block; margin-top: 0.5rem; opacity: 0.75; font-style: normal; }
body:not(:has(.admin)) .aap-block-list { margin: 0; padding-left: 1.25rem; }
body:not(:has(.admin)) .aap-block-cta { box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
body:not(:has(.admin)) .aap-block-video figcaption,
body:not(:has(.admin)) .aap-blocks figure figcaption { margin-top: 0.5rem; color: var(--theme-muted, #5c5c5c); font-size: 0.9rem; }


/* website-builder-blocks-v4 */
body:not(:has(.admin)) .aap-block-form,
body:not(:has(.admin)) .aap-block-map,
body:not(:has(.admin)) .aap-block-section {
  border-radius: var(--theme-radius, 12px);
}
body:not(:has(.admin)) .aap-block-fetch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--theme-space-sm, 0.5rem);
}
body:not(:has(.admin)) .aap-block-fetch-list li {
  padding: var(--theme-space-sm, 0.5rem) 0;
  border-bottom: 1px solid var(--theme-border, rgba(0,0,0,0.08));
}
body:not(:has(.admin)) .header-wrap.is-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* website-builder-blocks-v6 */
@media (max-width: 767px) {
  body:not(:has(.admin)) .aap-hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  body:not(:has(.admin)) .aap-hide-desktop { display: none !important; }
}
body:not(:has(.admin)) .aap-block-accordion { display: grid; gap: 0.5rem; }
body:not(:has(.admin)) .aap-acc-item {
  border: 1px solid var(--theme-border, rgba(0,0,0,0.08));
  border-radius: var(--theme-radius, 12px);
  padding: 0.35rem 0.85rem;
  background: var(--theme-surface, #fff);
}
body:not(:has(.admin)) .aap-acc-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.55rem 0;
}
body:not(:has(.admin)) .aap-acc-body { padding: 0 0 0.75rem; color: var(--theme-muted, #5c5c5c); }
body:not(:has(.admin)) .aap-block-stats .aap-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--theme-text, #1a1a1a);
}
body:not(:has(.admin)) .aap-block-stats .aap-stat-label {
  font-size: 0.85rem;
  color: var(--theme-muted, #5c5c5c);
}
body:not(:has(.admin)) .aap-site-banners { display: grid; gap: 0; }
body:not(:has(.admin)) .aap-banner {
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
}
body:not(:has(.admin)) .aap-banner-emergency {
  background: #1a1a1a;
  color: #fff;
}
body:not(:has(.admin)) .aap-banner-promo {
  background: #f3f3f3;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
body:not(:has(.admin)) .aap-block-faqs .aap-block-fetch-list,
body:not(:has(.admin)) .aap-block-team .aap-block-fetch-list,
body:not(:has(.admin)) .aap-block-gallery .aap-block-fetch-list {
  display: grid;
  gap: var(--theme-space-sm, 0.5rem);
}
body:not(:has(.admin)) .aap-block-gallery img {
  max-width: 100%;
  height: auto;
  border-radius: var(--theme-radius, 12px);
}
body:not(:has(.admin)) .aap-block-features .aap-feature {
  padding: 1rem;
  border: 1px solid var(--theme-border, rgba(0,0,0,0.08));
  border-radius: var(--theme-radius, 12px);
  background: var(--theme-surface, #fff);
}
body:not(:has(.admin)) .aap-feature-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--theme-primary, #1a1a1a);
  color: #fff;
  margin-bottom: 0.5rem;
}
body:not(:has(.admin)) .aap-block-features h4 { margin: 0 0 0.35rem; }
body:not(:has(.admin)) .aap-block-features p { margin: 0; color: var(--theme-muted, #5c5c5c); }

/* website-builder-blocks-v7 */


/* website-builder-blocks-v9 */
body:not(:has(.admin)) .aap-inline-contact {
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
}
body:not(:has(.admin)) .aap-form-input,
body:not(:has(.admin)) .aap-inline-contact input,
body:not(:has(.admin)) .aap-inline-contact textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--theme-border, rgba(0,0,0,0.12));
  border-radius: var(--theme-radius, 12px);
  background: var(--theme-surface, #fff);
  color: var(--theme-text, #1a1a1a);
  font: inherit;
}
body:not(:has(.admin)) .aap-form-ok {
  color: #0d6b3a;
  font-size: 0.92rem;
}
body:not(:has(.admin)) .aap-form-err {
  color: #b42318;
  font-size: 0.92rem;
}
body:not(:has(.admin)) .aap-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}
