/*
Theme Name: Hello Elementor Child - AAHAC
Theme URI: https://aahac.com
Description: Child theme for All American Heating & Air Conditioning. Brand design system layered on Hello Elementor.
Author: AAHAC Rebuild Team
Author URI: https://aahac.com
Template: hello-elementor
Version: 1.1.0
Text Domain: hello-elementor-child
*/

/* ============================================================
   AAHAC Design System — Brand tokens (LOCKED)
   ============================================================ */
:root {
  --aahac-navy: #0a1f44;
  --aahac-navy-deep: #07163a;
  --aahac-navy-ink: #07163a;
  --aahac-red: #c8102e;
  --aahac-red-ink: #a80a24;
  --aahac-white: #ffffff;
  --aahac-ink: #111111;
  --aahac-mute: #5b6270;
  --aahac-stripe: #f4f5f8;
  --aahac-rule: #e5e7ec;
  --aahac-silver: #c8cfd9;
  --aahac-silver-light: #e8ecf3;
  --aahac-silver-dark: #8892a0;
  --aahac-gold-star: #f6b50c;

  --aahac-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --aahac-font-head: 'Barlow Condensed', 'Oswald', 'Inter', system-ui, -apple-system, Helvetica, Arial, sans-serif;

  --aahac-shadow-card: 0 2px 6px rgba(10, 31, 68, 0.06), 0 8px 24px rgba(10, 31, 68, 0.08);
  --aahac-shadow-lift: 0 4px 10px rgba(10, 31, 68, 0.10), 0 16px 36px rgba(10, 31, 68, 0.12);

  --aahac-radius: 6px;
  --aahac-radius-lg: 10px;

  --aahac-container-max: 1200px;
}

/* ============================================================
   Base resets / typography
   ============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: var(--aahac-font-body);
  color: var(--aahac-ink);
  background: var(--aahac-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.aahac-display {
  font-family: var(--aahac-font-head);
  color: var(--aahac-navy);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); text-transform: uppercase; letter-spacing: 0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); text-transform: uppercase; letter-spacing: 0.03em; }
h4 { font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.05em; }

p { margin: 0 0 1em; }

a {
  color: var(--aahac-red);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--aahac-red-ink); text-decoration: underline; }

strong { font-weight: 700; color: var(--aahac-ink); }

/* ============================================================
   Accessibility — focus rings
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--aahac-red);
  outline-offset: 2px;
  border-radius: 3px;
}

.aahac-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================================
   Layout utilities
   ============================================================ */
