/* ============================================================
   Super Station Concord — Design System
   Fonts loaded via <link> in HTML head for optimal performance
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --bg: #f7f5f0;
  --bg-alt: #efece5;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --light: #94a3b8;
  --line: #e2e0db;
  --brand: #c2410c;
  --brand-dark: #7c2d12;
  --brand-light: #fdba74;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --navy: #0c1425;
  --navy-light: #161e31;
  --success: #16a34a;
  --success-light: #dcfce7;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow: 0 4px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12);
  --shadow-xl: 0 20px 60px rgba(15,23,42,0.15);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --container: min(1180px, calc(100% - 2.5rem));
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.15; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; left: -9999px;
  padding: 0.75rem 1.25rem; background: var(--ink); color: #fff;
  border-radius: var(--radius); font-weight: 600; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0;
  font-size: 0.85rem; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.topbar a { color: var(--brand); font-weight: 600; }
.topbar a:hover { color: var(--brand-dark); }

.nav {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: min(260px, 42vw); height: auto; }
.footer-brand img { width: min(220px, 100%); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem; border-radius: 999px;
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--ink); background: var(--bg-alt); }
.nav-links a.active { color: var(--brand); font-weight: 600; }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem !important;
  background: var(--brand) !important; color: #fff !important;
  font-weight: 600 !important; border-radius: 999px !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none; border: 0; background: transparent; padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 1.5rem; height: 2px;
  background: var(--ink); transition: var(--transition);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(3px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(3px, -5px); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container, .section, .hero, .page-hero, .post-layout, .site-footer {
  width: var(--container); margin-left: auto; margin-right: auto;
}

.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

.section-heading { margin-bottom: 2.5rem; }
.section-heading.center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--brand); margin-bottom: 0.5rem;
}

h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--brand); font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
}
.text-link:hover { color: var(--brand-dark); gap: 0.6rem; }
.text-link svg { width: 16px; height: 16px; transition: var(--transition); }

/* Address link (opens Google/Apple Maps) */
.address-link {
  color: inherit;
  border-bottom: 1px dashed currentColor;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.address-link:hover,
.address-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.footer-col .address-link:hover,
.footer-col .address-link:focus {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; border: 0;
  transition: var(--transition); cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #e05a1a 100%);
  color: #fff; box-shadow: 0 4px 15px rgba(194,65,12,0.3);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(194,65,12,0.4);
}

.button-secondary {
  background: var(--panel); color: var(--ink);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.button-secondary:hover {
  border-color: var(--brand-light); background: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow);
}

.button-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.button-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.button-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-wrapper {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
  /* Mobile default: small image */
  background-image: image-set(
    url('/assets/images/hero-shop-768w.webp') type('image/webp'),
    url('/assets/images/hero-shop-768w.jpg') type('image/jpeg')
  );
}
@media (min-width: 769px) {
  .hero-bg {
    /* Desktop: full-size image */
    background-image: image-set(
      url('/assets/images/hero-shop.webp') type('image/webp'),
      url('/assets/images/hero-shop.jpg') type('image/jpeg')
    );
  }
}
.hero {
  padding: 5rem 0 3rem;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-wrapper .hero h1,
.hero-wrapper .hero-text,
.hero-wrapper .hero-facts li,
.hero-wrapper .hero-facts svg { color: #fff; }
.hero-wrapper .hero-text { color: rgba(255,255,255,0.8); }
.hero-wrapper .hero-facts li { color: rgba(255,255,255,0.7); }
.hero-wrapper .hero-facts svg { color: var(--accent); }
.hero-wrapper .eyebrow { color: var(--accent); }

.hero h1 { margin-bottom: 1.25rem; color: var(--ink); }

.hero-text { color: var(--muted); font-size: 1.1rem; max-width: 540px; margin-bottom: 0.5rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.75rem 0; }

.hero-facts {
  display: flex; flex-direction: column; gap: 0.5rem;
  color: var(--muted); font-size: 0.9rem; margin-top: 1rem;
}
.hero-facts li {
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-facts svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }

/* Hero Card */
.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.card-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--brand); margin-bottom: 0.75rem;
}
.hero-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.hero-card ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.hero-card li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.05rem; font-weight: 500;
}
.hero-card li svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

/* ============================================================
   TRUST BADGES STRIP
   ============================================================ */
