/* ==========================================================================
   MCAIR — HVAC Services Website
   Brand system: Red (heating) + Blue (cooling) + Charcoal
   Style direction: Tech + Service
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — pulled from the MCAIR logo */
  --brand-red: #E30613;
  --brand-red-dark: #B50510;
  --brand-blue: #1E2C80;
  --brand-blue-dark: #141D5A;
  --brand-blue-light: #2E3FA8;

  /* Neutrals */
  --ink-900: #0B1221;
  --ink-800: #13203A;
  --ink-700: #1F2B49;
  --ink-500: #566080;
  --ink-400: #7A85A3;
  --ink-300: #C5CBDB;
  --ink-200: #E4E8F2;
  --ink-100: #F2F4FA;
  --white: #FFFFFF;

  /* Accents */
  --accent-warm: #FF6A3D;
  --accent-cool: #3FB8FF;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #1E2C80 0%, #141D5A 55%, #0B1221 100%);
  --grad-heat-cool: linear-gradient(90deg, var(--brand-red) 0%, #7D0B80 50%, var(--brand-blue) 100%);
  --grad-card-red: linear-gradient(160deg, #E30613 0%, #B50510 100%);
  --grad-card-blue: linear-gradient(160deg, #2E3FA8 0%, #141D5A 100%);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Sizing */
  --container: 1240px;
  --container-narrow: 960px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 18, 33, 0.06);
  --shadow: 0 10px 30px rgba(11, 18, 33, 0.08);
  --shadow-lg: 0 25px 60px rgba(11, 18, 33, 0.15);
  --shadow-glow-red: 0 15px 40px rgba(227, 6, 19, 0.25);
  --shadow-glow-blue: 0 15px 40px rgba(30, 44, 128, 0.25);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.35s;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: color var(--dur) var(--ease-out); }
a:hover { color: var(--brand-red); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.2; margin: 0 0 0.5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); }
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--grad-heat-cool);
  border-radius: 2px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }
.lead { font-size: 1.15rem; color: var(--ink-700); }
.bg-ink { background: var(--ink-900); color: var(--ink-200); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-soft { background: var(--ink-100); }
.text-grad { background: var(--grad-heat-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--brand-red); color: var(--white); box-shadow: var(--shadow-glow-red); }
.btn-primary:hover { background: var(--brand-red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 20px 50px rgba(227, 6, 19, 0.35); }
.btn-secondary { background: var(--brand-blue); color: var(--white); box-shadow: var(--shadow-glow-blue); }
.btn-secondary:hover { background: var(--brand-blue-dark); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--ink-900); border-color: var(--ink-300); }
.btn-outline:hover { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.btn .icon { width: 18px; height: 18px; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--ink-900);
  color: var(--ink-300);
  font-size: 0.88rem;
  padding: 10px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: var(--ink-300); }
.topbar a:hover { color: var(--white); }
.topbar .phones { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar .phones span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .phones strong { color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ink-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav .logo { display: flex; align-items: center; }
.nav .logo img { height: 52px; width: auto; }
.nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav ul a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink-800);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav ul a:hover, .nav ul a.active {
  background: var(--ink-100);
  color: var(--brand-blue);
}
.nav .cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink-900);
  transition: transform var(--dur) var(--ease-out);
}
@media (max-width: 960px) {
  .nav ul { display: none; }
  .nav .cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 12px 16px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--ink-200);
    box-shadow: var(--shadow);
  }
  .nav.is-open ul a { padding: 12px 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px circle at 85% 10%, rgba(227, 6, 19, 0.28), transparent 55%),
    radial-gradient(700px circle at 10% 90%, rgba(63, 184, 255, 0.18), transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--accent-cool); }
.hero .eyebrow::before { background: linear-gradient(90deg, var(--accent-warm), var(--accent-cool)); }
.hero h1 { color: var(--white); max-width: 880px; }
.hero h1 .accent { background: linear-gradient(90deg, #FF6A3D, #FFB199, #3FB8FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 640px; margin: 24px 0 36px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stats .stat span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
@media (max-width: 768px) {
  .hero { padding: 80px 0 100px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Feature Cards (3-up) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) { .features { grid-template-columns: 1fr; margin-top: -60px; } }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--ink-200);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-heat-cool);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card .fc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-100);
  color: var(--brand-blue);
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--ink-500); margin-bottom: 20px; }
.feature-card a { font-weight: 700; display: inline-flex; gap: 6px; align-items: center; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card .s-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  background: var(--grad-card-blue);
}
.service-card.is-heat .s-icon { background: var(--grad-card-red); }
.service-card h3 { margin-bottom: 8px; }
.service-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
.service-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink-700);
  font-size: 0.96rem;
  border-bottom: 1px solid var(--ink-200);
}
.service-card ul li:last-child { border-bottom: 0; }
.service-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--ink-100);
  box-shadow: inset 0 0 0 2px var(--brand-blue);
}
.service-card.is-heat ul li::before { box-shadow: inset 0 0 0 2px var(--brand-red); }