.aahac-container {
  max-width: var(--aahac-container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.aahac-container--narrow { max-width: 860px; }
.aahac-container--wide   { max-width: 1340px; }

.aahac-section {
  padding: clamp(1.9rem, 4vw, 3.25rem) 0;
  position: relative;
}
.aahac-section--tight { padding: clamp(1.1rem, 2.2vw, 1.75rem) 0; }
.aahac-section--loose { padding: clamp(2.5rem, 5.5vw, 4.25rem) 0; }
.aahac-section + .aahac-section,
.aahac-section + .aahac-cta-banner,
.aahac-cta-banner + .aahac-section { margin-top: 0; }
.aahac-section > .aahac-container > *:first-child { margin-top: 0; }
.aahac-section > .aahac-container > *:last-child { margin-bottom: 0; }
.aahac-section h2 + p { margin-top: 0.5rem; }

.aahac-section--stripe { background: var(--aahac-stripe); }
.aahac-section--navy {
  background: var(--aahac-navy);
  color: var(--aahac-white);
}
.aahac-section--navy h1,
.aahac-section--navy h2,
.aahac-section--navy h3,
.aahac-section--navy h4 { color: var(--aahac-white); }
.aahac-section--navy p { color: rgba(255,255,255,0.9); }
.aahac-section--navy a { color: var(--aahac-white); text-decoration: underline; text-underline-offset: 3px; }
.aahac-section--navy a:hover { color: var(--aahac-white); text-decoration-color: var(--aahac-red); }

/* Navy with subtle crosshatch texture — matches brand card patterning */
.aahac-section--textured {
  background-color: var(--aahac-navy);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 14px);
  color: var(--aahac-white);
}
.aahac-section--textured h1,
.aahac-section--textured h2,
.aahac-section--textured h3,
.aahac-section--textured h4 { color: var(--aahac-white); }

.aahac-text-center { text-align: center; }
.aahac-text-balance { text-wrap: balance; }

.aahac-eyebrow {
  display: inline-block;
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: var(--aahac-red);
  font-weight: 700;
  margin-bottom: 0.55rem;
  line-height: 1.15;
}
.aahac-eyebrow--light { color: var(--aahac-silver-light); }
.aahac-hero .aahac-eyebrow,
.aahac-pageheader .aahac-eyebrow { font-size: clamp(1.2rem, 1.7vw, 1.55rem); letter-spacing: 0.14em; }

.aahac-display-caps {
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-weight: 800;
  line-height: 0.98;
}

/* ============================================================
   Patriotic brand accents — stars, pearl-bar, ribbon corners
   ============================================================ */
.aahac-star-arc {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  line-height: 1;
  font-size: 1.25rem;
  color: var(--aahac-silver);
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.25));
  user-select: none;
}
.aahac-star-arc > span:nth-child(1) { transform: translateY(4px) rotate(-10deg); }
.aahac-star-arc > span:nth-child(2) { transform: translateY(1px) rotate(-5deg); }
.aahac-star-arc > span:nth-child(3) { transform: translateY(0) rotate(0deg); }
.aahac-star-arc > span:nth-child(4) { transform: translateY(1px) rotate(5deg); }
.aahac-star-arc > span:nth-child(5) { transform: translateY(4px) rotate(10deg); }
.aahac-star-arc--gold { color: var(--aahac-gold-star); }
.aahac-star-arc--lg { font-size: 1.75rem; }