.trust-badges {
  width: var(--container); margin: 0 auto;
  padding: 2rem 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem 2.5rem;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
}
.trust-badge svg { width: 22px; height: 22px; color: var(--brand); }
.trust-badge .badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(194,65,12,0.1), rgba(245,158,11,0.1));
  display: flex; align-items: center; justify-content: center;
}
.trust-badge .badge-icon svg { width: 20px; height: 20px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--accent);
  line-height: 1.1; margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ============================================================
   FEATURE / WHY-US CARDS
   ============================================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(194,65,12,0.1), rgba(245,158,11,0.1));
}
.card-icon svg { width: 24px; height: 24px; color: var(--brand); }

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   SERVICE CARDS (Homepage preview)
   ============================================================ */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 4px 12px rgba(194,65,12,0.2);
}
.service-icon svg { width: 26px; height: 26px; color: #fff; }

.service-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   SERVICE DETAIL CARDS (Services page)
   ============================================================ */
.service-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.detail-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; gap: 1.25rem;
}
.detail-card:hover { box-shadow: var(--shadow); border-color: var(--brand-light); }

.detail-icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(194,65,12,0.1), rgba(245,158,11,0.1));
}
.detail-icon svg { width: 28px; height: 28px; color: var(--brand); }

.detail-content h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.detail-content p { color: var(--muted); font-size: 0.93rem; margin-bottom: 0.5rem; }
.detail-meta { color: var(--light); font-size: 0.88rem; font-style: italic; }

.detail-cta {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.75rem; color: var(--brand); font-weight: 600; font-size: 0.9rem;
}
.detail-cta:hover { color: var(--brand-dark); }
.detail-cta svg { width: 14px; height: 14px; }

/* ============================================================
   LOCAL SEO SECTION
   ============================================================ */
.local-seo {
  background: linear-gradient(135deg, rgba(194,65,12,0.04), rgba(245,158,11,0.06));
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
}
.two-column-copy {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 1.5rem;
}
.two-column-copy p { color: var(--muted); font-size: 1.05rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
  padding: 4rem 0;
}

.process-list { counter-reset: step; display: flex; flex-direction: column; gap: 1.5rem; }
.process-list li {
  counter-increment: step;
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 1.05rem; color: var(--muted);
}
.process-list li::before {
  content: counter(step);
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff; font-weight: 800; font-size: 1rem;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }

.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-stars svg { width: 18px; height: 18px; color: var(--accent); }

.review-quote {
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--font-display); font-size: 3.5rem;
  line-height: 1; color: var(--brand-light); opacity: 0.4;
}

.review-card .review-text { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; font-style: italic; }
.review-card .review-author { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.review-card .review-date { font-size: 0.82rem; color: var(--light); }

.review-platforms {
  display: flex; justify-content: center; gap: 2rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--line);
}
.review-platform {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--muted); font-weight: 500;
}
.review-platform strong { color: var(--ink); font-size: 1.1rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-stack { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--brand-light); }
.faq-item.is-open { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer;
  background: none; border: none; width: 100%;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  color: var(--ink); text-align: left;
}
.faq-question:hover { color: var(--brand); }

.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--muted);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--brand); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted); font-size: 0.95rem; line-height: 1.7;
}

/* FAQ preview on homepage */
.faq-preview { display: flex; flex-direction: column; gap: 0.75rem; }

/* ============================================================
   COUPON CARDS
   ============================================================ */
.coupon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.coupon-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.coupon-card {
  background: var(--panel);
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.coupon-card:hover { border-color: var(--brand-light); box-shadow: var(--shadow); }
.coupon-card.highlight { border-color: var(--brand); }

.coupon-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 0.3rem 1rem; border-radius: 999px;
  white-space: nowrap;
}

.coupon-scissors {
  position: absolute; top: -1px; right: 2rem;
  color: var(--brand); opacity: 0.4;
}
.coupon-scissors svg { width: 20px; height: 20px; }

.coupon-type { font-weight: 600; color: var(--brand); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.coupon-card h2 { font-size: 1.2rem; margin: 0.5rem 0; }
.coupon-price {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: var(--brand-dark); margin: 0.5rem 0 0.75rem;
}
.coupon-card > p:last-of-type { color: var(--muted); font-size: 0.9rem; }
.coupon-valid {
  margin-top: 1rem; padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
  font-size: 0.8rem; color: var(--light);
}

.coupon-actions {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 1rem;
}
.coupon-action-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.6rem 1rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  background: var(--bg-alt); border: 1px solid var(--line);
  color: var(--ink); transition: var(--transition);
}
.coupon-action-btn:hover {
  border-color: var(--brand); color: var(--brand);
  background: rgba(194,65,12,0.05); transform: translateY(-1px);
}
.coupon-action-btn svg { flex-shrink: 0; }

