/* ========================================
   Dielman Moving & Storage — Redesign Mockup
   Shared design system used by all pages.
   ======================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette aligned to homepage.css (--color-green, --color-gold, --color-text, --color-bg) */
  --primary: #073b27;
  --primary-dark: #052b1c;
  --primary-darker: #031f14;
  --primary-light: #e6efe8;
  --primary-glow: rgba(7, 59, 39, 0.18);
  --accent: #1a5238;
  --accent-dark: #0f4a32;
  --accent-glow: rgba(26, 82, 56, 0.3);
  --dark: #031f14;
  --text: #183628;
  --text-light: #4a5848;
  --text-muted: #6f7468;
  --gold: #c9a24a;
  --cream: #f8f4ea;
  --cream-2: #f1e8d0;
  --white: #ffffff;
  --border: #e7dfc9;
  --border-light: #ece6d6;
  --shadow-sm: 0 1px 3px rgba(15, 42, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 42, 26, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 42, 26, 0.12);
  --shadow-xl: 0 20px 60px rgba(15, 42, 26, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --max-width: 1200px;
  --transition: 0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); background: var(--cream); line-height: 1.7; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--primary-darker); font-family: var(--font-display); font-weight: 900; }
h1 { font-size: 3rem; letter-spacing: -0.01em; }
h2 { font-size: 2.25rem; letter-spacing: -0.005em; }
h3 { font-size: 1.2rem; font-weight: 700; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Top Bar --- */
.topbar {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.9);
  font-size: 0.86rem;
  padding: 10px 0;
  border-bottom: 3px solid var(--accent);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--white); font-weight: 700; }
.topbar a:hover { color: var(--gold); }
.topbar .left { opacity: 0.9; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem; }

/* --- Header --- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  border: 3px solid var(--accent);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { color: var(--primary); font-size: 1.55rem; letter-spacing: 0.06em; font-weight: 900; font-family: var(--font-display); }
.logo-text span { color: var(--text-light); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-top: 2px; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { color: var(--primary-darker); font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.04em; }
.site-nav a:hover { color: var(--accent); }
.site-nav .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 0 var(--accent-dark);
}
.site-nav .nav-cta:hover { background: var(--accent-dark); color: var(--white); transform: translateY(1px); box-shadow: none; }
@media (max-width: 880px) { .site-nav { display: none; } }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--cream-2);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs a { color: var(--primary); font-weight: 700; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

/* --- Hero --- */
.hero {
  background-color: var(--cream);
  color: var(--primary-darker);
  padding: 44px 0 56px;
  position: relative;
  border-bottom: 6px solid var(--primary);
}
.hero .container { position: relative; z-index: 2; }
.hero-layout { display: flex; gap: 40px; align-items: flex-start; }
.hero-left { flex: 1; }
.hero-right { flex: 0 0 360px; display: flex; flex-direction: column; gap: 18px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 2px 0 var(--accent-dark);
}
.hero-label .dot { width: 7px; height: 7px; background: var(--white); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
  color: var(--primary-darker);
  margin-bottom: 18px;
  font-size: 2.6rem;
  max-width: 660px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.14;
}
.hero h1 .accent { color: var(--accent-dark); }
.hero-text {
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 680px;
  color: var(--text);
  background: var(--white);
  padding: 22px 26px;
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.hero-text p + p { margin-top: 12px; }
.hero-knows {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  max-width: 660px;
}
.hero-knows li {
  font-size: 0.88rem;
  color: var(--primary-darker);
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.hero-knows li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hero-stats { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--accent);
  border-radius: 4px;
  padding: 12px 18px;
  text-align: center;
  min-width: 110px;
  box-shadow: var(--shadow-sm);
}
.stat-number { font-size: 1.55rem; font-weight: 900; color: var(--primary); display: block; line-height: 1; margin-bottom: 3px; font-family: var(--font-display); }
.stat-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 700; }

