/* ═══════════════════════════════════════════════════════════════
   RICKY G'S HANDYMAN SERVICES INC. — SHARED SITE STYLESHEET
   site.css — linked by all pages
   Root pages:    href="site.css"
   Subpages:      href="../site.css"
═══════════════════════════════════════════════════════════════ */

/* ── COLOR & FONT SYSTEM ───────────────────────────────────── */
:root {
  --cream:       #FDFAF5;
  --gold:        #F0B429;
  --gold-dark:   #C9900A;
  --gold-light:  #FEF4D8;
  --gold-border: #EDD68A;
  --near-black:  #1A1A1A;
  --warm-tan:    #E8D9C0;
  --warm-gray:   #6B6560;
  --charcoal:    #3A3530;
  --white:       #FFFFFF;

  --font-display: 'Anton', Impact, sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-body:    'Crimson Pro', Georgia, serif;
  --font-ui:      'Montserrat', sans-serif;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--near-black); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.display { font-family: var(--font-display); letter-spacing: 0.02em; }
.script  { font-family: var(--font-script); }
.ui      { font-family: var(--font-ui); }

/* ── LAYOUT HELPERS ────────────────────────────────────────── */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold         { background: var(--gold); color: var(--near-black); }
.btn-gold:hover   { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,180,41,0.35); }
.btn-dark         { background: var(--near-black); color: var(--white); }
.btn-dark:hover   { background: var(--charcoal); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--near-black); border: 2px solid var(--near-black); }
.btn-outline-dark:hover { background: var(--near-black); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--near-black); }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── TOP CONTACT BAR ───────────────────────────────────────── */
.top-bar {
  background: var(--gold);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--near-black);
  letter-spacing: 0.04em;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--near-black);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 0.75; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(26,26,26,0.3); }

/* ── STICKY NAV ────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 8px;
}

.nav-logo img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links > li > a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links > li > a:hover { color: var(--near-black); }
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a i.chevron { font-size: 0.55rem; transition: transform 0.2s; }

.nav-cta { margin-left: 8px; }

/* ── DROPDOWN MENUS ────────────────────────────────────────── */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--warm-tan);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
  pointer-events: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.has-dropdown:hover > a i.chevron { transform: rotate(180deg); }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: all 0.15s;
  white-space: nowrap;
}
.dropdown li a::after { display: none !important; }
.dropdown li a:hover {
  background: var(--gold-light);
  color: var(--near-black);
  padding-left: 26px;
}
.dropdown li:not(:last-child) a {
  border-bottom: 1px solid rgba(232,217,192,0.5);
}

/* ── HAMBURGER ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--near-black); transition: all 0.3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--warm-tan);
  padding: 12px 24px 24px;
  gap: 0;
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu > a {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 11px 0;
  border-bottom: 1px solid var(--warm-tan);
}

/* Mobile dropdown section */
.mobile-section { border-bottom: 1px solid var(--warm-tan); }

.mobile-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 11px 0;
  cursor: pointer;
  user-select: none;
}
.mobile-section-header a {
  flex: 1;
  color: var(--charcoal);
}
.mobile-section-header i {
  font-size: 0.6rem;
  transition: transform 0.25s;
  color: var(--warm-gray);
}
.mobile-section.open .mobile-section-header i { transform: rotate(180deg); }

.mobile-section-panel {
  display: none;
  flex-direction: column;
  padding: 0 0 8px 12px;
  gap: 0;
}
.mobile-section.open .mobile-section-panel { display: flex; }

.mobile-section-panel a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(232,217,192,0.4);
  text-transform: none;
  letter-spacing: 0.02em;
}
.mobile-section-panel a:last-child { border-bottom: none; }
.mobile-section-panel a:hover { color: var(--near-black); }

.mobile-menu-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--near-black);
  padding: 64px 24px 0;
  margin-top: 0;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-nap a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  transition: opacity 0.2s;
}
.footer-nap a:hover { opacity: 0.8; }

.footer-hours {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.footer-bottom > p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge-pill {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-badge-pill i { color: var(--gold); }

/* ── MOBILE STICKY CTA BAR ─────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--near-black);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; font-size: 0.78rem; padding: 12px 16px; }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--near-black);
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(240,180,41,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.5rem; }

/* ── SECTION LAYOUT ────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark  { background: var(--near-black); }
.section-gold  { background: var(--gold-light); border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border); }

.section-header { max-width: 1200px; margin: 0 auto 52px; }
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
.section h2 {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--near-black);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-dark h2 { color: var(--white); }
.section h2 span { color: var(--gold); }
.section-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 640px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.55); }

/* ── CARD GRID ─────────────────────────────────────────────── */
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }

.card {
  background: var(--white);
  border: 1px solid var(--warm-tan);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.25s ease;
}
.card:hover { border-color: var(--gold-border); box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--gold-dark);
}