/* Printable coupons grid (for Google Image Search indexing + sharing) */
.printable-coupons {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.printable-coupon {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.printable-coupon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.printable-coupon picture,
.printable-coupon img {
  display: block; width: 100%; height: auto;
}
.printable-coupon figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.blog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 180px; background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-img svg { width: 48px; height: 48px; color: var(--brand); opacity: 0.3; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--brand);
  background: rgba(194,65,12,0.08); padding: 0.2rem 0.6rem;
  border-radius: 999px; margin-bottom: 0.75rem; width: fit-content;
}

.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card h3 a { transition: var(--transition); }
.blog-card h3 a:hover { color: var(--brand); }
.blog-card p { color: var(--muted); font-size: 0.9rem; flex: 1; }

.blog-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; font-size: 0.82rem; color: var(--light); }
.blog-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-meta svg { width: 14px; height: 14px; }

/* Blog listing full width */
.blog-grid-full { grid-template-columns: repeat(2, 1fr); }

/* ============================================================
   CONTACT SECTION & BANNER
   ============================================================ */
.contact-banner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem; align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  padding: 3rem; margin-bottom: 4rem;
}
.contact-banner h2 { color: #fff; }
.contact-banner p { color: rgba(255,255,255,0.7); }
.contact-banner .eyebrow { color: var(--accent); }
.banner-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(194,65,12,0.1), rgba(245,158,11,0.1));
}
.contact-card-icon svg { width: 24px; height: 24px; color: var(--brand); }
.contact-card h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.contact-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 0.3rem; }
.contact-card a { color: var(--brand); font-weight: 500; }
.contact-card a:hover { color: var(--brand-dark); }

/* Google Map */
.map-container {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Payment Strip */
.payment-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem;
  padding: 1.5rem; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.payment-strip span { font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.payment-icons { display: flex; gap: 0.75rem; }
.payment-icon {
  width: 48px; height: 30px; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--muted);
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--navy); color: #fff;
  padding: 1rem 1.5rem; text-align: left;
  font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-table th:last-child { text-align: right; }
.pricing-table td {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--line);
  font-size: 0.95rem; color: var(--ink);
}
.pricing-table td:last-child { text-align: right; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table .pricing-highlight td {
  background: rgba(194,65,12,0.04);
}
.pricing-table .pricing-highlight td strong {
  color: var(--brand-dark); font-size: 1.2rem;
}

/* ============================================================
   ACCENT PANEL
   ============================================================ */
.accent-panel {
  background: linear-gradient(135deg, rgba(194,65,12,0.05), rgba(245,158,11,0.07));
  border-radius: var(--radius-xl);
  padding: 3rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline {
  position: relative; padding-left: 3rem;
}
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--brand), var(--accent));
}
.timeline-item {
  position: relative; margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: ''; position: absolute; left: -3rem; top: 0.4rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand); border: 3px solid var(--panel);
  box-shadow: 0 0 0 2px var(--brand);
}
.timeline-year { font-weight: 800; color: var(--brand); font-size: 1.1rem; margin-bottom: 0.25rem; }
.timeline-text { color: var(--muted); font-size: 0.95rem; }

/* Comparison section */
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.comparison-card {
  padding: 2rem; border-radius: var(--radius-lg);
}
.comparison-card.us {
  background: linear-gradient(135deg, rgba(194,65,12,0.08), rgba(245,158,11,0.06));
  border: 1.5px solid rgba(194,65,12,0.2);
}
.comparison-card.them {
  background: var(--bg-alt); border: 1px solid var(--line);
}
.comparison-card h3 { margin-bottom: 1rem; }
.comparison-card ul { display: flex; flex-direction: column; gap: 0.6rem; }
.comparison-card li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.93rem; color: var(--muted);
}
.comparison-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.comparison-card.us li svg { color: var(--success); }
.comparison-card.them li svg { color: var(--light); }

/* ============================================================
   TRUST STRIP (mini cards row)
   ============================================================ */
.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.mini-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mini-card:hover { box-shadow: var(--shadow); }
.mini-card h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.mini-card p { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: var(--muted); font-size: 1rem;
}
.check-list li svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.inner-page { padding-bottom: 4rem; }

.page-hero {
  padding: 4rem 0 2rem;
  max-width: 720px;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 600px; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--light); margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--muted); font-weight: 500; }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs svg { width: 12px; height: 12px; }

/* ============================================================
   BLOG POST LAYOUT
   ============================================================ */