/* Pearl-bar divider — silver line w/ silver pearls at each end (mirrors business card) */
.aahac-pearl-bar {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 10px;
  margin: 1.25rem auto 1.5rem;
  background:
    radial-gradient(circle at center, var(--aahac-silver-light) 20%, var(--aahac-silver-dark) 55%, #525c6b 80%) 0 center / 10px 10px no-repeat,
    radial-gradient(circle at center, var(--aahac-silver-light) 20%, var(--aahac-silver-dark) 55%, #525c6b 80%) 100% center / 10px 10px no-repeat,
    linear-gradient(to right, transparent 12px, rgba(136,146,160,0.35) 12px, rgba(232,236,243,0.9) 50%, rgba(136,146,160,0.35) calc(100% - 12px), transparent calc(100% - 12px)) center / 100% 2px no-repeat;
}
.aahac-pearl-bar--short { max-width: 200px; }
.aahac-pearl-bar--wide  { max-width: 540px; }

/* Ribbon corners — diagonal red/white/navy flag stripes in bottom-left + bottom-right
   Mirrors the business card decorative corners. Parent must be position:relative with overflow:hidden. */
.aahac-ribbon-corners {
  position: relative;
  overflow: hidden;
}
.aahac-ribbon-corners::before,
.aahac-ribbon-corners::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 260px;
  height: 180px;
  pointer-events: none;
  z-index: 1;
}
.aahac-ribbon-corners::before {
  left: -2px;
  background:
    linear-gradient(45deg, transparent 46%, var(--aahac-navy) 46% 58%, transparent 58%),
    linear-gradient(45deg, transparent 38%, var(--aahac-white) 38% 42%, transparent 42%),
    linear-gradient(45deg, transparent 30%, var(--aahac-red) 30% 36%, transparent 36%);
  clip-path: polygon(0 40%, 65% 100%, 0 100%);
}
.aahac-ribbon-corners::after {
  right: -2px;
  background:
    linear-gradient(-45deg, transparent 46%, var(--aahac-navy) 46% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 38%, var(--aahac-white) 38% 42%, transparent 42%),
    linear-gradient(-45deg, transparent 30%, var(--aahac-red) 30% 36%, transparent 36%);
  clip-path: polygon(100% 40%, 35% 100%, 100% 100%);
}
@media (max-width: 640px) {
  .aahac-ribbon-corners::before,
  .aahac-ribbon-corners::after { width: 160px; height: 110px; }
}

/* Top ribbon variant — for CTA banner with corners at top */
.aahac-ribbon-corners--top::before { bottom: auto; top: -2px; clip-path: polygon(0 0, 65% 0, 0 60%); }
.aahac-ribbon-corners--top::after  { bottom: auto; top: -2px; clip-path: polygon(35% 0, 100% 0, 100% 60%); }

/* ============================================================
   Buttons
   ============================================================ */
.btn,
.btn-call,
.btn-outline-navy,
.btn-outline-white,
.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.65rem;
  min-height: 48px;
  font-family: var(--aahac-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--aahac-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover, .btn-call:hover, .btn-navy:hover,
.btn-outline-navy:hover, .btn-outline-white:hover { transform: translateY(-1px); }
.btn:active, .btn-call:active, .btn-navy:active,
.btn-outline-navy:active, .btn-outline-white:active { transform: translateY(0); }

.btn-call {
  background: var(--aahac-red);
  color: var(--aahac-white);
  border-color: var(--aahac-red);
  box-shadow: 0 4px 14px rgba(200,16,46,0.28);
}
.btn-call:hover,
.btn-call:focus {
  background: var(--aahac-red-ink);
  border-color: var(--aahac-red-ink);
  color: var(--aahac-white);
  text-decoration: none;
}
.btn-call::before {
  content: "\260E";
  font-size: 1.15rem;
  margin-right: 0.15rem;
}

.btn-navy {
  background: var(--aahac-navy);
  color: var(--aahac-white);
  border-color: var(--aahac-navy);
}
.btn-navy:hover,
.btn-navy:focus {
  background: var(--aahac-navy-ink);
  border-color: var(--aahac-navy-ink);
  color: var(--aahac-white);
  text-decoration: none;
}

.btn-outline-navy {
  background: transparent;
  color: var(--aahac-navy);
  border-color: var(--aahac-navy);
}
.btn-outline-navy:hover,
.btn-outline-navy:focus {
  background: var(--aahac-navy);
  color: var(--aahac-white);
  text-decoration: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--aahac-white);
  border-color: var(--aahac-white);
}
.btn-outline-white:hover,
.btn-outline-white:focus {
  background: var(--aahac-white);
  color: var(--aahac-navy);
  text-decoration: none;
}

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.2rem; min-height: 56px; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   Google reviews badge
   ============================================================ */
.aahac-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: var(--aahac-white);
  font-family: var(--aahac-font-head);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.aahac-google-badge__stars {
  color: var(--aahac-gold-star);
  letter-spacing: 0.08em;
  font-size: 1rem;
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.aahac-google-badge__rating { font-weight: 700; font-size: 1.05rem; }
.aahac-google-badge__count { opacity: 0.95; }
.aahac-google-badge--light {
  background: var(--aahac-white);
  border-color: var(--aahac-rule);
  color: var(--aahac-navy);
  box-shadow: var(--aahac-shadow-card);
}
.aahac-google-badge--light .aahac-google-badge__count { color: var(--aahac-mute); }
.aahac-google-badge:hover { text-decoration: none; }

/* ============================================================
   Hero
   ============================================================ */
.aahac-hero {
  position: relative;
  color: var(--aahac-white);
  padding: clamp(5rem, 11vw, 8rem) 0 clamp(5rem, 11vw, 8rem);
  background: var(--aahac-navy);
  overflow: hidden;
  isolation: isolate;
}
.aahac-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.aahac-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,31,68,0.92) 0%, rgba(10,31,68,0.75) 55%, rgba(10,31,68,0.55) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 16px);
  z-index: 1;
}
.aahac-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 780px;
}
.aahac-hero__headline {
  color: var(--aahac-white);
  font-size: clamp(2.4rem, 5.3vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.aahac-hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  margin: 0 0 1.85rem;
  color: rgba(255,255,255,0.95);
  max-width: 640px;
  line-height: 1.5;
}
.aahac-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.5rem; }
.aahac-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.75rem;
}
.aahac-hero__credential {
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.75rem;
  border-left: 2px solid var(--aahac-red);
}

