/* ============================================
   Dielman Homepage — Recreation from reference bundle
   Strict adherence to reference crops; warm, premium, family-owned aesthetic.
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette */
  --color-bg: #f8f4ea;
  --color-bg-soft: #fffaf0;
  --color-green: #073b27;
  --color-green-2: #0f4a32;
  --color-green-3: #1a5238;
  --color-gold: #c9a24a;
  --color-gold-soft: #d8b66a;
  --color-text: #183628;
  --color-muted: #6f7468;
  --color-card: #fffdf7;
  --color-card-2: #ffffff;
  --color-divider: #e7dfc9;

  /* Radii */
  --radius-card: 18px;
  --radius-large: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 16px 40px rgba(24, 54, 40, 0.10);
  --shadow-card: 0 8px 28px rgba(24, 54, 40, 0.08);
  --shadow-strong: 0 24px 60px rgba(24, 54, 40, 0.18);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --max-width: 1200px;
  --gutter: 28px;

  --transition: 200ms ease;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-weight: 400;
}
a { color: var(--color-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
}
h1 { font-size: 3.4rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   1. THIN TOP ANNOUNCEMENT BAR
   ============================================ */
.topbar {
  background: var(--color-green);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}
.topbar .topbar-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar .star { color: var(--color-gold); font-size: 0.7rem; }

/* ============================================
   2. HEADER
   ============================================ */
.brand-header {
  background: var(--color-bg-soft);
  padding: 18px 0;
  box-shadow: 0 4px 18px rgba(24, 54, 40, 0.04);
  position: relative;
  z-index: 10;
}
.brand-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 30px;
  align-items: center;
}

/* Desktop primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}
.primary-nav a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-gold);
  transform: translateX(-50%);
  transition: width var(--transition);
}
.primary-nav a:hover { color: var(--color-green); }
.primary-nav a:hover::after { width: 100%; }
.primary-nav a.active { color: var(--color-green); font-weight: 600; }
.primary-nav a.active::after { width: 100%; }

@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .brand-header .container { grid-template-columns: auto 1fr auto auto; }
}

/* Logo */
.brand-logo { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-logo--img img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
}
.brand-logo .logo-emblem {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--color-green);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-soft);
  flex-shrink: 0;
}
.brand-logo .logo-emblem svg { width: 32px; height: 32px; color: var(--color-green); }
.brand-logo .logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-logo .logo-text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.brand-logo .logo-text small {
  font-size: 0.62rem;
  color: var(--color-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}
.brand-logo .logo-text .since {
  font-size: 0.55rem;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Center phone block */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: center;
  text-decoration: none;
  color: var(--color-text);
}
.header-phone .phone-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: var(--color-bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-green);
  flex-shrink: 0;
}
.header-phone .phone-icon svg { width: 20px; height: 20px; }
.header-phone .phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-phone .phone-text strong { font-family: var(--font-body); font-size: 1.18rem; color: var(--color-text); font-weight: 700; }
.header-phone .phone-text span {
  font-size: 0.74rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Hamburger */
.menu-btn {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
  transition: background var(--transition);
}
.menu-btn:hover { background: rgba(7, 59, 39, 0.05); }
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text); border-radius: 2px;
}
@media (min-width: 1101px) {
  .menu-btn { display: none; }
}

@media (max-width: 880px) {
  .brand-header .container { grid-template-columns: auto 1fr auto; gap: 14px; }
  .header-phone .phone-text { display: none; }
}

/* ============================================
   TRUST BADGES BAR (between hero and stats)
   ============================================ */
.trust-bar-v3 {
  background: var(--color-bg-soft);
  padding: 22px 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.trust-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.trust-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 18px;
  position: relative;
}
.trust-badge + .trust-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: var(--color-divider);
}
.trust-badge .trust-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.trust-badge .trust-icon svg { width: 100%; height: 100%; display: block; }
.trust-badge .trust-text { display: flex; flex-direction: column; line-height: 1.2; }
.trust-badge .trust-text strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
.trust-badge .trust-text span {
  font-size: 0.74rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .trust-badge + .trust-badge::before { display: none; }
  .trust-badge { padding: 6px 12px; }
}

/* ============================================
   3. HERO
   ============================================ */
.hero {
  background: var(--color-bg);
  padding: 56px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  min-height: 540px;
}