/* ---------- Two-Column / Info Block ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split .media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.split .media img { width: 100%; height: auto; display: block; }
.split .media.is-bordered { border: 1px solid var(--ink-200); }
.split .media.is-photo img { aspect-ratio: 4/3; object-fit: cover; width: 100%; height: 100%; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 960px) { .split.reverse > :first-child { order: 0; } }

/* Showcase tag ribbon for photo splits */
.split .tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--grad-heat-cool);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.split ul.check-list { list-style: none; padding: 0; margin: 16px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
@media (max-width: 520px) { .split ul.check-list { grid-template-columns: 1fr; } }
.split ul.check-list li { padding-left: 28px; position: relative; color: var(--ink-700); font-weight: 500; }
.split ul.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-blue);
  background-image: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
  box-shadow: 0 0 0 3px rgba(30,44,128,0.1);
}
.split ul.check-list li::after {
  content: "";
  position: absolute; left: 5px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--grad-hero);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at 95% 0%, rgba(227,6,19,0.35), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 0; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-band { padding: 40px 28px; } }

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(800px circle at 80% 20%, rgba(227, 6, 19, 0.25), transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 800px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; margin-top: 12px; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span.sep { opacity: 0.5; }

/* ---------- Why Us / Trust Row ---------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-200);
}
@media (max-width: 960px) { .trust-row { grid-template-columns: repeat(2, 1fr); padding: 32px; } }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ti-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-100);
  color: var(--brand-blue);
  flex-shrink: 0;
}
.trust-item strong { display: block; color: var(--ink-900); font-size: 1rem; }
.trust-item span { color: var(--ink-500); font-size: 0.9rem; }

/* ---------- Steps / Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px; left: 24px;
  font-size: 1rem;
  font-weight: 800;
  padding: 4px 12px;
  background: var(--grad-heat-cool);
  color: var(--white);
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.step h4 { margin: 12px 0 6px; }
.step p { color: var(--ink-500); margin: 0; font-size: 0.95rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px; background: var(--ink-100); border-radius: var(--radius); }
.contact-info-list .ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--brand-blue);
}
.contact-info-list strong { color: var(--ink-900); display: block; margin-bottom: 2px; }
.contact-info-list a { font-weight: 700; color: var(--ink-800); font-size: 1.05rem; }
.contact-info-list a:hover { color: var(--brand-red); }
.contact-info-list .note { color: var(--ink-500); font-size: 0.88rem; }

.form label { display: block; font-weight: 600; color: var(--ink-800); font-size: 0.92rem; margin-bottom: 6px; }
.form .field { margin-bottom: 16px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink-900);
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(30, 44, 128, 0.1);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }

/* Google Form embed */
.contact-card.form-embed { padding: 28px; }
.gform-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  background: var(--white);
}
.gform-wrap iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  background: var(--white);
}
@media (max-width: 600px) {
  .contact-card.form-embed { padding: 18px; }
  .gform-wrap iframe { min-height: 1100px; }
}

/* ---------- Service Area Page ---------- */
.area-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--ink-200);
}
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) { .area-list { grid-template-columns: repeat(2, 1fr); } }
.area-list li {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 600;
  color: var(--ink-800);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.area-list li:hover { border-color: var(--brand-blue); transform: translateY(-2px); }
.area-list li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 72px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo img { height: 56px; width: auto; margin-bottom: 16px; background: var(--white); padding: 8px 12px; border-radius: 8px; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 0.95rem; }
.site-footer a { color: var(--ink-300); }
.site-footer a:hover { color: var(--white); }
.site-footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-400);
}

/* ---------- Google Reviews ---------- */
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-200);
}
@media (max-width: 820px) { .reviews-head { grid-template-columns: 1fr; text-align: center; } }

.google-badge { display: flex; align-items: center; gap: 16px; }
.google-badge .g-mark {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-200);
  flex-shrink: 0;
}
.google-badge h2 { margin: 4px 0 0; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--ink-100);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
}
@media (max-width: 820px) { .reviews-summary { justify-content: center; flex-wrap: wrap; } }
.reviews-summary .rating-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
}
.reviews-summary .rating-info .stars { font-size: 1.1rem; }
.reviews-summary .rating-info .count {
  color: var(--ink-500);
  font-size: 0.88rem;
  margin-top: 4px;
}

/* Stars */
.stars {
  color: #FBBC04;  /* Google star yellow */
  letter-spacing: 2px;
  font-size: 1rem;
  display: inline-block;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.review-card .quote-icon {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--ink-200);
}
.review-card .stars { margin-bottom: 14px; }
.review-card blockquote {
  margin: 0 0 20px;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.6;
}
.review-card blockquote::before { content: "\201C"; }
.review-card blockquote::after { content: "\201D"; }

.reviewer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--ink-200); }
.reviewer .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.reviewer .avatar.c1 { background: linear-gradient(135deg, #4285F4, #1E2C80); }
.reviewer .avatar.c2 { background: linear-gradient(135deg, #EA4335, #B50510); }
.reviewer .avatar.c3 { background: linear-gradient(135deg, #34A853, #1E7D40); }
.reviewer .avatar.c4 { background: linear-gradient(135deg, #FBBC04, #D99800); }
.reviewer strong { display: block; color: var(--ink-900); font-size: 0.95rem; }
.reviewer .meta { color: var(--ink-500); font-size: 0.82rem; display: flex; align-items: center; gap: 6px; }
.reviewer .meta svg { flex-shrink: 0; }

.reviews-cta { margin-top: 40px; text-align: center; }
.reviews-cta .btn { margin: 0 6px 10px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
