/* ═══════════════════════════════════════════════════════════════════════════
   COPPER STATE GARAGE PROS — STYLES v2.0
   Built by B.O.S.S. — Brave Ones Smart Solutions | bossdoesit.com
   Visual upgrade: committed to dark/authoritative direction (TopShield standard)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --primary:    #223439;
  --accent:     #b04f22;
  --tan:        #dacab1;
  --refined:    #a9a190;
  --beige:      #ddcdb4;

  /* Functional neutrals */
  --white:      #ffffff;
  --black:      #000000;
  --body:       #1f1f1f;
  --surface:    #f5f5f5;
  --muted:      #a9a190;

  /* Typography — Oswald display + Raleway body */
  --font-d:     'Oswald', sans-serif;
  --font-b:     'Raleway', sans-serif;

  /* Layout */
  --mw:         1280px;
  --pad:        clamp(16px, 4vw, 40px);
  --sp:         clamp(56px, 8vw, 96px);

  /* Effects */
  --tr:         0.2s ease;
  --sh:         0 2px 14px rgba(34, 52, 57, 0.10);
  --sh-lg:      0 8px 32px rgba(34, 52, 57, 0.18);

  /* Spacing scale */
  --s-1:  0.25rem;  --s-2:  0.5rem;   --s-3:  0.75rem;
  --s-4:  1rem;     --s-5:  1.25rem;  --s-6:  1.5rem;
  --s-8:  2rem;     --s-10: 2.5rem;   --s-12: 3rem;
  --s-16: 4rem;     --s-20: 5rem;     --s-24: 6rem;

  --container-narrow: 880px;
  --radius: 0px;
  --radius-lg: 0px;
}

/* ───── ACCESSIBILITY ─────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-d);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  z-index: 100;
}
.skip-link:focus { left: var(--s-3); top: var(--s-3); }

/* ───── RESET / BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color var(--tr) ease; }
a:hover { color: var(--accent); }

button { font-family: inherit; cursor: pointer; }

/* ── HEADINGS — Oswald, uppercase, tight ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 var(--s-4);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

/* ───── LAYOUT PRIMITIVES ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container-narrow { max-width: var(--container-narrow); }

.section { padding: var(--sp) 0; }

.section-tan { background: var(--tan); }
.section-primary {
  background: var(--primary);
  color: var(--white);
}
.section-primary h1,
.section-primary h2,
.section-primary h3,
.section-primary h4 { color: var(--white); }
.section-primary .lede,
.section-primary p { color: rgba(255,255,255,0.85); }
.section-primary .review-card { color: var(--body); }
.section-primary .review-card .review-text,
.section-primary .review-card .review-author,
.section-primary .review-card .review-meta { color: var(--body); }

/* Legacy aliases */
.section-sand  { background: var(--tan); }
.section-cream { background: var(--tan); }
.section-teal  { background: var(--primary); color: var(--white); }
.section-teal h1,.section-teal h2,.section-teal h3 { color: var(--white); }

.eyebrow {
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-3);
  display: block;
}
.section-teal .eyebrow,
.section-primary .eyebrow { color: var(--tan); }

.lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body);
  max-width: 60ch;
  font-family: var(--font-b);
  font-weight: 400;
}
.section-teal .lede { color: rgba(255,255,255,0.85); }

/* ───── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-6);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--tr) ease;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-copper {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 3px 12px rgba(176,79,34,0.30);
}
.btn-copper:hover {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 22px rgba(176,79,34,0.44);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.section-teal .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.section-teal .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg { padding: var(--s-5) var(--s-8); font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ───── HEADER / NAV — dark authoritative treatment ───────────────────────── */
.site-header,
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.brand-logo {
  height: 85px !important;
  width: auto;
  max-height: 85px !important;
  min-height: 85px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0 !important;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 72px !important;
    max-height: 72px !important;
    min-height: 72px !important;
  }
}

/* Header parent */
.site-header .container {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.nav {
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
  margin-left: auto !important;
  padding: var(--s-3) 0;
  width: 100%;
}

.brand,
a.brand {
  margin-right: auto !important;
  margin-left: 0 !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  display: flex;
  align-items: center;
  order: 0 !important;
}

.nav-links,
.nav-phone,
.nav-toggle {
  margin-left: 0 !important;
}

.nav-phone  { margin-right: 0.5rem !important; }
.nav-toggle { margin-right: 0 !important; }

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
}

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--tr), border-color var(--tr);
}
.nav-links a:hover {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.nav-phone {
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--tan);
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--s-2);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg { color: var(--accent); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  padding: 0;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform var(--tr) ease;
}