.hero-photo-card {
  background: var(--white);
  padding: 8px 8px 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: rotate(-1.2deg);
  position: relative;
}
.hero-photo-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 70px;
  height: 16px;
  background: rgba(230, 178, 32, 0.55);
  border: 1px solid rgba(230, 178, 32, 0.35);
}
.hero-photo-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}
.hero-photo-card figcaption {
  padding: 10px 6px 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  font-family: var(--font-display);
  line-height: 1.3;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px;
  font-size: 0.9rem;
  font-weight: 900;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 3px 0 var(--accent-dark);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(2px); box-shadow: 0 1px 0 var(--accent-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-blue-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-blue-outline:hover { background: var(--primary); color: var(--white); }

/* --- Hero Form --- */
.hero-form {
  background: var(--white);
  border-radius: 4px;
  padding: 0;
  box-shadow: var(--shadow-xl);
  color: var(--text);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-form-header {
  background: var(--primary);
  color: var(--white);
  padding: 14px 22px;
  text-align: center;
}
.hero-form h3 { font-size: 1.1rem; margin-bottom: 2px; color: var(--white); font-family: var(--font-display); font-weight: 900; }
.hero-form .form-sub { font-size: 0.78rem; color: rgba(255,255,255,0.85); }
.hero-form-body { padding: 18px 22px 22px; }
.form-steps-indicator { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background var(--transition); }
.step-dot.active { background: var(--accent); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-row { margin-bottom: 11px; }
.form-row label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--primary-darker); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: var(--font); font-size: 0.88rem;
  color: var(--dark); background: var(--cream);
  transition: all var(--transition);
}
.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(46, 156, 74, 0.15); background: var(--white); }
.form-row textarea { resize: vertical; min-height: 70px; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-cols .form-row { margin-bottom: 0; }
.form-btn {
  width: 100%; padding: 12px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: 4px;
  font-family: var(--font); font-size: 0.86rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
  box-shadow: 0 3px 0 var(--accent-dark);
}
.form-btn:hover { background: var(--accent-dark); transform: translateY(2px); box-shadow: 0 1px 0 var(--accent-dark); }
.form-back { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; color: var(--text-muted); font-family: var(--font); font-size: 0.82rem; cursor: pointer; margin-bottom: 10px; padding: 0; font-weight: 700; }
.form-back:hover { color: var(--primary); }
.form-phone { text-align: center; margin-top: 14px; font-size: 0.85rem; color: var(--text-light); }
.form-phone a { color: var(--primary); font-weight: 900; }

/* --- Trust Badges --- */
.trust-bar { background: var(--white); padding: 32px 0; border-bottom: 1px solid var(--border); }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.badge {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 10px 36px;
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--primary-darker);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}
.badge + .badge::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--border);
}
.badge-icon--logo { width: 44px; height: 44px; }
.badge-icon--logo svg { width: 100%; height: 100%; }

/* --- Sections --- */
.section { padding: 76px 0; }
.section--gray { background: var(--cream); }
.section--white { background: var(--white); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 700px; margin: 16px auto 0; }

/* --- Reviews --- */
.reviews-header { display: flex; justify-content: center; margin-bottom: 40px; }
.big-rating {
  display: flex; align-items: center; gap: 22px;
  background: var(--white);
  padding: 22px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  border-bottom: 4px solid var(--accent);
}
.big-rating .number { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; font-family: var(--font-display); }
.big-rating .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.big-rating .count { font-size: 0.86rem; color: var(--text-light); font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; right: 18px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: var(--font-display);
  line-height: 1;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-top-color: var(--accent); }