/* Sub-hero / page header for non-home pages */
.aahac-pageheader {
  position: relative;
  background: var(--aahac-navy);
  color: var(--aahac-white);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
}
.aahac-pageheader__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.aahac-pageheader__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,31,68,0.85), rgba(10,31,68,0.72)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px);
  z-index: 1;
}
.aahac-pageheader__inner { position: relative; z-index: 2; max-width: 860px; }
.aahac-pageheader h1 {
  color: var(--aahac-white);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin: 0 0 0.35em;
  line-height: 1.05;
}
.aahac-pageheader__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  max-width: 720px;
}

/* ============================================================
   Trust strip (4 col desktop / 2 col tablet / stacked mobile)
   ============================================================ */
.aahac-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.aahac-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.15rem;
  border: 1px solid var(--aahac-rule);
  background: var(--aahac-white);
  border-radius: var(--aahac-radius-lg);
  gap: 0.45rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.aahac-trust__item:hover { transform: translateY(-2px); box-shadow: var(--aahac-shadow-card); }
.aahac-trust__icon {
  width: 40px; height: 40px;
  margin-bottom: 0.35rem;
  color: var(--aahac-red);
}
.aahac-trust__stat {
  font-family: var(--aahac-font-head);
  font-size: 2.2rem;
  color: var(--aahac-navy);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}
.aahac-trust__label {
  font-size: 0.98rem;
  color: var(--aahac-mute);
  line-height: 1.45;
}
.aahac-trust__label strong { color: var(--aahac-navy); }
@media (max-width: 900px) { .aahac-trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .aahac-trust { grid-template-columns: 1fr; } }

/* ============================================================
   Service cards (3-up / 2-up / 1-up)
   ============================================================ */
.aahac-card {
  background: var(--aahac-white);
  border: 1px solid var(--aahac-rule);
  border-radius: var(--aahac-radius-lg);
  box-shadow: var(--aahac-shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.aahac-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--aahac-shadow-lift);
}
.aahac-card__media {
  position: relative;
  overflow: hidden;
}
.aahac-card__media img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.3s ease;
}
.aahac-card__media--show-top img { object-position: center 18%; }
.aahac-card__media--show-faces img { object-position: center 22%; }
.aahac-card:hover .aahac-card__media img { transform: scale(1.04); }
.aahac-card__body {
  padding: 1.35rem 1.35rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.aahac-card__title {
  font-family: var(--aahac-font-head);
  color: var(--aahac-navy);
  font-size: 1.35rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.aahac-card__text { color: var(--aahac-mute); margin: 0; line-height: 1.55; }
.aahac-card__cta { margin-top: auto; padding-top: 0.85rem; }
.aahac-card__cta a {
  font-family: var(--aahac-font-head);
  color: var(--aahac-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.95rem;
}
.aahac-card__cta a::after { content: " \2192"; }

/* Red top accent stripe on each card */
.aahac-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aahac-red), var(--aahac-red) 40%, var(--aahac-navy));
  z-index: 2;
}

.aahac-card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) { .aahac-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .aahac-card-grid { grid-template-columns: 1fr; } }

.aahac-card-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .aahac-card-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .aahac-card-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .aahac-card-grid--5 { grid-template-columns: 1fr; } }

/* Red top accent divider (4px) for section titles */
.aahac-accent-top {
  position: relative;
  padding-top: 1.25rem;
}
.aahac-accent-top::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--aahac-red);
  border-radius: 2px;
}
.aahac-accent-top--center { text-align: center; padding-top: 1.5rem; }
.aahac-accent-top--center::before { left: 50%; transform: translateX(-50%); }

/* ============================================================
   Feature grid (icon + heading + paragraph, 2x2 or 3x2)
   ============================================================ */