@media (min-width: 768px)  { .nav-links { display: flex; } .nav-toggle { display: none; } }
@media (max-width: 1023px) and (min-width: 769px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.75rem; }
}
@media (max-width: 1023px) {
  .brand { order: 1; }
  .nav-phone { order: 2; margin-right: 0.5rem; }
  .nav-toggle { order: 3; margin-left: 0; }
}
@media (max-width: 768px) {
  .nav { padding: 0.75rem 0.875rem; gap: 0.5rem; }
  .brand-logo { height: 44px !important; max-height: 44px !important; min-height: 44px !important; }
  .nav-phone { display: flex !important; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: var(--tan); white-space: nowrap; }
  .nav-links { display: none !important; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--s-4) var(--s-6);
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--s-1);
}
.mobile-nav a {
  display: block;
  padding: var(--s-3) 0;
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.80);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: var(--s-4); }

@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

/* ───── HERO — photographic, heavy overlay ────────────────────────────────── */
.hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: var(--s-16) 0 var(--s-20);
  min-height: 660px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) { .hero { min-height: 560px; } }

.hero-grid {
  display: grid;
  gap: var(--s-12);
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: var(--s-16); }
}

.hero-content { max-width: 640px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); margin-bottom: var(--s-5); }
.hero h1 .accent { color: var(--accent); }

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: var(--s-8);
  font-family: var(--font-b);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: var(--s-8);
}

/* ── PHOTOGRAPHIC HERO ── */
.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
}

/* Strong directional overlay — primary dark left to transparent right */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34,52,57,0.90) 0%,
    rgba(34,52,57,0.72) 55%,
    rgba(34,52,57,0.40) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Subtle diagonal texture on top of overlay */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.012) 0,
    rgba(255,255,255,0.012) 1px,
    transparent 1px,
    transparent 56px
  );
  pointer-events: none;
  z-index: 0;
}

.hero-photo > .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
}

.hero-photo .hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.hero-photo h1           { color: var(--white); }
.hero-photo h1 .accent   { color: var(--accent); }
.hero-photo .hero-lede   { color: rgba(255,255,255,0.90); }

/* Hero eyebrow on photo */
.hero-photo .eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--tan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Hero CTA buttons on dark overlay */
.hero-photo .hero-cta .btn {
  min-width: 220px;
  padding: 1rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-photo .btn-primary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}
.hero-photo .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero-photo .btn-copper {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  box-shadow: 0 3px 12px rgba(176,79,34,0.40);
}
.hero-photo .btn-copper:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Proof row below CTAs */
.hero-proof-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-proof-item {
  font-family: var(--font-d);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.proof-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-photo { background-image: url('/garage-door-repair-san-tan-valley-az.webp') !important; background-position: center 60%; }
  .hero-photo > .container,
  .hero-photo .hero-content { text-align: center; align-items: center; }
  .hero-photo .eyebrow, .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-photo h1, .hero-photo .hero-lede, .hero-photo p { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-photo .hero-cta { justify-content: center; align-items: center; flex-direction: column; }
  .hero-photo .hero-cta .btn { width: 100%; max-width: 320px; }
  .hero-proof-row { justify-content: center; }
}

/* Hero trust pills (legacy — kept for compatibility) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  align-items: center;
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-d);
}
.trust-item svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* ───── TRUST BAR ─────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--body);
  color: var(--white);
  padding: var(--s-4) 0;
  border-bottom: 2px solid rgba(176,79,34,0.35);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3) var(--s-6);
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.trust-bar-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.trust-bar-item.trust-bar-rating::before { display: none; }
.trust-bar-item.trust-bar-rating { color: var(--accent); }
.trust-bar-item.trust-bar-rating svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 768px) {
  .trust-bar-inner { justify-content: center; gap: var(--s-3) var(--s-4); }
  .trust-bar-item { font-size: 0.7rem; }
}

/* ───── PAGE HEADER (inner pages) ─────────────────────────────────────────── */
.page-header {
  background: var(--primary);
  color: var(--white);
  padding: var(--s-16) 0 var(--s-12);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 0%, rgba(176,79,34,0.20), transparent 50%);
  pointer-events: none;
}
.page-header > .container { position: relative; }
.page-header .eyebrow { color: var(--tan); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); max-width: 24ch; }
.page-header p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 60ch; margin-top: var(--s-4); }