.review-card .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-card p { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.review-card .reviewer { font-size: 0.82rem; color: var(--primary); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; }
.moves-callout {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-top: 44px;
  background: var(--primary);
  border-radius: 4px;
  padding: 28px 40px;
  color: var(--white);
}
.moves-callout .big { font-size: 3.4rem; font-weight: 900; color: var(--white); font-family: var(--font-display); line-height: 1; }
.moves-callout .callout-text { font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.4; }

/* --- Inline CTA --- */
.inline-cta {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: 4px;
  padding: 32px 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px;
  margin-top: 48px;
}
.inline-cta p { font-size: 1.18rem; font-weight: 900; color: var(--primary-darker); margin: 0; line-height: 1.4; font-family: var(--font-display); }
.inline-cta p span { display: block; font-size: 0.94rem; font-weight: 400; color: var(--text); margin-top: 6px; font-family: var(--font); }
.inline-cta .cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* --- Services grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.services-grid--five { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card {
  background: var(--white);
  padding: 0;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent); }
.service-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.service-body { padding: 24px 26px 26px; position: relative; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-top: -52px;
  margin-bottom: 16px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.service-card h3 { margin-bottom: 10px; color: var(--primary-darker); font-family: var(--font-display); font-size: 1.2rem; }
.service-card p { color: var(--text); font-size: 0.94rem; margin-bottom: 16px; flex: 1; }
.service-card a {
  font-size: 0.82rem; font-weight: 900;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 4px;
}
.service-card a:hover { color: var(--accent-dark); gap: 8px; }
.services-image { margin-top: 48px; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.services-image img { width: 100%; height: 360px; object-fit: cover; }
.services-image figcaption { background: var(--primary); color: rgba(255,255,255,0.95); padding: 14px 22px; font-size: 0.86rem; font-weight: 700; }

/* Compact service cards (homepage all-10 grid) */
.svc-mini {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 18px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--primary-darker);
}
.svc-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); color: var(--primary); }
.svc-mini .icon {
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  border: 3px solid var(--accent);
}
.svc-mini h3 { font-family: var(--font-display); font-size: 1rem; line-height: 1.2; margin: 0; color: var(--primary-darker); }
.svc-mini p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin: 0; font-weight: 400; }
.svc-grid-10 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* --- Pricing --- */
.pricing-content { max-width: 980px; margin: 0 auto; }
.pricing-content > p { font-size: 1.04rem; color: var(--text); margin-bottom: 28px; line-height: 1.8; }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.pricing-table th { background: var(--primary); color: var(--white); padding: 18px 20px; text-align: left; font-weight: 900; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-table td { padding: 18px 20px; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; color: var(--text); vertical-align: top; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price { font-weight: 900; color: var(--accent-dark); font-size: 1.05rem; font-family: var(--font-display); }
.pricing-note { font-size: 0.85rem; color: var(--text-light); font-style: italic; margin-top: 18px; }

/* --- Local content --- */
.local-content { max-width: 1100px; margin: 0 auto; }
.local-intro {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 40px;
  background: var(--white);
  padding: 28px 32px;
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.local-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.local-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 4px;
  padding: 26px 28px;
  transition: all var(--transition);
}
.local-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-top-color: var(--accent); }
.local-card h3 { display: flex; align-items: center; gap: 10px; color: var(--primary-darker); margin-bottom: 12px; font-size: 1.18rem; font-family: var(--font-display); }
.local-card .icon { font-size: 1.4rem; }
.local-card p { color: var(--text); font-size: 0.95rem; }
.local-card a { color: var(--accent-dark); font-weight: 700; border-bottom: 1px solid rgba(46, 156, 74, 0.4); }
.local-card a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* --- Process Route --- */
.route { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; position: relative; }
.route::before { content: ''; position: absolute; top: 38px; left: 8.33%; right: 8.33%; height: 3px; background: var(--accent); z-index: 0; border-radius: 2px; }
.route-stop { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.route-node {
  width: 76px; height: 76px;
  background: var(--primary);
  border: 4px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  transition: all var(--transition);
  color: var(--white);
}
.route-stop:hover .route-node { background: var(--accent); transform: scale(1.06); }
.route-label { font-weight: 900; font-size: 0.95rem; color: var(--primary-darker); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.route-desc { font-size: 0.84rem; color: var(--text); line-height: 1.5; padding: 0 6px; }
@media (max-width: 880px) { .route { grid-template-columns: repeat(2, 1fr); } .route::before { display: none; } }

/* --- Why Choose Us --- */
.why-asymmetric {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 36px;
  align-items: stretch;
}
.why-photo-col {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-lg);
}
.why-photo-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12, 44, 24, 0.95) 0%, rgba(12, 44, 24, 0.7) 60%, transparent 100%);
  padding: 60px 28px 28px;
  color: var(--white);
}
.why-photo-overlay .stamp {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 14px;
}
.why-photo-overlay h3 { color: var(--white); font-size: 1.55rem; font-family: var(--font-display); margin-bottom: 8px; line-height: 1.2; }
.why-photo-overlay p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--white); border-radius: 4px; border: 1px solid var(--border); transition: all var(--transition); }
@media (max-width: 1024px) {
  .why-asymmetric { grid-template-columns: 1fr; }
  .why-photo-col { min-height: 360px; }
}
.why-item:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.why-icon {
  font-size: 1.7rem;
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.why-item h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--primary-darker); font-family: var(--font-display); }
.why-item p { font-size: 0.94rem; color: var(--text); line-height: 1.6; }