.aahac-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}
.aahac-feature {
  padding: 1.25rem 0 1.25rem 0;
  position: relative;
}
.aahac-feature h3 {
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}
.aahac-feature__lede {
  display: inline-block;
  font-family: var(--aahac-font-head);
  color: var(--aahac-red);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.aahac-feature p { color: var(--aahac-mute); margin: 0; }
@media (max-width: 700px) { .aahac-features { grid-template-columns: 1fr; gap: 1rem; } }

/* ============================================================
   Process steps (numbered)
   ============================================================ */
.aahac-process {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  counter-reset: aahac-step;
}
.aahac-process li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--aahac-rule);
  counter-increment: aahac-step;
}
.aahac-process li:first-child { padding-top: 0; }
.aahac-process li:last-child { border-bottom: 0; padding-bottom: 0; }
.aahac-process li::before {
  content: counter(aahac-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--aahac-navy);
  color: var(--aahac-white);
  border-radius: 50%;
  font-family: var(--aahac-font-head);
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(10,31,68,0.22);
  border: 2px solid var(--aahac-red);
}
.aahac-process h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.25rem 0 0.2rem;
  color: var(--aahac-navy);
}
.aahac-process p { color: var(--aahac-mute); margin: 0; }

/* ============================================================
   Checklist
   ============================================================ */
.aahac-checklist {
  list-style: none;
  padding: 0; margin: 0.75rem 0;
}
.aahac-checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  line-height: 1.55;
}
.aahac-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--aahac-red);
  color: var(--aahac-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 3px;
}

/* ============================================================
   Testimonial quote
   ============================================================ */
.aahac-quote {
  background: var(--aahac-white);
  border: 1px solid var(--aahac-rule);
  border-left: 4px solid var(--aahac-red);
  border-radius: var(--aahac-radius);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--aahac-shadow-card);
  position: relative;
}
.aahac-quote::before {
  content: "\201C";
  position: absolute;
  top: -0.1rem; left: 1rem;
  font-family: Georgia, serif;
  color: var(--aahac-red);
  font-size: 3.5rem;
  line-height: 1;
  opacity: 0.3;
  pointer-events: none;
}
.aahac-quote__text {
  font-size: 1.1rem;
  color: var(--aahac-ink);
  font-style: italic;
  margin: 0 0 0.75rem;
  position: relative;
  z-index: 1;
}
.aahac-quote__cite {
  font-family: var(--aahac-font-head);
  color: var(--aahac-navy);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.aahac-quote__stars {
  color: var(--aahac-gold-star);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.aahac-quote__flag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  background: var(--aahac-stripe);
  color: var(--aahac-mute);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--aahac-font-head);
  vertical-align: middle;
}

/* ============================================================
   CTA banner
   ============================================================ */
.aahac-cta-banner {
  background: var(--aahac-navy);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px);
  color: var(--aahac-white);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.aahac-cta-banner h2 {
  color: var(--aahac-white);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.aahac-cta-banner p { color: rgba(255,255,255,0.92); margin: 0 0 1.5rem; font-size: 1.1rem; }
.aahac-cta-banner__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 1rem; }

/* ============================================================
   Service area city card
   ============================================================ */
.aahac-city-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .aahac-city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .aahac-city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .aahac-city-grid { grid-template-columns: 1fr; } }

.aahac-city {
  display: block;
  padding: 1.5rem 1.25rem;
  background: var(--aahac-white);
  border: 1px solid var(--aahac-rule);
  border-radius: var(--aahac-radius-lg);
  box-shadow: var(--aahac-shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.aahac-city::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--aahac-red);
}
.aahac-city:hover {
  transform: translateY(-3px);
  box-shadow: var(--aahac-shadow-lift);
  border-color: var(--aahac-navy);
  text-decoration: none;
}
.aahac-city__name {
  font-family: var(--aahac-font-head);
  color: var(--aahac-navy);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.4rem 0 0.1rem;
}
.aahac-city__tag {
  display: block;
  font-size: 0.85rem;
  color: var(--aahac-red);
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.aahac-city__sub { color: var(--aahac-mute); font-size: 0.95rem; margin: 0; }
.aahac-city--featured {
  background: var(--aahac-navy);
  color: var(--aahac-white);
  border-color: var(--aahac-navy);
}
.aahac-city--featured .aahac-city__name { color: var(--aahac-white); }
.aahac-city--featured .aahac-city__sub  { color: rgba(255,255,255,0.85); }
.aahac-city--featured .aahac-city__tag  { color: var(--aahac-gold-star); }

/* ============================================================
   Gallery — CSS columns masonry
   ============================================================ */
.aahac-gallery {
  columns: 3;
  column-gap: 1rem;
}
.aahac-gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--aahac-radius);
  overflow: hidden;
  display: block;
  position: relative;
  box-shadow: var(--aahac-shadow-card);
}
.aahac-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.aahac-gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}
@media (max-width: 900px) { .aahac-gallery { columns: 2; } }
@media (max-width: 560px) { .aahac-gallery { columns: 1; } }