/* Left: headline */
.hero-headline { max-width: 480px; position: relative; z-index: 3; }
.hero-headline h1 {
  font-size: 3.6rem;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
  color: var(--color-text);
}
.hero-headline h1 .accent {
  display: block;
  font-style: italic;
  color: var(--color-green);
  font-weight: 500;
  margin-top: 6px;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 26px;
}
.hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 12px;
  background: #ffffff;
  border: 1px solid rgba(201, 162, 74, 0.55);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.005em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 6px 18px -8px rgba(7, 59, 39, 0.18),
    0 2px 6px -2px rgba(7, 59, 39, 0.08);
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(10px);
  animation: heroFactIn 0.7s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--delay, 0s);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  z-index: 4;
}
.hero-fact:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 12px 24px -10px rgba(7, 59, 39, 0.25),
    0 4px 8px -2px rgba(7, 59, 39, 0.1);
  border-color: rgba(201, 162, 74, 0.85);
}
.hero-fact strong {
  color: var(--color-green);
  font-weight: 700;
}
.hero-fact-icon {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 74, 0.12);
  color: var(--color-gold);
  flex-shrink: 0;
  animation: heroFactIconPulse 3.2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hero-fact-icon svg { width: 15px; height: 15px; }
@keyframes heroFactIn {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroFactIconPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.45); }
  50%      { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(201, 162, 74, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fact { opacity: 1; transform: none; animation: none; }
  .hero-fact-icon { animation: none; }
}

.hero-headline .lead {
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-text);
  font-weight: 500;
}
.hero-rating .stars { color: var(--color-gold); letter-spacing: 1px; font-size: 1rem; }
.hero-rating .arch-icon {
  width: 18px; height: 18px;
  color: var(--color-gold);
  display: inline-block;
}