/* Page-header-photo */
.page-header-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34,52,57,0.88) 0%, rgba(34,52,57,0.50) 100%);
  pointer-events: none;
}
.page-header-photo > .container { position: relative; z-index: 1; }
.page-header-photo h1        { color: var(--white); }
.page-header-photo p         { color: rgba(255,255,255,0.92); }
.page-header-photo .breadcrumbs { color: rgba(255,255,255,0.85); }
.page-header-photo .breadcrumbs a { color: var(--tan); }
.page-header-photo .breadcrumbs a:hover { color: var(--white); }
.page-header-photo .breadcrumbs span { color: rgba(255,255,255,0.5); }
.page-header-photo .eyebrow  { color: var(--tan); }
.page-header-photo h1 .accent { color: var(--accent); }

.page-header-photo .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.page-header-photo .btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.page-header-photo .btn-copper {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.page-header-photo .btn-copper:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--accent);
}
.page-header-photo .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.page-header-photo .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ── PAGE HEADER CTA ROW ── */
.page-header-cta,
.prose-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
  align-items: center;
}

.page-header-cta .btn,
.prose-cta .btn {
  min-width: 200px;
  padding: 0.9rem 1.75rem;
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .page-header-cta,
  .prose-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .page-header-cta .btn,
  .prose-cta .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }
}

.breadcrumbs {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s-4);
  font-family: var(--font-d);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { color: rgba(255,255,255,0.5); margin: 0 var(--s-2); }

/* ───── SERVICES GRID ─────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  max-width: var(--mw);
  margin: 0 auto;
}

/* Centered grid variants for incomplete rows */
.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}

.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}

@media (max-width: 1023px) {
  .services-grid,
  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid,
  .services-grid-3,
  .services-grid-2 {
    grid-template-columns: 1fr;
  }
}

.services-grid > *,
.services-grid-3 > *,
.services-grid-2 > * {
  flex: unset;
  max-width: unset;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(169,161,144,0.35);
  border-top: 3px solid transparent;
  padding: var(--s-6);
  transition: all var(--tr) ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--primary);
  border-top-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.service-card:hover h3,
.service-card:hover .service-link { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.78); }
.service-card:hover .service-icon {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--accent);
  margin-bottom: var(--s-4);
  transition: all var(--tr) ease;
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 { font-size: 1.05rem; margin-bottom: var(--s-2); transition: color var(--tr); }
.service-card p  { font-size: 0.9rem; color: var(--body); margin-bottom: var(--s-4); flex-grow: 1; transition: color var(--tr); }

.service-link {
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: color var(--tr);
}
.service-link::after { content: '→'; transition: transform var(--tr) ease; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ───── CITY GRID ─────────────────────────────────────────────────────────── */
.city-grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 480px)  { .city-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .city-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(5,1fr); } }

.city-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid rgba(169,161,144,0.40);
  text-align: center;
  text-decoration: none;
  color: var(--primary);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--tr) ease;
}
.city-tile:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.city-tile-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.city-tile-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ───── REVIEWS ───────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }

.review-card {
  background: var(--white);
  border: 1px solid rgba(169,161,144,0.30);
  border-top: 3px solid var(--accent);
  padding: var(--s-6);
  position: relative;
  transition: box-shadow var(--tr);
}
.review-card:hover { box-shadow: var(--sh-lg); }

.review-stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: var(--s-3); line-height: 1; }
.review-text  { font-size: 0.9rem; line-height: 1.75; color: var(--body); font-style: italic; margin-bottom: var(--s-4); }
.review-author { font-family: var(--font-d); font-weight: 700; font-size: 0.9rem; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase; }
.review-meta   { display: flex; flex-direction: column; gap: 2px; margin-top: var(--s-2); }
.review-platform { font-size: 0.7rem; color: var(--refined); letter-spacing: 0.06em; text-transform: uppercase; }