/* ============================================================
   Two-up split row (contact page info/form)
   ============================================================ */
.aahac-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .aahac-split { grid-template-columns: 1fr; gap: 1.75rem; } }
.aahac-split--even { grid-template-columns: 1fr 1fr; }

.aahac-info-block {
  background: var(--aahac-navy);
  color: var(--aahac-white);
  padding: 1.75rem;
  border-radius: var(--aahac-radius-lg);
  box-shadow: var(--aahac-shadow-card);
}
.aahac-info-block h3 { color: var(--aahac-white); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0; }
.aahac-info-block a { color: var(--aahac-white); text-decoration: underline; text-underline-offset: 3px; }
.aahac-info-block a:hover { text-decoration-color: var(--aahac-red); }
.aahac-info-block__phone {
  font-family: var(--aahac-font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0.25rem 0 0.5rem;
  display: block;
  color: var(--aahac-white);
}

/* ============================================================
   Announcement bar (very top, above header)
   ============================================================ */
.aahac-announce {
  background: var(--aahac-navy);
  color: var(--aahac-white);
  font-family: var(--aahac-font-head);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.aahac-announce__inner {
  max-width: var(--aahac-container-max);
  margin: 0 auto;
  padding: 0.45rem 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.aahac-announce a {
  color: var(--aahac-white);
  text-decoration: none;
  font-weight: 700;
}
.aahac-announce a:hover { color: var(--aahac-gold-star); text-decoration: none; }
.aahac-announce__rating { display: inline-flex; align-items: center; gap: 0.35rem; }
.aahac-announce__rating .stars { color: var(--aahac-gold-star); letter-spacing: 0.1em; }
.aahac-announce__phone::before { content: "\260E"; margin-right: 0.35rem; }
@media (max-width: 640px) {
  .aahac-announce__rating { display: none; }
  .aahac-announce__inner { justify-content: center; }
}

/* ============================================================
   Star-stripe decorative divider (subtle, optional)
   ============================================================ */
.star-stripe {
  height: 6px;
  background:
    linear-gradient(90deg, var(--aahac-red) 0%, var(--aahac-red) 33%, var(--aahac-white) 33%, var(--aahac-white) 66%, var(--aahac-navy) 66%, var(--aahac-navy) 100%);
  border-top: 1px solid var(--aahac-rule);
  border-bottom: 1px solid var(--aahac-rule);
}
.star-stripe--thin { height: 3px; }

/* ============================================================
   Footer
   ============================================================ */
.aahac-custom-footer {
  background: var(--aahac-navy-deep);
  color: rgba(255,255,255,0.88);
  padding: 3.5rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 4px solid var(--aahac-red);
  position: relative;
  overflow: hidden;
}
.aahac-custom-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.aahac-custom-footer a { color: var(--aahac-white); }
.aahac-custom-footer a:hover { color: var(--aahac-gold-star); }

.aahac-footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}
.aahac-footer__col h4 {
  color: var(--aahac-white);
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin: 0 0 0.75rem;
  border-bottom: 2px solid var(--aahac-red);
  padding-bottom: 0.45rem;
}
.aahac-footer__col p,
.aahac-footer__col li { font-size: 0.95rem; line-height: 1.65; }
.aahac-footer__col ul { list-style: none; padding: 0; margin: 0; }
.aahac-footer__col li { margin-bottom: 0.35rem; }
.aahac-footer__tagline {
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--aahac-gold-star);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}
.aahac-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}
.aahac-footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1100px) { .aahac-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .aahac-footer__cols { grid-template-columns: 1fr; } }