/* Decorative St. Louis arch + skyline silhouette, sits inside .hero-headline behind the trust pill */
.hero-headline { isolation: isolate; }
.skyline-deco {
  position: absolute;
  left: -180px;
  bottom: -90px;
  width: 980px; height: 280px;
  pointer-events: none;
  z-index: 0;
  background-image: url('/assets/images/dielman/stlouis-skyline.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  opacity: 1;
  /* Tint the silhouette into the brand dark green instead of blending into cream */
  filter:
    brightness(0)
    saturate(100%)
    invert(14%) sepia(31%) saturate(1840%) hue-rotate(118deg) brightness(95%) contrast(95%)
    opacity(0.42);
}
.hero-facts { position: relative; z-index: 1; }

/* Right: photo + form + google card (homepage-only stacked layout) */
.hero-stack {
  position: relative;
  height: 520px;
}
.hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: calc(100% - 30px);
  height: 100%;
  overflow: hidden;
  /* Curved arched left edge */
  clip-path: url(#hero-arch-clip);
  background: var(--color-divider);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Google review card — overlapping bottom-left of photo */
.google-card {
  position: absolute;
  bottom: -24px; left: 70px;
  background: var(--color-card-2);
  border-radius: 12px;
  padding: 12px 22px;
  box-shadow: 0 12px 30px rgba(24, 54, 40, 0.18);
  display: flex; align-items: center; gap: 16px;
  z-index: 4;
  border: 1px solid rgba(0,0,0,0.04);
}
.google-card .g-logo {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.google-card .g-logo span:nth-child(1) { color: #4285F4; }
.google-card .g-logo span:nth-child(2) { color: #EA4335; }
.google-card .g-logo span:nth-child(3) { color: #FBBC05; }
.google-card .g-logo span:nth-child(4) { color: #4285F4; }
.google-card .g-logo span:nth-child(5) { color: #34A853; }
.google-card .g-logo span:nth-child(6) { color: #EA4335; }
.google-card .g-stats { display: flex; flex-direction: column; line-height: 1.15; }
.google-card .g-stats .top { display: flex; align-items: center; gap: 8px; }
.google-card .g-stats .rating { font-size: 1.05rem; font-weight: 700; color: var(--color-text); }
.google-card .g-stats .stars { color: var(--color-gold); font-size: 0.95rem; letter-spacing: 1px; }
.google-card .g-stats .reviews { font-size: 0.74rem; color: var(--color-muted); margin-top: 2px; font-weight: 500; }

/* Quote form card — floating right, sized to feel like the primary CTA */
.quote-card {
  position: absolute;
  top: 24px; right: 0;
  width: 340px;
  background: var(--color-card-2);
  border-radius: 14px;
  padding: 26px 26px 22px;
  box-shadow: 0 24px 60px rgba(24, 54, 40, 0.22);
  z-index: 5;
  border: 1px solid rgba(0,0,0,0.04);
}
.quote-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 4px;
}
.quote-card .h3-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.quote-card .field { margin-bottom: 12px; }
.quote-card label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.quote-card input,
.quote-card select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-divider);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg-soft);
  transition: all var(--transition);
}
.quote-card input:focus,
.quote-card select:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(7, 59, 39, 0.12);
  background: var(--color-card-2);
}
.quote-card .submit {
  width: 100%;
  background: var(--color-green);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-top: 8px;
  letter-spacing: 0.02em;
  transition: background var(--transition);
}
.quote-card .submit:hover { background: var(--color-green-2); }
.quote-card .note {
  font-size: 0.72rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-headline h1 { font-size: 2.6rem; }
  .hero-headline h1 br { display: none; }
  .hero-stack { height: auto; }
  .hero-photo { position: relative; width: 100%; height: 400px; clip-path: none; border-radius: 80px 14px 14px 14px; }
  .quote-card { position: static; width: 100%; max-width: 480px; margin: 28px auto 0; }
  .google-card { left: 16px; bottom: -22px; }
  .skyline-deco { width: 540px; height: 160px; bottom: -50px; left: -60px; opacity: 0.8; }
}

/* ============================================
   4. STATS BAND (rounded dark green rectangle)
   ============================================ */
.stats-section {
  padding: 8px 0 0;
  background: var(--color-bg);
}
.stats-band {
  background: var(--color-green);
  border-radius: var(--radius-large);
  padding: 26px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  margin-top: 30px;
}
.stat-item {
  display: flex; align-items: center; gap: 18px;
  padding: 8px 12px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 16%; bottom: 16%;
  width: 1px;
  background: rgba(255,255,255,0.16);
}
.stat-item .stat-icon {
  width: 50px; height: 50px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.stat-item .stat-icon svg { width: 24px; height: 24px; }
.stat-item .stat-content { display: flex; flex-direction: column; line-height: 1.12; color: #fff; }
.stat-item .stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.stat-item .stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.78); margin-top: 4px; line-height: 1.3; }

@media (max-width: 768px) {
  .stats-band { grid-template-columns: 1fr; padding: 22px 24px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item + .stat-item { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 16px; margin-top: 6px; }
}

/* ============================================
   5. SERVICES
   ============================================ */
.services {
  background: var(--color-bg);
  padding: 80px 0;
}
.services .layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.services .intro h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
.services .intro .accent-line {
  width: 36px; height: 3px;
  background: var(--color-gold);
  margin-bottom: 18px;
  border-radius: 2px;
}
.services .intro p {
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 360px;
}
.services .intro .view-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: transparent;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.services .intro .view-all:hover { background: var(--color-text); color: #fff; }

.services .swoosh { margin-top: 40px; width: 220px; height: 50px; }
.services .swoosh svg { width: 100%; height: 100%; }

/* Services grid 2x2 */
.services .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-card .photo {
  position: relative;
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-divider);
}
.service-card .photo .icon-corner {
  position: absolute;
  bottom: -20px; left: 22px;
  width: 44px; height: 44px;
  background: var(--color-card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-green);
  box-shadow: 0 4px 12px rgba(24, 54, 40, 0.14);
  z-index: 2;
}
.service-card .photo .icon-corner svg { width: 22px; height: 22px; }
.service-card .body { padding: 30px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card .body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card .body p {
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.service-card .body .learn {
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
}
.service-card .body .learn:hover { color: var(--color-gold); gap: 8px; }

@media (max-width: 1024px) {
  .services .layout { grid-template-columns: 1fr; gap: 40px; }
  .services .swoosh { display: none; }
}
@media (max-width: 600px) {
  .services .grid { grid-template-columns: 1fr; }
}

/* "Also offering" line below the 4 cards — keeps all 10 services accessible */
.services-extra {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 40px auto 0;
  max-width: 980px;
  padding: 20px 28px;
  background:
    linear-gradient(180deg, #fffaf0 0%, #fff5e3 100%);
  border-radius: var(--radius-card);
  border: 1px solid rgba(201,162,74,0.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 12px 28px -16px rgba(7,59,39,0.18),
    0 3px 8px -4px rgba(7,59,39,0.06);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-divider);
  font-size: 0.86rem;
  color: var(--color-muted);
}
.services-extra::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, var(--color-gold) 70%, transparent 100%);
  opacity: 0.55;
}
.services-extra .prefix {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 4px 12px;
  background: rgba(7, 59, 39, 0.06);
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 999px;
  margin-right: 8px;
}
.services-extra a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.services-extra a::after {
  content: '';
  position: absolute;
  left: 2px; right: 2px; bottom: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.services-extra a:hover {
  color: var(--color-green);
  transform: translateY(-1px);
}
.services-extra a:hover::after { transform: scaleX(1); }
.services-extra .dot {
  color: var(--color-gold);
  opacity: 0.85;
  font-weight: 700;
  font-size: 0.7rem;
}

/* ============================================
   WHERE WE SERVE (map + cities + routes)
   ============================================ */
.areas {
  background: var(--color-bg);
  padding: 70px 0 30px;
}
.areas .head { text-align: center; margin-bottom: 40px; }
.areas .head h2 { font-size: 2.2rem; font-weight: 600; }
.areas .head .lead {
  color: var(--color-muted);
  font-size: 0.96rem;
  max-width: 620px;
  margin: 12px auto 0;
}
.areas-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.areas-map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-card-2);
  border-top: 4px solid var(--color-gold);
  display: flex;
  flex-direction: column;
}
.areas-map { height: 420px; flex-shrink: 0; }

.areas-offices {
  padding: 16px 22px 18px;
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg-soft);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.areas-office-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-green);
}
.areas-office-head .dot-office {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,162,74,0.18);
  flex-shrink: 0;
}
.areas-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.areas-office {
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--color-divider);
  border-left: 3px solid var(--color-gold);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.areas-office:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7,59,39,0.08);
  border-left-color: var(--color-green);
}
.areas-office-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}
.areas-office-addr {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.3;
}
.areas-office-meta {
  font-size: 0.72rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .areas-office-grid { grid-template-columns: 1fr; }
}
.areas-side {
  background: var(--color-card-2);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
}
.areas-side h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 700;
  margin: 0 0 4px;
}
.areas-side > p {
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.areas-legend {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 10px 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: 16px;
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.areas-legend .leg { display: flex; align-items: center; gap: 7px; }
.leg-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--color-card-2); box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.leg-dot--service { background: var(--color-green); }
.leg-dot--office { background: var(--color-gold); border-color: var(--color-green); }
.cities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.cities-grid a {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-left: 3px solid var(--color-gold);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  display: flex; justify-content: space-between; align-items: center;
  transition: all var(--transition);
}
.cities-grid a:hover { background: var(--color-green); color: #fff; border-left-color: var(--color-gold-soft); }
.cities-grid a .arrow { color: var(--color-gold); font-weight: 700; }
.cities-grid a:hover .arrow { color: var(--color-gold-soft); }

.routes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px; margin: 28px auto 0;
}
.route-card {
  background: var(--color-card-2);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-divider);
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 6px;
  transition: all var(--transition);
}
.route-card:hover { border-color: var(--color-gold); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.route-card .tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  font-weight: 700;
}
.route-card .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 700;
}
.route-card .blurb { font-size: 0.86rem; color: var(--color-muted); line-height: 1.5; }