.post-layout {
  max-width: 780px; padding: 3rem 0 5rem;
}
.post-layout h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.post-meta {
  display: flex; align-items: center; gap: 1rem;
  color: var(--light); font-size: 0.88rem; margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.post-meta svg { width: 14px; height: 14px; }

.post-layout h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.5rem; }
.post-layout h3 { margin-top: 2rem; margin-bottom: 0.5rem; }
.post-layout p { color: var(--muted); margin-bottom: 1.25rem; }
.post-layout ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.post-layout ul li { color: var(--muted); margin-bottom: 0.4rem; position: relative; }
.post-layout ul li::before {
  content: ''; position: absolute; left: -1rem; top: 0.6rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
}

/* Related services at bottom of blog post */
.related-services {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.related-services h3 { margin-bottom: 1rem; }
.related-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.related-link {
  padding: 0.5rem 1rem; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  transition: var(--transition);
}
.related-link:hover { border-color: var(--brand); color: var(--brand); background: rgba(194,65,12,0.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem; margin-top: 0;
}
.footer-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h3 {
  color: #fff; font-size: 0.95rem; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-col p, .footer-col a {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  display: block; margin-bottom: 0.5rem;
}
.footer-col a:hover { color: var(--accent); }

.footer-brand-text { margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; }

.footer-social {
  display: flex; gap: 0.75rem; margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--brand); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }

.footer-bottom {
  width: var(--container); margin: 0 auto;
  padding-top: 2rem; margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}

/* ============================================================
   CHAT WIDGET PLACEHOLDER
   ============================================================ */
.chat-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
}
.chat-widget-btn {
  width: 60px; height: 60px; border-radius: 50%; border: 0;
  background: linear-gradient(135deg, var(--brand), #e05a1a);
  color: #fff; cursor: pointer;
  box-shadow: 0 4px 20px rgba(194,65,12,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.chat-widget-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(194,65,12,0.45);
}
.chat-widget-btn svg { width: 28px; height: 28px; }

.chat-widget-tooltip {
  position: absolute; bottom: calc(100% + 0.75rem); right: 0;
  background: var(--panel); color: var(--ink);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  opacity: 0; transform: translateY(4px);
  transition: var(--transition); pointer-events: none;
}
.chat-widget-tooltip::after {
  content: ''; position: absolute; top: 100%; right: 1.25rem;
  border: 6px solid transparent; border-top-color: var(--panel);
}
.chat-widget-btn:hover + .chat-widget-tooltip,
.chat-widget-tooltip.is-visible {
  opacity: 1; transform: translateY(0);
}

@media print { .chat-widget { display: none; } }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible {
  opacity: 1; transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   PRINT STYLES (for coupons)
   ============================================================ */
@media print {
  .site-header, .site-footer, .nav-toggle, .topbar { display: none; }
  .coupon-card { break-inside: avoid; border: 2px dashed #333; }
  body { background: #fff; }
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; gap: 2rem; }
  .hero-wrapper { padding: 0; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: calc(100% + 0.5rem);
    left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    padding: 1rem; background: var(--panel);
    border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); z-index: 50;
    animation: slideDown 0.3s ease;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius: var(--radius); }
  .nav-cta { text-align: center; margin-left: 0 !important; }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .feature-grid, .service-grid, .review-grid,
  .blog-grid, .coupon-grid, .trust-strip,
  .contact-grid, .comparison-grid,
  .blog-grid-full { grid-template-columns: 1fr; }

  .stats-section { grid-template-columns: repeat(2, 1fr); }

  .service-list { grid-template-columns: 1fr; }
  .also-available-grid { grid-template-columns: 1fr !important; }
  .printable-coupons { grid-template-columns: 1fr; }
  .detail-card { flex-direction: column; }

  .split-section { grid-template-columns: 1fr; gap: 2rem; }
  .two-column-copy { grid-template-columns: 1fr; }
  .contact-banner { grid-template-columns: 1fr; padding: 2rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .trust-badges { gap: 1rem 1.5rem; }

  .local-seo { padding: 2.5rem 1.5rem; }
  .accent-panel { padding: 2rem 1.5rem; }

  .brand img { width: min(200px, 50vw); }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ============================================================ */
@media (max-width: 600px) {
  .stats-section { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .banner-actions { flex-direction: column; }
  .banner-actions .button { width: 100%; }
  .contact-banner { padding: 1.75rem; }
  .review-platforms { flex-direction: column; align-items: center; gap: 1rem; }
  .trust-badges { flex-direction: column; align-items: center; }
  .payment-strip { flex-direction: column; }
}