/* Hide Hello Elementor's default footer once our custom footer renders */
body .site-footer { display: none !important; }

/* ============================================================
   Header / nav (light touch — do not override Hello layout)
   ============================================================ */
.site-header {
  border-bottom: 1px solid var(--aahac-rule);
}
.site-header a.site-logo img { max-height: 72px; width: auto; }
.site-navigation .menu li a {
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--aahac-navy);
  padding: 0.5rem 0.85rem;
}
.site-navigation .menu li a:hover,
.site-navigation .menu li.current-menu-item a {
  color: var(--aahac-red);
  text-decoration: none;
}

/* Custom header (overrides Hello Elementor default) */
.aahac-site-header {
  background: var(--aahac-white);
  border-bottom: 1px solid var(--aahac-rule);
  box-shadow: 0 2px 10px rgba(10,31,68,0.05);
  position: relative;
  z-index: 50;
}
.aahac-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.aahac-header-logo img,
.aahac-header-logo .custom-logo {
  max-height: 72px;
  width: auto;
  display: block;
}
.aahac-header-logo__text {
  font-family: var(--aahac-font-head);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--aahac-navy);
  font-weight: 800;
  text-decoration: none;
}

/* Primary nav */
.aahac-nav { position: relative; display: flex; align-items: center; }
.aahac-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.1rem;
  align-items: center;
}
.aahac-nav__menu li { position: relative; }
.aahac-nav__menu a {
  display: block;
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--aahac-navy);
  text-decoration: none;
  padding: 0.6rem 0.85rem;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.aahac-nav__menu a:hover,
.aahac-nav__menu .current-menu-item > a,
.aahac-nav__menu .current-menu-parent > a,
.aahac-nav__menu .current-menu-ancestor > a { color: var(--aahac-red); }

/* Submenu (Service Area cities) */
.aahac-nav__menu .sub-menu {
  list-style: none;
  padding: 0.35rem 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--aahac-white);
  border: 1px solid var(--aahac-rule);
  border-top: 3px solid var(--aahac-red);
  border-radius: 0 0 var(--aahac-radius) var(--aahac-radius);
  box-shadow: 0 10px 24px rgba(10,31,68,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
}
.aahac-nav__menu li:hover > .sub-menu,
.aahac-nav__menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.aahac-nav__menu .sub-menu a {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 0;
  white-space: nowrap;
}
.aahac-nav__menu .sub-menu a:hover { background: var(--aahac-stripe); color: var(--aahac-red); }

.aahac-nav__toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--aahac-navy);
  border-radius: 4px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--aahac-navy);
}
.aahac-nav__bars,
.aahac-nav__bars::before,
.aahac-nav__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.aahac-nav__bars::before,
.aahac-nav__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.aahac-nav__bars::before { top: -7px; }
.aahac-nav__bars::after  { top: 7px; }

/* Header phone CTA (desktop) */
.aahac-header-cta-wrap { display: flex; align-items: center; }
.aahac-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--aahac-red);
  color: var(--aahac-white);
  font-family: var(--aahac-font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: var(--aahac-radius);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(200,16,46,0.22);
}
.aahac-header-cta:hover { background: var(--aahac-red-ink); color: var(--aahac-white); text-decoration: none; }
.aahac-header-cta::before { content: "\260E"; margin-right: 0.25rem; }

/* Mobile nav collapse — hamburger + drawer */
@media (max-width: 900px) {
  .aahac-nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .aahac-nav__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 260px;
    flex-direction: column;
    padding: 0.5rem;
    background: var(--aahac-white);
    border: 1px solid var(--aahac-rule);
    border-top: 3px solid var(--aahac-red);
    border-radius: var(--aahac-radius);
    box-shadow: 0 12px 30px rgba(10,31,68,0.2);
    z-index: 100;
  }
  .aahac-nav.is-open .aahac-nav__menu { display: flex; }
  .aahac-nav__menu a { padding: 0.75rem 1rem; }
  .aahac-nav__menu .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--aahac-red);
    border-radius: 0;
    padding: 0 0 0.25rem 0.5rem;
    margin: 0 0 0.25rem 0.5rem;
  }
  .aahac-nav__menu .sub-menu a { padding: 0.55rem 0.75rem; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .aahac-header-inner { gap: 0.5rem; }
  .aahac-header-cta { padding: 0.5rem 0.75rem; font-size: 0.9rem; }
}