.reviews-cta-wrapper { text-align: center; margin-top: 3rem; }
.reviews-google-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: 1rem 2rem;
  font-family: var(--font-d);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--tr);
}
.reviews-google-cta:hover { background: var(--primary); color: var(--white) !important; }
.reviews-google-cta .google-icon { flex-shrink: 0; }

/* ───── PROCESS — numbered circles with connector ─────────────────────────── */
.process {
  display: grid;
  gap: var(--s-8);
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) {
  .process {
    grid-template-columns: repeat(3,1fr);
  }
  /* Horizontal connector line between steps */
  .process::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 16.6%;
    right: 16.6%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(176,79,34,0.3));
    z-index: 0;
  }
}

.process-step { position: relative; z-index: 1; }

/* Numbered circle */
.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--s-5);
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: all var(--tr) ease;
  box-shadow: 0 4px 12px rgba(176,79,34,0.30);
}
.process-step:hover .process-num {
  background: var(--primary);
  border-color: var(--accent);
  transform: scale(1.08);
}

.section-tan .process-num  { border-color: var(--tan); }
.section-tan .process-step:hover .process-num { border-color: var(--accent); }

.process-step h3 { font-size: 1.1rem; margin-bottom: var(--s-3); }
.process-step p  { color: var(--body); font-size: 0.9rem; font-family: var(--font-b); }

/* ───── CTA BAND ──────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--primary);
  color: var(--white);
  padding: var(--s-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.008) 0,
    rgba(255,255,255,0.008) 1px,
    transparent 1px,
    transparent 56px
  );
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band h2      { color: var(--white); margin-bottom: var(--s-4); }
.cta-band p       { color: rgba(255,255,255,0.80); font-size: 1.05rem; max-width: 50ch; margin: 0 auto var(--s-6); font-family: var(--font-b); }

.cta-band .btn-primary,
.cta-band .btn-copper {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 3px 12px rgba(176,79,34,0.35);
}
.cta-band .btn-primary:hover,
.cta-band .btn-copper:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cta-band .btn-outline,
.cta-band .btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.cta-band .btn-outline:hover,
.cta-band .btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cta-band .btn {
  min-width: 220px;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band .btn    { width: 100%; max-width: 320px; }
}

/* ───── SPECIALS / PRICING ────────────────────────────────────────────────── */
.specials-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .specials-grid { grid-template-columns: repeat(3,1fr); } }

.special-card {
  background: var(--white);
  border: 1px solid rgba(169,161,144,0.35);
  border-top: 3px solid var(--accent);
  padding: var(--s-8);
  text-align: center;
  position: relative;
  transition: all var(--tr) ease;
}
.special-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }

.special-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
  font-family: var(--font-d);
}
.special-price {
  font-family: var(--font-d);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: var(--s-2) 0;
}
.special-price small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--refined);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--s-1);
  font-family: var(--font-b);
}
.special-card h3 { font-size: 1rem; margin-bottom: var(--s-3); }
.special-card p  { font-size: 0.875rem; color: var(--body); margin-bottom: var(--s-5); font-family: var(--font-b); }

/* ───── FORM ──────────────────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid rgba(169,161,144,0.35);
  padding: var(--s-8);
  box-shadow: var(--sh);
  border-top: 4px solid var(--accent);
}
.form-row { margin-bottom: var(--s-5); }
.form-grid-2 { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 480px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-row label {
  display: block;
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s-2);
}
.form-row label .req { color: var(--accent); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--body);
  background: var(--white);
  border: 1.5px solid rgba(169,161,144,0.50);
  border-radius: 0;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176,79,34,0.12);
}
.form-row textarea  { resize: vertical; min-height: 120px; }
.form-disclaimer    { font-size: 0.8rem; color: var(--body); opacity: 0.65; margin-top: var(--s-4); text-align: center; font-family: var(--font-b); }
.hp-field           { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ───── FAQ ───────────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(169,161,144,0.40); padding: var(--s-5) 0; }
.faq-item summary {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-2) 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform var(--tr) ease;
  flex-shrink: 0;
  font-family: var(--font-b);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: var(--s-3); color: var(--body); font-size: 0.9rem; line-height: 1.75; font-family: var(--font-b); }

/* ───── CONTENT / PROSE ───────────────────────────────────────────────────── */
.prose { max-width: 70ch; font-size: 1rem; line-height: 1.75; color: var(--body); font-family: var(--font-b); }
.prose h2 { margin-top: var(--s-12); margin-bottom: var(--s-4); }
.prose h3 { margin-top: var(--s-8); margin-bottom: var(--s-3); }
.prose ul,.prose ol { padding-left: var(--s-6); margin: 0 0 var(--s-4); }
.prose li  { margin-bottom: var(--s-2); font-family: var(--font-b); }
.prose ul li::marker { color: var(--accent); }
.prose strong { color: var(--primary); font-weight: 700; }