.card h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--near-black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Service category card */
.svc-card {
  background: var(--white);
  border: 1px solid var(--warm-tan);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 4px 4px;
  padding: 28px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); border-top-color: var(--gold-dark); }
.svc-card-icon { width: 48px; height: 48px; background: var(--gold-light); border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.2rem; color: var(--gold-dark); }
.svc-card h3 { font-family: var(--font-ui); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--near-black); margin-bottom: 10px; }
.svc-card ul { font-size: 0.88rem; color: var(--warm-gray); line-height: 2; flex: 1; }
.svc-card ul li::before { content: '✓ '; color: var(--gold-dark); font-weight: 700; }
.svc-card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dark); margin-top: 18px; transition: gap 0.2s; }
.svc-card-link:hover { gap: 10px; }

/* City card */
.city-card {
  background: var(--white);
  border: 1px solid var(--warm-tan);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.city-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.city-card i { font-size: 1.6rem; color: var(--gold-dark); }
.city-card h3 { font-family: var(--font-ui); font-weight: 700; font-size: 1.05rem; color: var(--near-black); }
.city-card p { font-size: 0.85rem; color: var(--warm-gray); }
.city-card-link { font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-dark); display: flex; align-items: center; gap: 5px; transition: gap 0.2s; margin-top: 4px; }
.city-card:hover .city-card-link { gap: 8px; }

/* ── TRUST STRIP ───────────────────────────────────────────── */
.trust-strip {
  background: var(--gold-light);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 40px 24px;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-col { text-align: center; padding: 20px 16px; }
.trust-col-icon { width: 52px; height: 52px; background: var(--white); border: 2px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.3rem; color: var(--gold-dark); }
.trust-col h3 { font-family: var(--font-ui); font-weight: 700; font-size: 0.82rem; color: var(--near-black); margin-bottom: 8px; letter-spacing: 0.08em; }
.trust-col p { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.5; }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner { background: var(--near-black); padding: 80px 24px; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-eyebrow { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.cta-banner h2 { font-family: var(--font-ui); font-weight: 800; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-banner h2 span { color: var(--gold); }
.cta-banner > .cta-inner > p { font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ SECTION ───────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--warm-tan); }
.faq-question {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  color: var(--near-black);
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question i { color: var(--gold-dark); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; transition: transform 0.25s; }
details[open] .faq-question i { transform: rotate(45deg); }
.faq-answer {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  padding: 0 0 20px;
}

/* ── SERVICE AREA PILLS ────────────────────────────────────── */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1200px; margin: 0 auto; }
.area-pill {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}
.area-pill:hover { background: var(--gold-light); border-color: var(--gold); }
.area-pill i { color: var(--gold-dark); font-size: 0.75rem; }

/* ── SERVICES LIST (page content) ──────────────────────────── */
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.svc-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--warm-tan);
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.svc-list-item i { color: var(--gold-dark); width: 16px; flex-shrink: 0; }

/* ── REVIEW CARD ───────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--warm-tan);
  border-radius: 4px;
  padding: 28px;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 1rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; color: var(--near-black); text-transform: uppercase; }
.review-platform { font-family: var(--font-ui); font-size: 0.72rem; color: var(--warm-gray); margin-top: 2px; }

/* ── STAT ROW ──────────────────────────────────────────────── */
.stat-row { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid var(--warm-tan); padding-top: 32px; max-width: 1200px; margin: 0 auto; }
.stat-box { flex: 1; min-width: 140px; padding: 0 28px; border-right: 1px solid var(--warm-tan); text-align: center; }
.stat-box:first-child { padding-left: 0; }
.stat-box:last-child { border-right: none; }
.stat-box .num { font-family: var(--font-display); font-size: 2rem; color: var(--near-black); display: block; line-height: 1; margin-bottom: 4px; }
.stat-box .lbl { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--warm-gray); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .mobile-cta-bar { display: flex; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .svc-list-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .page-hero { padding: 52px 20px 48px; }
  body { padding-bottom: 70px; }
  .stat-row { gap: 24px; }
  .stat-box { border-right: none; padding: 0; min-width: 0; flex: 0 0 calc(50% - 12px); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