/* ============================================================
   Mobile sticky Call CTA (≤ 768px)
   ============================================================ */
.aahac-sticky-call {
  display: none;
}
@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .aahac-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 64px;
    min-height: 48px;
    background: var(--aahac-red);
    color: var(--aahac-white);
    font-family: var(--aahac-font-head);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.22);
    border-top: 3px solid var(--aahac-white);
  }
  .aahac-sticky-call:hover,
  .aahac-sticky-call:focus {
    background: var(--aahac-red-ink);
    color: var(--aahac-white);
    text-decoration: none;
  }
  .aahac-sticky-call::before {
    content: "\260E";
    margin-right: 0.5rem;
    font-size: 1.35rem;
  }
}

/* ============================================================
   Helper: hide on small / large
   ============================================================ */
@media (max-width: 768px) { .hide-mobile { display: none !important; } }
@media (min-width: 769px) { .hide-desktop { display: none !important; } }

/* ============================================================
   Tables, forms (baseline)
   ============================================================ */
input[type="text"], input[type="email"], input[type="tel"],
input[type="url"], input[type="search"], textarea, select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--aahac-rule);
  border-radius: var(--aahac-radius);
  font: inherit;
  color: var(--aahac-ink);
  background: var(--aahac-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--aahac-navy);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.15);
}

/* WPForms polish */
.wpforms-container .wpforms-submit {
  background: var(--aahac-red) !important;
  color: var(--aahac-white) !important;
  border: 2px solid var(--aahac-red) !important;
  font-family: var(--aahac-font-head) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 700 !important;
  padding: 0.9rem 1.75rem !important;
  border-radius: var(--aahac-radius) !important;
  min-height: 48px !important;
  font-size: 1.05rem !important;
}
.wpforms-container .wpforms-submit:hover {
  background: var(--aahac-red-ink) !important;
  border-color: var(--aahac-red-ink) !important;
}

/* ============================================================
   Team photo / person card
   ============================================================ */
.aahac-person { text-align: center; }
.aahac-person__photo img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--aahac-white);
  box-shadow: 0 6px 20px rgba(10,31,68,0.22);
  margin: 0 auto;
  display: block;
}
.aahac-person__name {
  font-family: var(--aahac-font-head);
  color: var(--aahac-navy);
  font-size: 1.2rem;
  margin: 0.85rem 0 0.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.aahac-person__role {
  color: var(--aahac-mute);
  font-size: 0.95rem;
  margin: 0;
}

/* Team grid */
.aahac-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (max-width: 900px) { .aahac-team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   Credentials strip (license + epa + fam-owned + years)
   ============================================================ */
.aahac-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--aahac-rule);
  border-bottom: 1px solid var(--aahac-rule);
  text-align: center;
}
.aahac-credentials__item {
  padding: 0.5rem 0.75rem;
  border-right: 1px solid var(--aahac-rule);
}
.aahac-credentials__item:last-child { border-right: 0; }
.aahac-credentials__top {
  font-family: var(--aahac-font-head);
  color: var(--aahac-navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1rem;
}
.aahac-credentials__bot {
  font-size: 0.85rem;
  color: var(--aahac-mute);
  margin-top: 0.15rem;
}
@media (max-width: 780px) {
  .aahac-credentials { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .aahac-credentials__item { border-right: 0; border-bottom: 1px solid var(--aahac-rule); padding: 0.85rem 0.5rem; }
  .aahac-credentials__item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================================
   Gutenberg block compatibility — constrain page content width
   ============================================================ */
.entry-content,
.page-content { max-width: none; }

/* Print — keep the sticky CTA out of print */
@media print {
  .aahac-sticky-call, .aahac-announce { display: none !important; }
  body { padding-bottom: 0 !important; }
}