.team-section-title {
  text-align: center;
  margin: 56px 0 28px;
  font-size: 1.5rem;
  color: var(--primary-darker);
  font-family: var(--font-display);
  position: relative;
  padding-bottom: 14px;
}
.team-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 60px; height: 3px; background: var(--accent);
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.team-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; background: var(--cream-2); border-radius: 4px; border: 1px solid var(--border); }
.team-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: var(--accent); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.team-item h3 { font-size: 1rem; margin-bottom: 4px; color: var(--primary-darker); }
.team-item p { font-size: 0.9rem; color: var(--text); }

/* --- FAQ --- */
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 4px; margin-bottom: 12px; overflow: hidden; transition: all var(--transition); }
.faq-item[open] { box-shadow: var(--shadow-md); border-left-color: var(--accent); }
.faq-item summary {
  padding: 20px 26px; cursor: pointer;
  font-weight: 900; color: var(--primary-darker);
  font-size: 1.02rem; font-family: var(--font-display);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.8rem; color: var(--accent); font-weight: 700;
  transition: transform var(--transition); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer { padding: 0 26px 24px; color: var(--text); font-size: 0.96rem; line-height: 1.75; }
.faq-answer a { color: var(--accent-dark); font-weight: 700; }

/* --- Gallery Strip --- */
.gallery-strip { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-card {
  background: var(--white);
  padding: 10px 10px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}
.gallery-card:nth-child(1) { transform: rotate(-1.4deg); }
.gallery-card:nth-child(2) { transform: rotate(0.8deg); }
.gallery-card:nth-child(3) { transform: rotate(-0.6deg); margin-top: 18px; }
.gallery-card:nth-child(4) { transform: rotate(1.2deg); }
.gallery-card:hover { transform: rotate(0) translateY(-4px); box-shadow: var(--shadow-lg); z-index: 2; }
.gallery-card img { width: 100%; height: 240px; object-fit: cover; display: block; }
.gallery-card figcaption { padding: 12px 8px 0; font-size: 0.82rem; font-weight: 700; color: var(--text); text-align: center; font-family: var(--font-display); }
.gallery-card::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 60px; height: 16px;
  background: rgba(230, 178, 32, 0.5);
  border: 1px solid rgba(230, 178, 32, 0.3);
}
@media (max-width: 1024px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-card:nth-child(n) { transform: none; margin-top: 0; }
}
@media (max-width: 600px) { .gallery-strip { grid-template-columns: 1fr; } }

/* --- Service Area Map + Nearby --- */
.area-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.area-map { min-height: 400px; background: var(--border); }
.area-map iframe { display: block; width: 100%; height: 100%; }
.area-nearby { background: var(--white); padding: 36px 32px; display: flex; flex-direction: column; }
.area-nearby h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--primary-darker); font-family: var(--font-display); }
.area-nearby > p { color: var(--text); font-size: 0.94rem; margin-bottom: 20px; }
.nearby-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.nearby-item {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: var(--cream); border-radius: 4px;
  color: var(--primary-darker);
  font-size: 0.92rem; font-weight: 700;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.nearby-item:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateX(3px); }
.nearby-icon { font-size: 1rem; color: var(--accent); }
.nearby-item:hover .nearby-icon { color: var(--white); }
.nearby-note { margin-top: 18px; font-size: 0.86rem; color: var(--text-light); }
.nearby-note a { color: var(--accent-dark); font-weight: 700; }
@media (max-width: 768px) { .area-layout { grid-template-columns: 1fr; } .area-map { min-height: 280px; } }