/* Two-column inner layout */
.two-col { display: grid; gap: var(--s-12); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1.3fr 1fr; gap: var(--s-16); } }

.sidebar-figure { margin: 0 0 var(--s-6); padding: 0; }
.sidebar-figure img { width: 100%; height: auto; display: block; }
.sidebar-figure figcaption { margin-top: var(--s-3); font-family: var(--font-d); font-size: 0.75rem; font-style: italic; color: var(--muted); text-align: center; }

.sidebar-card {
  background: var(--primary);
  padding: var(--s-6);
  position: sticky;
  top: 80px;
  color: var(--white);
  align-self: start;
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: var(--s-3); color: var(--white); }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tan);
  text-decoration: none;
  margin: var(--s-3) 0;
  letter-spacing: 0.04em;
}
.sidebar-phone:hover { color: var(--accent); }

.sidebar-list { list-style: none; margin: var(--s-4) 0; padding: 0; }
.sidebar-list li {
  padding: var(--s-2) 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.80);
  display: flex;
  gap: var(--s-2);
  font-family: var(--font-b);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-list li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ───── FOOTER ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--body);
  color: var(--white);
  padding: var(--s-16) 0 var(--s-8);
  border-top: 3px solid var(--accent);
}

.site-footer .brand-logo,
.footer-logo {
  opacity: 0.92;
  height: 85px !important;
  max-height: 85px !important;
  min-height: 85px !important;
  max-width: 280px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-footer .brand-logo,
  .footer-logo {
    height: 72px !important;
    max-height: 72px !important;
    min-height: 72px !important;
  }
}
.footer-brand .footer-logo { margin-bottom: 1rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,48px);
  max-width: var(--mw);
  margin: 0 auto 40px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

.site-footer h3,
.site-footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.site-footer ul   { list-style: none; margin: 0; padding: 0; }
.site-footer li   { margin-bottom: var(--s-2); }
.site-footer a    { color: rgba(255,255,255,0.60); font-size: 0.85rem; line-height: 1.7; font-family: var(--font-b); }
.site-footer a:hover { color: var(--white); }

.footer-tagline {
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  margin: var(--s-4) 0;
  max-width: 36ch;
  font-family: var(--font-b);
}
.footer-contact  { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.footer-contact li { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.70); font-family: var(--font-b); }
.footer-contact a  { color: rgba(255,255,255,0.70); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-b);
}
.footer-roc  { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }
.footer-boss { color: rgba(255,255,255,0.38); font-size: 11px; }
.footer-boss a { color: var(--accent); }

/* ───── SECTION HEAD / UTILITIES ──────────────────────────────────────────── */
.section-head { text-align: center; max-width: 60ch; margin: 0 auto var(--s-12); }
.section-head .lede { margin: 0 auto; }
.section-head.text-left { text-align: left; margin-left: 0; }
.section-head.text-left .divider-copper { margin-left: 0; margin-right: auto; }

.divider-copper { width: 48px; height: 3px; background: var(--accent); margin: var(--s-4) auto; border: 0; }

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--s-4) !important; }
.mb-8 { margin-bottom: var(--s-8) !important; }
.mt-6 { margin-top: var(--s-6) !important; }

/* ───── ANIMATIONS ────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { opacity: 0; animation: fadeUp 700ms ease forwards; }
.animate-up.delay-1 { animation-delay: 100ms; }
.animate-up.delay-2 { animation-delay: 200ms; }
.animate-up.delay-3 { animation-delay: 300ms; }

/* Focus states */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[type="text"]:focus-visible,
[type="email"]:focus-visible,
[type="tel"]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ───── BUTTON OUTLINE LIGHT (dark contexts) ──────────────────────────────── */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ───── PRINT ─────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-cta, .cta-band { display: none; }
}