/* Leaflet pin styling for v3 design */
.area-pin-wrap { background: transparent; border: none; }
.area-pin {
  background: var(--color-green);
  border: 3px solid #fff;
  width: 22px; height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 8px rgba(7, 59, 39, 0.5);
}
.area-pin--office {
  background: var(--color-gold);
  width: 30px; height: 30px;
  border: 3px solid var(--color-green);
  display: flex; align-items: center; justify-content: center;
}
.area-pin--office span {
  transform: rotate(45deg);
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: var(--font-display);
}
.leaflet-popup-content-wrapper {
  background: var(--color-green);
  color: #fff;
  border-radius: 8px;
  border-top: 3px solid var(--color-gold);
}
.leaflet-popup-content {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: #fff;
  margin: 12px 16px;
}
.leaflet-popup-content strong { color: #fff; display: block; font-size: 0.95rem; margin-bottom: 2px; }
.leaflet-popup-content .pop-sub { font-weight: 400; font-size: 0.78rem; color: rgba(255,255,255,0.78); display: block; margin-bottom: 6px; }
.leaflet-popup-content a {
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 4px;
}
.leaflet-popup-content a:hover { color: #fff; }
.leaflet-popup-tip { background: var(--color-green); }
.leaflet-control-attribution { background: rgba(248,244,234,0.85) !important; font-size: 10px !important; }

@media (max-width: 1024px) {
  .areas-layout { grid-template-columns: 1fr; }
  .areas-map { height: 360px; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .routes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }

/* Footer credentials row */
.footer-creds {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px;
}
.footer-creds span {
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.3);
  color: var(--color-gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-owner-attribution {
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--color-gold);
  padding: 10px 14px;
  margin-top: 12px;
  border-radius: 0 4px 4px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}
.footer-owner-attribution strong { color: #fff; }

/* ============================================
   6. HOW IT WORKS (rounded dark green panel)
   ============================================ */
.how-it-works {
  padding: 0 0 30px;
  background: var(--color-bg);
}
.how-panel {
  background: var(--color-green);
  border-radius: var(--radius-large);
  padding: 60px 56px 60px;
  position: relative;
  overflow: hidden;
}
.how-panel .leaf-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}
.how-panel .leaf-deco--tl { top: 0; left: 0; width: 200px; height: auto; }
.how-panel .leaf-deco--br { bottom: 0; right: 0; width: 200px; height: auto; }
.how-panel .leaf-deco--bl { bottom: 30px; left: 30px; width: 160px; height: 100px; transform: scaleX(-1); opacity: 0.4; }
.how-panel .leaf-deco svg,
.how-panel .leaf-deco img { width: 100%; height: auto; display: block; }
.how-panel .container { padding: 0; max-width: none; position: relative; z-index: 2; }

.how-header { text-align: center; margin-bottom: 20px; }
.how-header .header-banner {
  display: block;
  margin: 0 auto 6px;
  width: min(360px, 65%); height: auto;
}
.how-header .header-leaf {
  display: block;
  margin: 0 auto 8px;
  width: 50px; height: 18px;
  opacity: 0.85;
}
.how-header .eyebrow {
  color: var(--color-gold);
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.22em;
}
.how-header .eyebrow::before,
.how-header .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28px; height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}
.how-header .eyebrow::before { right: calc(100% + 14px); }
.how-header .eyebrow::after { left: calc(100% + 14px); }
.how-header h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 0;
}
.how-header .header-leaf-bottom {
  display: block;
  margin: 12px auto 0;
  width: 60px; height: 18px;
  opacity: 0.7;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
/* Solid gold connector line going through the dots BELOW the badges */
.process-track::before {
  content: '';
  position: absolute;
  top: 102px; left: 12.5%; right: 12.5%;
  border-top: 1.5px solid var(--color-gold);
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step .step-num {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  position: relative;
}
.process-step .step-num::before,
.process-step .step-num::after {
  content: '·';
  color: var(--color-gold);
  font-weight: 700;
  margin: 0 8px;
  font-size: 1rem;
  vertical-align: middle;
}
.process-step .badge {
  width: 70px; height: 70px;
  background: var(--color-bg-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-green);
  position: relative;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
  transition: transform var(--transition);
}
/* Inner gold ring */
.process-step .badge::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0.85;
}
.process-step .badge svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.process-step:hover .badge { transform: scale(1.06); }
.process-step .dot {
  width: 9px; height: 9px;
  background: var(--color-gold);
  border-radius: 50%;
  margin: 12px 0 18px;
  z-index: 2;
  position: relative;
}
.process-step .label {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.process-step .desc {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 150px;
}

@media (max-width: 880px) {
  .how-panel { padding: 44px 24px 50px; }
  .how-panel .leaf-deco--tl,
  .how-panel .leaf-deco--br,
  .how-panel .leaf-deco--bl { display: none; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-track::before { display: none; }
  .process-step .dot { display: none; }
}

/* ============================================
   7. LEGACY / TRUST
   ============================================ */
.legacy {
  background: var(--color-bg);
  padding: 70px 0 50px;
  position: relative;
}
.legacy::before {
  content: '';
  position: absolute;
  top: 30px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 30%, var(--color-gold) 70%, transparent 100%);
  opacity: 0.5;
}
.legacy .layout {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-top: 12px;
}

.legacy-photo-wrap {
  position: relative;
  height: 420px;
}
.legacy-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: url(#legacy-arch-clip);
  background: var(--color-divider);
}
.legacy-photo img { width: 100%; height: 100%; object-fit: cover; }

.legacy-badge {
  position: absolute;
  bottom: -20px; left: -10px;
  width: 130px; height: 130px;
  background: var(--color-bg-soft);
  border-radius: 50%;
  border: 4px solid var(--color-bg-soft);
  box-shadow: 0 8px 20px rgba(24, 54, 40, 0.18);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.legacy-badge svg { width: 100%; height: 100%; padding: 14px; }

.legacy-content .eyebrow { color: var(--color-gold); }
.legacy-content h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 600;
}
.legacy-content p {
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}
.legacy-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 520px;
}
.legacy-features .ft {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.legacy-features .ft .ft-icon {
  width: 32px; height: 32px;
  color: var(--color-green);
  display: flex; align-items: center; justify-content: center;
}
.legacy-features .ft .ft-icon svg { width: 26px; height: 26px; }
.legacy-features .ft .ft-label {
  font-size: 0.78rem;
  color: var(--color-text);
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .legacy .layout { grid-template-columns: 1fr; gap: 50px; }
  .legacy-photo { clip-path: none; border-radius: 14px 80px 14px 14px; }
  .legacy-features { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   8. CTA CARD (rounded dark green with truck photo) — homepage only
   ============================================ */
.cta-section { background: var(--color-bg); padding: 24px 0 60px; }
.cta-card {
  background: var(--color-green);
  border-radius: var(--radius-large);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.cta-card .cta-text {
  padding: 44px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-card h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.cta-card .cta-text > p {
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  margin-bottom: 24px;
}
.cta-card .cta-row {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.cta-card .gold-btn {
  background: var(--color-gold);
  color: var(--color-text);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: background var(--transition);
}
.cta-card .gold-btn:hover { background: var(--color-gold-soft); color: var(--color-text); }
.cta-card .or-call {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.cta-card .or-call .ico {
  color: var(--color-gold);
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}
.cta-card .or-call .ico svg { width: 12px; height: 12px; }
.cta-card .or-call .or-text { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.cta-card .or-call .phone { font-size: 1.05rem; color: #fff; font-weight: 700; }
.cta-card .or-call .phone:hover { color: var(--color-gold); }
.cta-card .cta-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 220px;
}
.cta-card .cta-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--color-green) 0%, rgba(7,59,39,0.45) 35%, transparent 100%);
}

@media (max-width: 880px) {
  .cta-card { grid-template-columns: 1fr; }
  .cta-card .cta-text { padding: 32px 28px; }
  .cta-card .cta-photo { min-height: 180px; }
}

/* ============================================
   9. TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--color-bg);
  padding: 70px 0 30px;
}
.testimonials .head { text-align: center; margin-bottom: 40px; }
.testimonials .head h2 { font-size: 2.2rem; font-weight: 600; }
.testimonials .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
}
.testimonial {
  background: var(--color-card-2);
  border-radius: var(--radius-card);
  padding: 22px 24px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--color-divider);
}
.testimonial .t-top {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--color-divider);
}
.testimonial .t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--avatar-bg, #1a73e8);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial .t-meta {
  display: flex; flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.testimonial .t-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--color-text);
}
.testimonial .t-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--color-muted);
  font-weight: 500;
}
.testimonial .g-mark {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.testimonial .quote {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 12px;
}
.testimonial .stars { color: var(--color-gold); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: 10px; }
.testimonial .who { font-size: 0.78rem; color: var(--color-muted); font-weight: 500; }

.testimonials-cta {
  display: flex;
  justify-content: center;
  margin: 36px auto 0;
  max-width: 1080px;
}
.t-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px 14px 18px;
  background: #ffffff;
  border: 1px solid var(--color-divider);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-text);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 12px 28px -16px rgba(7,59,39,0.18),
    0 3px 8px -4px rgba(7,59,39,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.t-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(201,162,74,0.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 18px 36px -16px rgba(7,59,39,0.22),
    0 5px 12px -4px rgba(7,59,39,0.1);
}
.t-cta .g-mark {
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.t-cta-body {
  display: flex; flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.t-cta-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem;
  color: var(--color-text);
}
.t-cta-rating strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.t-cta-stars { color: var(--color-gold); letter-spacing: 1px; font-size: 0.86rem; }
.t-cta-line {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 2px;
}
.t-cta-line strong { color: var(--color-text); font-weight: 700; }
.t-cta-arrow {
  font-size: 1.15rem;
  color: var(--color-gold);
  transition: transform 0.25s ease;
}
.t-cta:hover .t-cta-arrow { transform: translateX(4px); }

.dot-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }
.dot-pagination .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-divider);
}
.dot-pagination .dot.active { background: var(--color-green); }

@media (max-width: 1024px) {
  .testimonials .grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================
   10. WHY CHOOSE
   ============================================ */
.why-choose {
  background: var(--color-bg);
  padding: 24px 0 70px;
}
.why-card {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-large);
  padding: 50px 60px 56px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
/* Decorative leaf edges (left & right bookends) */
.why-card .leaf-edge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 130px; height: 380px;
  pointer-events: none;
  opacity: 0.9;
}
.why-card .leaf-edge--left { left: 8px; }
.why-card .leaf-edge--right { right: 8px; }
.why-card .leaf-edge svg,
.why-card .leaf-edge img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.why-card .head {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}
.why-card .head .header-banner {
  display: block;
  margin: 0 auto 18px;
  width: min(420px, 70%); height: auto;
}
.why-card .head .eyebrow {
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}
.why-card .head h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

.why-card .features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.why-card .ft {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
  padding: 0 12px 18px;
  position: relative;
}
/* Vertical thin divider between features (skips the last one) */
.why-card .ft + .ft::before {
  content: '';
  position: absolute;
  left: 0; top: 70px; bottom: 0;
  width: 1px;
  background: var(--color-divider);
}
/* Gold dot connector between icon circles, positioned on the imaginary horizontal line */
.why-card .ft + .ft::after {
  content: '';
  position: absolute;
  left: -3px; top: 36px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  z-index: 3;
}

/* Icon circle with dotted gold border */
.why-card .ft .ico {
  width: 78px; height: 78px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-green);
  position: relative;
  background: var(--color-bg-soft);
}
/* Outer dotted gold ring */
.why-card .ft .ico::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.4px dashed var(--color-gold);
  opacity: 0.85;
}
.why-card .ft .ico svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.why-card .ft .lbl {
  font-family: var(--font-display);
  font-size: 0.94rem;
  color: var(--color-text);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.005em;
}

@media (max-width: 1024px) {
  .why-card { padding: 44px 30px 50px; }
  .why-card .features { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .why-card .ft + .ft:nth-child(3n+1)::before,
  .why-card .ft + .ft:nth-child(3n+1)::after { display: none; }
  .why-card .leaf-edge { display: none; }
}
@media (max-width: 600px) {
  .why-card .features { grid-template-columns: repeat(2, 1fr); }
  .why-card .ft + .ft::before,
  .why-card .ft + .ft::after { display: none; }
}

/* ============================================
   11. BLOG
   ============================================ */
.blog-section {
  background: var(--color-bg);
  padding: 70px 0 30px;
}
.blog-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap; gap: 14px;
}
.blog-head h2 { font-size: 2.1rem; font-weight: 600; }
.blog-head .view-all-link {
  font-size: 0.92rem;
  color: var(--color-text);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.blog-head .view-all-link:hover { color: var(--color-gold); gap: 10px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--color-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.blog-card .photo {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-card .body { padding: 22px 24px 26px; }
.blog-card .date {
  font-size: 0.7rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--color-text);
  font-weight: 700;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--color-green); }

@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================
   12. FAQ
   ============================================ */
.faq-section {
  background: var(--color-bg);
  padding: 80px 0 90px;
}
.faq-section .layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* Left intro column */
.faq-intro { position: sticky; top: 30px; }
.faq-intro .eyebrow { letter-spacing: 0.18em; color: var(--color-gold); }
.faq-intro h2 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
.faq-intro h2 .accent { font-style: italic; color: var(--color-green); }
.faq-intro .accent-line {
  width: 36px; height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  margin-bottom: 18px;
}
.faq-intro p {
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 380px;
}
.faq-cta {
  background: var(--color-card-2);
  border: 1px solid var(--color-divider);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-cta .cta-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-cta .cta-label svg { width: 20px; height: 20px; color: var(--color-gold); }
.faq-cta p {
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0;
}
.faq-cta a.phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color var(--transition);
  margin-top: 4px;
}
.faq-cta a.phone:hover { color: var(--color-gold); }

/* Right accordion column */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--color-card-2);
  border: 1px solid var(--color-divider);
  border-left: 3px solid transparent;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-list details:hover {
  border-color: rgba(201, 162, 74, 0.5);
  border-left-color: var(--color-gold);
  box-shadow: var(--shadow-card);
}
.faq-list details[open] {
  border-color: var(--color-gold);
  border-left-color: var(--color-gold);
  box-shadow: var(--shadow-card);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
  letter-spacing: -0.005em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .faq-toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1.4px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}
.faq-list details[open] summary .faq-toggle {
  background: var(--color-gold);
  color: var(--color-card-2);
  transform: rotate(45deg);
}
.faq-list summary:hover { color: var(--color-green); }
.faq-list .faq-body {
  padding: 0 26px 24px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-list .faq-body a { color: var(--color-green); font-weight: 600; }

@media (max-width: 1024px) {
  .faq-section .layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
}

/* ============================================
   13. FOOTER (dark green with wavy top edge)
   ============================================ */
.brand-footer {
  background: var(--color-green);
  color: rgba(255,255,255,0.78);
  padding: 50px 0 22px;
  position: relative;
}
.brand-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0; height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}
.brand-footer .wave-top {
  position: absolute;
  top: -36px; left: 0; right: 0;
  width: 100%; height: 36px;
  display: block;
}
.brand-footer .container { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand-logo .logo-emblem {
  background: transparent;
  border-color: var(--color-gold);
}
.footer-brand .brand-logo .logo-emblem svg { color: var(--color-gold); }
.footer-brand .brand-logo .logo-text strong { color: #fff; }
.footer-brand .brand-logo .logo-text small { color: rgba(255,255,255,0.55); }
.footer-brand .brand-logo .logo-text .since { color: var(--color-gold); }
.footer-brand .brand-logo--img img {
  height: 64px;
  max-width: 260px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-gold); color: var(--color-green); }
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
/* Force single-column lists, overriding site.css's 2-col grid rule */
.brand-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  grid-template-columns: none;
}
.brand-footer .footer-col ul li { padding: 5px 0; display: block; }
.brand-footer .footer-col ul li a {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-block;
  transition: color var(--transition);
}
.brand-footer .footer-col ul li a:hover { color: var(--color-gold); }

/* Get In Touch contact list — flex rows, not grid columns */
.brand-footer .footer-contact ul {
  display: block !important;
  grid-template-columns: none !important;
}
.brand-footer .footer-contact ul li {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.footer-contact .ico {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,162,74,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.footer-contact .ico svg { width: 12px; height: 12px; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,162,74,0.25);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom .links a { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   BTMG REDESIGN DEMO ANNOTATIONS (kept overlay)
   ============================================ */
.compare-panel {
  background: #1a2332;
  color: #fff;
  border-top: 4px solid #ffb13c;
  border-bottom: 4px solid #0c1623;
  font-family: var(--font-body);
}
.compare-panel summary {
  list-style: none; cursor: pointer;
  background: linear-gradient(90deg, #1a2332 0%, #2a3852 100%);
  padding: 16px 0;
}
.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; }
.compare-title strong { color: #fff; font-weight: 700; font-size: 1rem; }
.badge-pill {
  background: #ffb13c; color: #1a2332;
  padding: 4px 11px; border-radius: 30px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.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: 700; color: #fff; font-family: var(--font-body);
}
.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: 700; 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: 700; 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: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.08);
}
.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-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; }
}

/* Hidden SVG defs */
.svg-defs {
  position: absolute;
  width: 0; height: 0;
  pointer-events: none;
  overflow: hidden;
}