/* --- Service-area MAP + grid (homepage) --- */
.area-with-map {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.area-map-leaflet {
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
  background: var(--cream-2);
}
.area-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0;
}
.area-side h3 {
  color: var(--primary-darker);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
}
.area-side > p {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
}
.area-legend {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.area-legend .leg { display: flex; align-items: center; gap: 8px; }
.leg-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.25); flex-shrink: 0; }
.leg-dot--service { background: var(--accent); }
.leg-dot--office { background: var(--gold); border-color: var(--primary-darker); }
.area-grid-stacked {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-content: start;
  flex: 1;
}
.area-grid-stacked a {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-darker);
  display: flex; justify-content: space-between; align-items: center;
  transition: all var(--transition);
}
.area-grid-stacked a:hover { background: var(--primary); color: var(--white); border-left-color: var(--gold); transform: translateX(2px); }
.area-grid-stacked a .arrow { color: var(--accent); font-weight: 900; }
.area-grid-stacked a:hover .arrow { color: var(--white); }

/* --- Map pin markers --- */
.area-pin-wrap { background: transparent; border: none; }
.area-pin {
  background: var(--accent);
  border: 3px solid var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 8px rgba(15,42,26,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.area-pin:hover { transform: rotate(-45deg) scale(1.15); }
.area-pin--office {
  background: var(--gold);
  width: 30px;
  height: 30px;
  border: 3px solid var(--primary-darker);
  box-shadow: 0 4px 12px rgba(15,42,26,0.55);
}
.area-pin--office span {
  transform: rotate(45deg);
  color: var(--primary-darker);
  font-weight: 900;
  font-size: 0.82rem;
  font-family: var(--font-display);
  line-height: 1;
}

/* --- Leaflet popup brand override --- */
.leaflet-popup-content-wrapper {
  background: var(--primary-darker);
  color: var(--white);
  border-radius: 4px;
  border-top: 3px solid var(--accent);
  padding: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.leaflet-popup-content {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin: 12px 16px;
  line-height: 1.45;
}
.leaflet-popup-content strong { color: var(--white); display: block; font-size: 0.95rem; margin-bottom: 2px; }
.leaflet-popup-content .pop-sub { font-weight: 400; font-size: 0.82rem; color: rgba(255,255,255,0.8); display: block; margin-bottom: 6px; }
.leaflet-popup-content a {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-top: 6px;
  text-decoration: none;
  border-bottom: none;
}
.leaflet-popup-content a:hover { color: var(--white); }
.leaflet-popup-tip { background: var(--primary-darker); }
.leaflet-popup-close-button { color: rgba(255,255,255,0.7) !important; font-size: 18px !important; padding: 6px 8px 0 0 !important; }
.leaflet-popup-close-button:hover { color: var(--gold) !important; }
.leaflet-container { font-family: var(--font); }
.leaflet-control-attribution { background: rgba(250,243,232,0.85) !important; font-size: 10px !important; }

@media (max-width: 1024px) {
  .area-with-map { grid-template-columns: 1fr; }
  .area-map-leaflet { height: 380px; }
  .area-grid-stacked { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .area-grid-stacked { grid-template-columns: repeat(2, 1fr); }
}

/* --- Old simple area-grid (kept for services/local-moving page) --- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.area-grid a {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-darker);
  display: flex; justify-content: space-between; align-items: center;
  transition: all var(--transition);
}
.area-grid a:hover { background: var(--primary); color: var(--white); border-left-color: var(--gold); transform: translateX(2px); }
.area-grid a .arrow { color: var(--accent); font-weight: 900; }
.area-grid a:hover .arrow { color: var(--white); }
.area-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 28px auto 0;
}
.area-routes a {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none;
  transition: all var(--transition);
}
.area-routes a:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-routes .route-tag {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent-dark); font-weight: 900;
}
.area-routes .route-name {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--primary-darker); font-weight: 900;
}
.area-routes .route-blurb { font-size: 0.88rem; color: var(--text); }
@media (max-width: 1024px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .area-grid { grid-template-columns: repeat(2, 1fr); } .area-routes { grid-template-columns: 1fr; } }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--accent);
  border-bottom: 6px solid var(--primary-darker);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 14px; font-family: var(--font-display); font-weight: 900; }
.cta-banner h2::after { display: none; }
.cta-banner p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-banner .phone {
  font-size: 2.6rem; font-weight: 900; color: var(--white);
  display: inline-block; margin-bottom: 22px;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
  padding: 8px 20px;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}
.cta-banner .phone:hover { color: var(--gold); }
.cta-banner .btn-outline { display: block; max-width: 280px; margin: 0 auto; }

/* --- Big Footer (NAP, sitemap, services, cities, USDOT, owner) --- */
.site-footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 20px;
  border-top: 6px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  font-family: var(--font);
  font-weight: 900;
}
.footer-col p, .footer-col a { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.7; }
.footer-col a:hover { color: var(--gold); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.footer-col ul.single { grid-template-columns: 1fr; }
.footer-col ul li a { display: block; padding: 4px 0; font-weight: 700; }
.footer-nap { margin-bottom: 18px; }
.footer-nap strong { color: var(--white); display: block; font-size: 0.86rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-nap address { font-style: normal; }
.footer-nap a { color: var(--white); font-weight: 900; }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.footer-meta .legal { letter-spacing: 0.04em; }
.footer-meta .credentials {
  display: flex; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-meta .credentials span {
  background: rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-owner {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin-top: 14px;
  border-radius: 0 4px 4px 0;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
}
.footer-owner strong { color: var(--white); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col ul { grid-template-columns: 1fr; }
}

/* --- Blog --- */
.blog-hero {
  background: var(--cream);
  padding: 60px 0 40px;
  border-bottom: 6px solid var(--primary);
}
.blog-hero h1 { font-size: 2.6rem; margin-bottom: 14px; color: var(--primary-darker); }
.blog-hero p { font-size: 1.1rem; color: var(--text); max-width: 780px; }
.blog-categories {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px;
}
.blog-cat {
  padding: 8px 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--primary-darker); text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all var(--transition);
}
.blog-cat:hover, .blog-cat.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.blog-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: var(--shadow-md);
}
.blog-feature .photo { background-size: cover; background-position: center; min-height: 360px; }
.blog-feature .body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-feature .tag {
  display: inline-block; background: var(--accent); color: var(--white);
  padding: 4px 10px; font-size: 0.7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 3px; margin-bottom: 14px; align-self: flex-start;
}
.blog-feature h2 { font-size: 1.9rem; margin-bottom: 14px; line-height: 1.18; color: var(--primary-darker); }
.blog-feature h2 a { color: inherit; }
.blog-feature h2 a:hover { color: var(--accent); }
.blog-feature .excerpt { font-size: 1rem; color: var(--text); margin-bottom: 18px; }
.blog-feature .meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 880px) { .blog-feature { grid-template-columns: 1fr; } .blog-feature .photo { min-height: 240px; } .blog-feature .body { padding: 28px; } }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.blog-card .photo { height: 200px; background-size: cover; background-position: center; }
.blog-card .body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card .tag {
  display: inline-block; background: var(--cream-2); color: var(--primary-darker);
  padding: 3px 10px; font-size: 0.68rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 3px; margin-bottom: 12px; align-self: flex-start;
}
.blog-card h3 { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.25; margin-bottom: 10px; color: var(--primary-darker); }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card .excerpt { font-size: 0.92rem; color: var(--text); margin-bottom: 16px; flex: 1; }
.blog-card .meta { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* --- Blog post --- */
.post-hero {
  background-color: var(--cream);
  padding: 50px 0 40px;
  border-bottom: 6px solid var(--primary);
}
.post-hero .meta-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.post-hero .post-tag {
  background: var(--accent); color: var(--white);
  padding: 4px 12px; border-radius: 3px;
  font-size: 0.72rem; font-weight: 900; letter-spacing: 0.08em;
}
.post-hero h1 {
  font-size: 2.6rem; line-height: 1.15;
  color: var(--primary-darker); max-width: 880px;
  margin-bottom: 16px;
}
.post-hero .deck {
  font-size: 1.18rem;
  color: var(--text);
  max-width: 780px;
  line-height: 1.55;
  font-family: var(--font-display);
  font-style: italic;
}

.post-cover {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  margin-top: -10px;
}
.post-cover img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 4px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 30px;
}
@media (max-width: 880px) { .post-layout { grid-template-columns: 1fr; } }

.post-body { font-size: 1.05rem; color: var(--text); line-height: 1.8; }
.post-body p { margin-bottom: 22px; }
.post-body h2 {
  font-size: 1.7rem; margin: 44px 0 18px;
  color: var(--primary-darker);
  border-left: 5px solid var(--accent);
  padding-left: 18px;
  font-family: var(--font-display);
}
.post-body h3 {
  font-size: 1.25rem; margin: 32px 0 14px;
  color: var(--primary-darker);
  font-family: var(--font-display);
  font-weight: 900;
}
.post-body ul, .post-body ol { margin: 0 0 22px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--primary-darker); }
.post-body a { color: var(--accent-dark); border-bottom: 1px solid rgba(46, 156, 74, 0.3); font-weight: 700; }
.post-body a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.post-pull {
  background: var(--cream-2);
  border-left: 6px solid var(--accent);
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--primary-darker);
  margin: 30px 0;
  border-radius: 0 4px 4px 0;
  line-height: 1.4;
}
.post-image {
  margin: 32px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.post-image img { width: 100%; height: auto; display: block; }
.post-image figcaption {
  background: var(--cream);
  padding: 12px 16px;
  font-size: 0.84rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}
/* Inline SVG data-viz figures in blog body */
.post-figure {
  margin: 36px 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px 0;
  overflow: hidden;
}
.post-figure svg { display: block; width: 100%; height: auto; }
.post-figure figcaption {
  padding: 14px 4px 18px;
  font-size: 0.84rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--border-light);
  margin-top: 16px;
}
.post-callout {
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 28px 30px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.post-callout p { margin: 0; font-size: 1.02rem; color: var(--white); font-weight: 700; }
.post-callout p strong { color: var(--white); }
.post-callout .btn { white-space: nowrap; }
.post-callout .btn-primary {
  background: var(--gold);
  color: var(--primary-darker);
  box-shadow: 0 3px 0 var(--gold-dark, #a8801f);
}
.post-callout .btn-primary:hover {
  background: var(--gold-light, #d8b66a);
  color: var(--primary-darker);
  box-shadow: 0 1px 0 var(--gold-dark, #a8801f);
}

.post-aside {
  position: sticky; top: 20px; align-self: flex-start;
  display: flex; flex-direction: column; gap: 24px;
}
.aside-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 4px;
  padding: 22px 24px;
}
.aside-card h4 {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--primary-darker); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { padding: 6px 0; border-bottom: 1px dashed var(--border-light); font-size: 0.9rem; }
.aside-card li:last-child { border-bottom: none; }
.aside-card li a { color: var(--primary-darker); font-weight: 700; }
.aside-card li a:hover { color: var(--accent); }
.aside-cta {
  background: var(--primary);
  color: var(--white);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
}
.aside-cta strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; }
.aside-cta a.btn { margin-top: 12px; padding: 12px 22px; font-size: 0.82rem; }
.aside-cta .phone-link {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--white); display: inline-block; margin-top: 6px;
  font-weight: 900;
}

.related-posts {
  background: var(--cream); padding: 56px 0;
  border-top: 1px solid var(--border);
}
.related-posts h2 { text-align: center; margin-bottom: 36px; font-size: 1.7rem; }

/* ============================
   BTMG REDESIGN DEMO ANNOTATIONS
   ============================ */
.compare-panel {
  background: #1a2332;
  color: #fff;
  border-top: 4px solid #ffb13c;
  border-bottom: 4px solid #0c1623;
  font-family: var(--font);
  margin: 0;
  padding: 0;
}
.compare-panel summary {
  list-style: none;
  cursor: pointer;
  background: linear-gradient(90deg, #1a2332 0%, #2a3852 100%);
  padding: 16px 0;
  transition: background 0.2s;
}
.compare-panel summary::-webkit-details-marker { display: none; }
.compare-panel summary:hover { background: linear-gradient(90deg, #21304a 0%, #314266 100%); }

.compare-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.compare-title {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #fff;
}
.compare-title strong { color: #fff; font-weight: 700; font-size: 1rem; font-family: var(--font); }
.badge-pill {
  background: #ffb13c;
  color: #1a2332;
  padding: 4px 11px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font);
}
.compare-toggle-hint {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.compare-toggle-hint::before { content: '\25BE  '; color: #ffb13c; }
.compare-panel[open] .compare-toggle-hint::before { content: '\25B4  '; }

.compare-body-wrap { padding: 32px 0 8px; background: #1a2332; }
.compare-body { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.compare-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  color: #fff;
  font-family: var(--font);
}
.compare-col h4 .ico {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900; font-family: var(--font-display);
}
.compare-col--problem h4 .ico { background: #d84a4a; color: #fff; }
.compare-col--changed h4 .ico { background: #ffb13c; color: #1a2332; }
.compare-col--customers h4 .ico { background: #4ec9b0; color: #1a2332; }
.compare-col--seo h4 .ico { background: #6dafff; color: #1a2332; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}
.compare-col li::before {
  content: '\203A';
  position: absolute;
  left: 0; top: -1px;
  color: #ffb13c;
  font-weight: 900;
  font-size: 1.1rem; line-height: 1;
}
.compare-col li strong { color: #fff; }
.compare-col li em { color: #ffd082; font-style: italic; }
.compare-col li code {
  background: rgba(255,255,255,0.1);
  color: #ffd082;
  padding: 1px 5px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
}

.compare-footer-wrap {
  background: rgba(0,0,0,0.25);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 24px;
}
.compare-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.compare-pages { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 6px; }
.compare-pages-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-right: 6px;
}
.compare-pages a {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  padding: 5px 11px;
  border-radius: 30px;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.15s;
}
.compare-pages a:hover { background: rgba(255,177,60,0.2); color: #fff; border-color: rgba(255,177,60,0.4); }
.compare-pages a.is-current { background: #ffb13c; color: #1a2332; border-color: #ffb13c; }
.compare-attribution {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
}
.btmg-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
}
.compare-attribution a {
  color: #ffb13c; font-weight: 700; text-decoration: none;
  border-bottom: 1px dashed rgba(255,177,60,0.4);
}
.compare-attribution a:hover { color: #fff; border-bottom-color: #fff; }

/* BTMG attribution strip at the very bottom of every page */
.btmg-strip {
  background: #0c1623;
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  font-size: 0.84rem;
  border-top: 3px solid #ffb13c;
}
.btmg-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btmg-strip strong { color: #fff; }
.btmg-strip a { color: #ffb13c; font-weight: 700; }
.btmg-strip a:hover { color: #fff; }

@media (max-width: 1024px) {
  .compare-body { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .compare-body { grid-template-columns: 1fr; gap: 20px; }
  .compare-bar-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .compare-title { font-size: 0.86rem; }
  .compare-footer { flex-direction: column; align-items: flex-start; }
}

/* --- Responsive (global) --- */
@media (max-width: 1024px) {
  .hero-layout { flex-direction: column; }
  .hero-right { flex: 1 1 auto; width: 100%; max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: 1fr; }
  .svc-grid-10 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 44px 0; }
  .hero h1 { font-size: 2rem; }
  .services-image img { height: 220px; }
  .hero-stats { gap: 8px; }
  .stat { padding: 14px 18px; min-width: auto; flex: 1; }
  .stat-number { font-size: 1.5rem; }
  .services-grid, .reviews-grid, .why-grid, .team-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 0; }
  .badge { padding: 16px 20px; flex: 1; min-width: 140px; }
  .badge + .badge::before { display: none; }
  .section { padding: 56px 0; }
  .moves-callout { flex-direction: column; text-align: center; }
  .big-rating { padding: 16px 24px; }
  .big-rating .number { font-size: 2.4rem; }
  .cta-banner .phone { font-size: 1.8rem; }
  .svc-grid-10 { grid-template-columns: repeat(2, 1fr); }
  .post-hero h1 { font-size: 1.9rem; }
  .post-cover img { height: 240px; }
  .post-callout { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-stats { flex-direction: column; }
  .stat { min-width: 100%; }
}
