/* KentuckianaHomePros.com — v2.0 "Warm Studio" Redesign
   Craftsman-inspired aesthetic: evergreen + sienna + warm parchment
   ────────────────────────────────────────────────────────────── */

/* ── DESIGN TOKENS ── */
:root {
  /* Primary palette */
  --green: #1a3329;
  --green-800: #22412f;
  --green-700: #2d5a3e;
  --green-600: #3a7250;
  --green-500: #4a8c63;
  --green-100: #e8f0eb;

  /* Accent — burnt sienna */
  --sienna: #c2622d;
  --sienna-dark: #a34e1f;
  --sienna-light: #fdf0e8;
  --sienna-100: #fbe4d5;
  --sienna-glow: rgba(194, 98, 45, .12);

  /* Gold for premium tiers */
  --gold: #b8860b;
  --gold-light: #faf3e0;

  /* Neutrals — warm tones */
  --ink: #2c2416;
  --ink-700: #4a3f30;
  --ink-500: #6a5f4f;
  --ink-400: #7d7264;
  --ink-300: #c4baa9;
  --ink-200: #e0d9cd;
  --ink-100: #f0ece4;
  --parchment: #faf7f2;
  --white: #ffffff;

  /* Blue for links */
  --blue: #2a5f8f;
  --blue-light: #edf4fa;

  /* Utility */
  --success: #2a7a3f;
  --success-light: #edf7ef;
  --error: #a63030;
  --error-light: #fdf0f0;

  /* Shape */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xs: 4px;

  /* Shadows — warm-tinted */
  --shadow: 0 1px 3px rgba(44, 36, 22, .06), 0 1px 2px rgba(44, 36, 22, .04);
  --shadow-md: 0 4px 20px rgba(44, 36, 22, .08);
  --shadow-lg: 0 12px 48px rgba(44, 36, 22, .12);
  --shadow-warm: 0 8px 32px rgba(194, 98, 45, .1);

  /* Legacy variable aliases (PHP templates use these) */
  --orange: var(--sienna);
  --orange-dark: var(--sienna-dark);
  --orange-light: var(--sienna-light);
  --orange-100: var(--sienna-100);
  --ink-200-legacy: var(--ink-200);
  --bg: var(--parchment);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .nav-brand, .price-tier, .hero-card-num, .footer-brand {
  font-family: 'Bitter', Georgia, 'Times New Roman', serif;
  letter-spacing: -.01em;
}

a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sienna); text-decoration: underline; }
img { max-width: 100%; display: block; }

::selection {
  background: var(--sienna);
  color: #fff;
}

/* ── NOISE TEXTURE OVERLAY (atmosphere) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── NAV ── */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--ink-200);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.92);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; position: relative;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 20px; color: var(--ink);
  text-decoration: none;
  letter-spacing: -.02em;
}
.nav-logo {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  box-shadow: 0 2px 8px rgba(26, 51, 41, .3);
  transition: transform .3s, box-shadow .3s;
}
.nav-brand:hover .nav-logo {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 4px 16px rgba(26, 51, 41, .35);
}
.nav-brand span { color: var(--sienna); }
.nav-brand:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-links a {
  color: var(--ink-700); font-size: 14px; font-weight: 500;
  position: relative; text-decoration: none;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--sienna);
  transform: scaleX(0); transition: transform .25s;
  border-radius: 1px;
}
.nav-links a:hover { color: var(--sienna); text-decoration: none; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--sienna); color: #fff !important; padding: 9px 20px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .5px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(194, 98, 45, .25);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--sienna-dark); text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(194, 98, 45, .3);
}
.nav-links.show {
  display: flex; flex-direction: column;
  position: absolute; top: 68px; left: 0; right: 0;
  background: var(--white); padding: 20px 28px;
  border-bottom: 2px solid var(--ink-200);
  box-shadow: var(--shadow-lg);
}
.nav-mobile {
  display: none; background: none; border: none;
  font-size: 24px; color: var(--ink); cursor: pointer;
  transition: color .2s;
}
.nav-mobile:hover { color: var(--sienna); }

/* ── HERO ── */
.hero {
  background: var(--green);
  color: #fff;
  padding: 80px 28px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.015) 40px,
      rgba(255,255,255,.015) 42px
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194,98,45,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,192,80,.1); border: 1px solid rgba(240,192,80,.25);
  border-radius: 50px; padding: 6px 16px;
  font-size: 11px; font-weight: 700; color: #f0c050;
  margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px;
  animation: slideRight .6s ease-out;
}
.hero h1 {
  font-size: 46px; font-weight: 900; line-height: 1.08;
  margin-bottom: 18px; letter-spacing: -.025em;
  animation: fadeUp .7s ease-out;
}
.hero h1 em {
  font-style: normal;
  color: #f0c050;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: rgba(194,98,45,.4);
  border-radius: 2px;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.75;
  margin-bottom: 32px; max-width: 480px;
  animation: fadeUp .7s ease-out .15s both;
}

/* ── SEARCH BOX ── */
.search-box {
  background: var(--white); border-radius: var(--radius);
  padding: 6px; display: flex; gap: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.2), 0 0 0 1px rgba(255,255,255,.1);
  animation: fadeUp .7s ease-out .3s both;
}
.search-input {
  flex: 1; border: none; padding: 16px 20px; font-size: 15px;
  font-family: inherit; color: var(--ink); border-radius: var(--radius-sm);
  outline: none; background: transparent;
}
.search-input::placeholder { color: var(--ink-400); }
.search-input:focus { box-shadow: inset 0 0 0 2px var(--sienna-light); }
.search-select {
  width: 180px; border: none; padding: 16px 18px; font-size: 14px;
  font-family: inherit; color: var(--ink-700);
  border-left: 2px solid var(--ink-100);
  background: transparent; outline: none; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09585' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.search-btn {
  background: var(--sienna); color: #fff; border: none;
  padding: 16px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  white-space: nowrap; letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.search-btn:hover {
  background: var(--sienna-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(194, 98, 45, .3);
}

/* Hero trust bar */
.hero-trust {
  display: flex; gap: 28px; margin-top: 28px;
  animation: fadeUp .7s ease-out .45s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.65);
  font-weight: 500;
}
.hero-trust-item i { color: #f0c050; font-size: 14px; }

/* Hero right — quick stats cards */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  animation: fadeIn .8s ease-out .5s both;
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 24px;
  transition: background .3s, border-color .3s;
}
.hero-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}
.hero-card-num {
  font-size: 36px; font-weight: 900; color: #fff;
  letter-spacing: -.03em;
}
.hero-card-label {
  font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px;
  font-weight: 500;
}
.hero-card.accent {
  border-color: rgba(194,98,45,.35);
  background: rgba(194,98,45,.08);
}
.hero-card.accent .hero-card-num { color: #f0c050; }

/* ── CATEGORIES ── */
.cats {
  padding: 72px 28px;
  background: var(--white);
  border-top: 2px solid var(--ink-200);
  position: relative;
}
.cats::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--ink-100) 0%, transparent 100%);
  opacity: .4;
  pointer-events: none;
}
.cats-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.cats-header {
  margin-bottom: 40px;
  text-align: center;
}
.cats-header h2 {
  font-size: 30px; font-weight: 900;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.cats-header h2::before,
.cats-header h2::after {
  content: '';
  width: 40px; height: 2px;
  background: var(--sienna);
  border-radius: 1px;
}
.cats-header p { color: var(--ink-500); font-size: 15px; margin-top: 8px; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border: 2px solid var(--ink-200);
  border-radius: 16px;
  padding: 32px 16px 26px;
  text-align: center; cursor: pointer;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  text-decoration: none; color: var(--ink);
  position: relative;
  overflow: hidden;
}
/* Subtle bottom accent bar that slides up on hover */
.cat-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sienna), var(--green-600));
  transform: scaleX(0);
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  transform-origin: center;
}
.cat-card:hover {
  border-color: var(--sienna);
  box-shadow: 0 8px 28px rgba(194, 98, 45, .12), 0 2px 8px rgba(44, 36, 22, .06);
  transform: translateY(-6px);
  text-decoration: none;
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
  transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .3s;
  position: relative;
}
/* Icon glow ring on hover */
.cat-card:hover .cat-icon {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.cat-name {
  font-size: 14px; font-weight: 700;
  font-family: 'Bitter', serif;
  line-height: 1.3;
}
.cat-count {
  font-size: 12px; color: var(--ink-400); margin-top: 6px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.cat-count::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--sienna);
  border-radius: 50%;
  opacity: .5;
}

/* ── FEATURED PROS ── */
.featured {
  padding: 56px 28px 64px;
  background: var(--white);
  border-top: 2px solid var(--ink-200);
}
.featured-inner { max-width: 1200px; margin: 0 auto; }
.featured-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.featured-header h2 {
  font-size: 28px; font-weight: 800;
  display: flex; align-items: center; gap: 12px;
}
.featured-header h2::before {
  content: '';
  width: 4px; height: 28px;
  background: var(--sienna);
  border-radius: 2px;
}
.featured-header p { color: var(--ink-500); font-size: 15px; margin-top: 4px; }
.sponsor-tag {
  font-size: 11px; font-weight: 700; color: var(--ink-400);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.pros-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* ── PRO CARD ── */
.pro-card {
  border: 1px solid var(--ink-200); border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  background: var(--white);
  position: relative;
}
.pro-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pro-card.sponsored { border-color: #d4a76a; }
.pro-banner { height: 5px; }
.pro-banner.gold {
  background: linear-gradient(90deg, #b8860b, #d4a41e, #b8860b);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
.pro-banner.silver { background: linear-gradient(90deg, #8a9aa8, #b0bec5); }
.pro-banner.bronze { background: linear-gradient(90deg, var(--sienna), #d4834a); }
.pro-body {
  padding: 24px; text-decoration: none; color: var(--ink); display: block;
}
.pro-body:hover { text-decoration: none; }
.pro-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 14px;
}
.pro-avatar {
  width: 58px; height: 58px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.pro-avatar-img {
  width: 58px; height: 58px; border-radius: 14px; object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.pro-avatar.a1 { background: linear-gradient(135deg, #1a3329, #2d5a3e); }
.pro-avatar.a2 { background: linear-gradient(135deg, #2a5f3e, #48a06c); }
.pro-avatar.a3 { background: linear-gradient(135deg, #c2622d, #d4834a); }
.pro-avatar.a4 { background: linear-gradient(135deg, #6b3fa0, #8b5cf6); }
.pro-avatar.a5 { background: linear-gradient(135deg, #a63030, #d45050); }
.pro-avatar.a6 { background: linear-gradient(135deg, #2a5f8f, #4a8fc2); }
.pro-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-xs); letter-spacing: .3px;
}
.pro-badge.gold { background: var(--gold-light); color: var(--gold); }
.pro-badge.featured { background: var(--sienna-light); color: var(--sienna); }
.pro-name { font-size: 17px; font-weight: 700; margin-bottom: 3px; font-family: 'Bitter', serif; }
.pro-service { font-size: 13px; color: var(--ink-500); margin-bottom: 10px; }
.pro-stars { color: var(--gold); font-size: 13px; margin-bottom: 8px; }
.pro-stars span { color: var(--ink-500); font-weight: 500; margin-left: 6px; }
.pro-details { font-size: 13px; color: var(--ink-700); line-height: 1.65; }
.pro-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.pro-tag {
  background: var(--ink-100); color: var(--ink-700);
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  border-radius: 50px;
  transition: background .2s, color .2s;
}
.pro-tag:hover { background: var(--sienna-light); color: var(--sienna); }
.pro-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--ink-100);
  background: var(--parchment);
}
.pro-phone {
  font-size: 14px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 6px;
}
.pro-phone i { color: var(--green-600); }
.pro-quote-btn {
  background: var(--sienna); color: #fff; border: none;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit; text-decoration: none; display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .3px;
}
.pro-quote-btn:hover {
  background: var(--sienna-dark); text-decoration: none; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(194, 98, 45, .25);
}
.pro-quote-btn.outline {
  background: var(--green); color: #fff;
}
.pro-quote-btn.outline:hover {
  background: var(--green-800);
  box-shadow: 0 4px 12px rgba(26, 51, 41, .25);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 64px 28px;
  border-top: 2px solid var(--ink-200);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how h2 {
  font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 8px;
}
.how > .how-inner > p,
.how-inner > p { text-align: center; color: var(--ink-500); font-size: 15px; margin-bottom: 40px; }
.how-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px;
}
.how-col h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bitter', serif;
}
.how-col h3 i { color: var(--sienna); }
.how-step {
  display: flex; gap: 18px; margin-bottom: 24px;
}
.how-num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
  font-family: 'Bitter', serif;
}
.how-num.owner { background: var(--sienna-100); color: var(--sienna); }
.how-num.pro { background: var(--green-100); color: var(--green); }
.how-step-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; font-family: 'Bitter', serif; }
.how-step-text p { font-size: 13px; color: var(--ink-500); line-height: 1.6; }

/* ── AD BANNER ── */
.ad-banner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.ad-slot {
  background: var(--ink-100); border: 2px dashed var(--ink-200);
  border-radius: var(--radius); padding: 24px;
  text-align: center; color: var(--ink-400); font-size: 13px;
  margin: 36px 0;
}
.ad-slot strong { color: var(--ink-500); }
.ad-container {
  text-align: center; margin: 36px auto; max-width: 1200px; padding: 0 28px;
}

/* ── PLATINUM MEMBERS ── */
.plat-section {
  padding: 0 28px 64px;
}
.plat-wrap {
  max-width: 1200px; margin: 0 auto;
}
.plat-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Bitter', serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 24px;
}
.plat-label i { font-size: 14px; }
.plat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}

/* ── TINA CARD ── */
.plat-tina {
  display: flex; text-decoration: none; color: var(--ink);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.25,.8,.25,1), box-shadow .3s;
}
.plat-tina:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  text-decoration: none; color: var(--ink);
}
.plat-tina-photo {
  width: 210px; min-height: 280px; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.plat-tina-photo > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .5s;
}
.plat-tina:hover .plat-tina-photo > img { transform: scale(1.05); }
.plat-tina-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
}
.plat-tina-logo {
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
}
.plat-tina-body {
  flex: 1; padding: 32px;
  display: flex; flex-direction: column;
}
.plat-tina-hook {
  font-family: 'Bitter', serif;
  font-size: 24px; font-weight: 800;
  letter-spacing: -.3px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.plat-tina-sub {
  font-size: 14px; font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 16px;
}
.plat-tina-exp {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--success);
  background: var(--success-light);
  border: 1px solid #b8dcc0;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}
.plat-tina-exp i { font-size: 12px; }
.plat-tina-bio {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: auto;
  padding-bottom: 20px;
}
.plat-tina-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ink-200);
}
.plat-tina-phone {
  font-size: 14px; font-weight: 600;
  color: var(--ink-700);
  display: flex; align-items: center; gap: 6px;
}
.plat-tina-phone i { color: var(--green-600); font-size: 12px; }
.plat-tina-link {
  font-size: 14px; font-weight: 700;
  color: var(--sienna);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s;
}
.plat-tina:hover .plat-tina-link { gap: 12px; }

/* ── MF CARD ── */
.plat-mf {
  display: flex; flex-direction: column;
  text-decoration: none; color: #fff;
  border-radius: 18px;
  overflow: hidden;
  padding: 40px 36px 36px;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(194,98,45,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(184,134,11,.1) 0%, transparent 50%),
    linear-gradient(160deg, #0f1a14 0%, #1a3329 40%, #22412f 100%);
  border: 1px solid rgba(184,134,11,.2);
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.25,.8,.25,1), box-shadow .3s;
}
.plat-mf:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
  text-decoration: none; color: #fff;
}
.plat-mf-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.plat-mf-badge {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff;
  background: linear-gradient(135deg, var(--sienna), var(--gold));
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plat-mf-site {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.35);
  letter-spacing: .5px;
}
.plat-mf-title {
  font-family: 'Bitter', serif;
  font-size: 30px; font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 24px;
}
.plat-mf-title span {
  background: linear-gradient(90deg, #e8c860, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plat-mf-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.plat-mf-pill {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.plat-mf-pill i {
  font-size: 11px; color: var(--gold);
}
.plat-mf-desc {
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,.5);
  margin-bottom: auto;
  padding-bottom: 24px;
}
.plat-mf-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700;
  color: #0f1a14;
  background: linear-gradient(135deg, #e8c860, #b8860b);
  padding: 14px 28px;
  border-radius: 10px;
  transition: gap .25s, box-shadow .3s;
  width: fit-content;
  font-family: 'Bitter', serif;
}
.plat-mf:hover .plat-mf-cta {
  gap: 14px;
  box-shadow: 0 6px 20px rgba(184,134,11,.35);
}

/* ── PRICING STRIP ── */
.pricing {
  padding: 64px 28px;
  background: var(--white);
  border-top: 2px solid var(--ink-200);
}
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.pricing > .pricing-inner > p,
.pricing-inner > p { color: var(--ink-500); font-size: 15px; margin-bottom: 36px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.price-card {
  border: 1px solid var(--ink-200); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  background: var(--white);
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.pop {
  border-color: var(--sienna); border-width: 2px;
  position: relative;
  box-shadow: var(--shadow-warm);
}
.price-pop-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sienna); color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 16px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .8px;
}
.price-tier {
  font-size: 13px; font-weight: 700; color: var(--ink-500); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.price-amount {
  font-size: 40px; font-weight: 900; color: var(--ink);
  font-family: 'Bitter', serif;
}
.price-amount span { font-size: 15px; font-weight: 500; color: var(--ink-500); }
.price-desc { font-size: 13px; color: var(--ink-500); margin: 14px 0 18px; line-height: 1.6; }
.price-features { list-style: none; text-align: left; margin-bottom: 24px; }
.price-features li {
  font-size: 13px; color: var(--ink-700); padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
}
.price-features li i { color: var(--green-600); font-size: 12px; }
.price-btn {
  display: block; width: 100%; padding: 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit;
  text-align: center; border: none; text-decoration: none;
  transition: all .2s;
  letter-spacing: .3px;
}
.price-btn.outline {
  background: var(--white); color: var(--ink); border: 2px solid var(--ink-200);
}
.price-btn.outline:hover { border-color: var(--sienna); color: var(--sienna); }
.price-btn.fill {
  background: var(--sienna); color: #fff;
  box-shadow: 0 2px 8px rgba(194, 98, 45, .2);
}
.price-btn.fill:hover {
  background: var(--sienna-dark);
  box-shadow: 0 4px 16px rgba(194, 98, 45, .3);
}
.price-btn:hover { text-decoration: none; transform: translateY(-1px); }

/* ── NEWSLETTER ── */
.newsletter {
  padding: 64px 28px;
  border-top: 2px solid var(--ink-200);
  text-align: center;
  background: var(--green);
  color: #fff;
}
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter h2 {
  font-size: 24px; font-weight: 800; margin-bottom: 8px;
  color: #fff;
}
.newsletter p { font-size: 14px; color: rgba(255,255,255,.72); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; }
.nl-input {
  flex: 1; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm); font-size: 14px; font-family: inherit;
  outline: none;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.nl-input::placeholder { color: rgba(255,255,255,.65); }
.nl-input:focus { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.12); }
.nl-btn {
  background: var(--sienna); color: #fff; border: none;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: background .2s, transform .15s;
  letter-spacing: .3px;
}
.nl-btn:hover {
  background: var(--sienna-dark);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
.footer {
  background: var(--green);
  color: rgba(255,255,255,.65);
  padding: 48px 28px 32px; font-size: 13px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 32px;
}
.footer-brand {
  font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 10px;
  letter-spacing: -.01em;
}
.footer-brand span { color: #f0c050; }
.footer h4 {
  color: rgba(255,255,255,.65); font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer ul a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-partners a {
  color: rgba(255,255,255,.3); margin-left: 16px; font-size: 12px;
  transition: color .2s;
}
.footer-partners a:hover { color: rgba(255,255,255,.7); }
.footer-omg {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.04);
  text-align: center;
}
.footer-omg a {
  color: rgba(255,255,255,.3); font-size: 12px;
  letter-spacing: .3px; transition: color .2s;
}
.footer-omg a strong {
  font-weight: 700; color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-omg a:hover { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-omg a:hover strong { color: rgba(255,255,255,.8); }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--ink-200); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden; background: var(--white);
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  font-size: 15px; font-weight: 700; color: var(--ink);
  background: none; border: none; cursor: pointer;
  font-family: 'Bitter', serif; display: flex;
  justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-question:hover { color: var(--sienna); }
.faq-question::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free';
  font-weight: 900; font-size: 11px; color: var(--ink-400);
  transition: transform .25s, color .2s;
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
  color: var(--sienna);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--ink-700); line-height: 1.75;
}

/* ── PAGE LAYOUT UTILITIES ── */
.page-section {
  padding: 64px 28px;
}
.page-inner {
  max-width: 1200px; margin: 0 auto;
}
.page-header {
  margin-bottom: 36px;
}
.page-header h1 {
  font-size: 34px; font-weight: 900; margin-bottom: 10px;
}
.page-header p {
  font-size: 16px; color: var(--ink-500); line-height: 1.7;
}
.breadcrumb {
  font-size: 13px; color: var(--ink-400); margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--sienna); }

/* ── SERVICES PAGE ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border: 1px solid var(--ink-200);
  border-radius: var(--radius); padding: 36px 28px;
  text-decoration: none; color: var(--ink);
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.service-card:hover {
  border-color: var(--sienna); box-shadow: var(--shadow-warm);
  transform: translateY(-4px); text-decoration: none;
}
.service-card .cat-icon {
  width: 64px; height: 64px; font-size: 28px;
  margin: 0 0 18px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; font-family: 'Bitter', serif; }
.service-card .cat-count { font-size: 13px; color: var(--ink-500); margin-bottom: 12px; }
.service-card p { font-size: 13px; color: var(--ink-700); line-height: 1.7; }

/* ── BUSINESS PROFILE PAGE ── */
.biz-profile {
  padding: 48px 28px;
}
.biz-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr; gap: 44px;
}
.biz-main { min-width: 0; }
.biz-sidebar { min-width: 0; }
.biz-header {
  display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px;
}
.biz-avatar {
  width: 80px; height: 80px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.biz-avatar-img {
  width: 80px; height: 80px; border-radius: 18px; object-fit: cover; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.biz-info h1 { font-size: 30px; font-weight: 900; margin-bottom: 4px; }
.biz-meta { font-size: 14px; color: var(--ink-500); margin-bottom: 8px; }
.biz-rating { color: var(--gold); font-size: 15px; margin-bottom: 16px; }
.biz-rating span { color: var(--ink-500); font-weight: 500; margin-left: 6px; }
.biz-desc {
  font-size: 15px; color: var(--ink-700); line-height: 1.85;
  margin-bottom: 32px;
}
.biz-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.biz-tags .pro-tag { font-size: 12px; padding: 6px 16px; }
.biz-section { margin-bottom: 36px; }
.biz-section h2 { font-size: 22px; font-weight: 800; margin-bottom: 18px; }

/* Reviews */
.review-item {
  border: 1px solid var(--ink-200); border-radius: var(--radius);
  padding: 24px; margin-bottom: 18px; background: var(--white);
}
.review-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.review-author { font-weight: 700; font-size: 14px; font-family: 'Bitter', serif; }
.review-date { font-size: 12px; color: var(--ink-400); }
.review-stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--ink-700); line-height: 1.7; }

/* Sidebar contact card */
.biz-contact-card {
  background: var(--white); border: 1px solid var(--ink-200);
  border-radius: var(--radius); padding: 28px;
  position: sticky; top: 92px;
  box-shadow: var(--shadow);
}
.biz-contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 18px; font-family: 'Bitter', serif; }
.biz-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--ink-100);
  font-size: 14px; color: var(--ink-700);
}
.biz-contact-item:last-child { border-bottom: none; }
.biz-contact-item i {
  width: 20px; text-align: center; color: var(--sienna); font-size: 14px;
}
.biz-contact-item a { color: var(--blue); }

/* ── FORMS ── */
.form-card {
  background: var(--white); border: 1px solid var(--ink-200);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow);
}
.form-card h2, .form-card h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--ink-700); margin-bottom: 8px;
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--ink-200);
  border-radius: var(--radius-sm); font-size: 14px; font-family: inherit;
  color: var(--ink); outline: none; background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sienna);
  box-shadow: 0 0 0 3px var(--sienna-glow);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-radio-group {
  display: flex; gap: 24px; margin-top: 8px;
}
.form-radio-group label {
  display: flex; align-items: center; gap: 8px; font-weight: 600; cursor: pointer;
}
.form-radio-group input[type="radio"] { width: auto; accent-color: var(--sienna); }
.form-submit {
  background: var(--sienna); color: #fff; border: none;
  padding: 16px 36px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: inherit; width: 100%;
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .3px;
}
.form-submit:hover {
  background: var(--sienna-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(194, 98, 45, .25);
}

/* Alert messages */
.alert {
  padding: 18px 24px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 24px; line-height: 1.6;
}
.alert-success { background: var(--success-light); color: var(--success); border: 1px solid #b8dcc0; }
.alert-error { background: var(--error-light); color: var(--error); border: 1px solid #e8b0b0; }

/* ── SEARCH RESULTS ── */
.search-results-box {
  background: var(--white); border-radius: var(--radius);
  padding: 6px; display: flex; gap: 0;
  box-shadow: var(--shadow); margin-bottom: 36px;
  border: 2px solid var(--ink-200);
}
.no-results {
  text-align: center; padding: 72px 28px;
}
.no-results i { font-size: 52px; color: var(--ink-300); margin-bottom: 18px; display: block; }
.no-results h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.no-results p { font-size: 14px; color: var(--ink-500); margin-bottom: 24px; }

.search-suggestion {
  background: var(--gold-light); border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 24px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.search-suggestion p { font-size: 14px; color: var(--ink-700); margin: 0; }
.search-suggestion a { margin-left: auto; white-space: nowrap; }

/* ── CONTENT PAGE (about, contact) ── */
.content-page {
  padding: 56px 28px;
}
.content-inner {
  max-width: 800px; margin: 0 auto;
}
.content-inner h1 { font-size: 34px; font-weight: 900; margin-bottom: 18px; }
.content-inner h2 { font-size: 24px; font-weight: 800; margin: 32px 0 14px; }
.content-inner p { font-size: 15px; color: var(--ink-700); line-height: 1.85; margin-bottom: 18px; }
.content-inner ul { margin: 0 0 18px 20px; }
.content-inner ul li { font-size: 15px; color: var(--ink-700); line-height: 1.85; margin-bottom: 6px; }

/* ── CONTENT PAGE (override duplicate from original) ── */
.content-page { padding: 48px 0; }
.content-inner { max-width: 1000px; margin: 0 auto; padding: 0 28px; }
.content-page h1 { font-size: 30px; font-weight: 900; margin-bottom: 14px; }
.content-page h2 { font-size: 24px; font-weight: 800; margin-top: 36px; margin-bottom: 14px; }

/* Related categories */
.related-cats { margin-top: 48px; }
.related-cats h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; font-family: 'Bitter', serif; }
.related-cats-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.related-cat-link {
  background: var(--white); border: 2px solid var(--ink-200);
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; color: var(--ink-700);
  text-decoration: none; transition: all .2s;
}
.related-cat-link:hover {
  border-color: var(--sienna); color: var(--sienna); text-decoration: none;
  background: var(--sienna-light);
}

/* ── CITY+SERVICE PAGE ── */
.city-service-header { margin-bottom: 10px; }
.city-service-header h1 {
  font-size: 30px; font-weight: 900; margin-top: 16px; line-height: 1.2;
}
.city-service-sub {
  font-size: 15px; color: var(--ink-700); margin-top: 10px; line-height: 1.7;
}
.city-service-stats {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 18px;
  padding: 18px 0; border-top: 2px solid var(--ink-200);
}
.css-stat {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-700);
}
.css-stat i { color: var(--sienna); font-size: 16px; }

/* ── MOBILE NAV OVERLAY ── */
.nav-links.show {
  display: flex !important; flex-direction: column;
  position: absolute; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--ink-200);
  box-shadow: var(--shadow-lg); padding: 20px 28px; gap: 0;
  z-index: 99;
}
.nav-links.show li { padding: 12px 0; border-bottom: 1px solid var(--ink-100); }
.nav-links.show li:last-child { border-bottom: none; }
.nav-links.show .nav-cta {
  margin-top: 10px; text-align: center; display: block;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 13px; color: var(--ink-400); margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--sienna); text-decoration: underline; }

/* ── ALERTS (override duplicate) ── */
.alert {
  padding: 16px 24px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 24px; line-height: 1.6;
}
.alert-success {
  background: var(--success-light); color: var(--success);
  border: 1px solid #b8dcc0;
}
.alert-error {
  background: var(--error-light); color: var(--error);
  border: 1px solid #e8b0b0;
}

/* ── LIST YOUR BUSINESS CTA ── */
.list-cta {
  padding: 56px 0;
  background:
    linear-gradient(135deg, var(--green) 0%, var(--green-800) 50%, #1a3329 100%);
  position: relative;
}
.list-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.02) 40px,
    rgba(255,255,255,.02) 42px
  );
  pointer-events: none;
}
.list-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; }
.list-cta-content { text-align: center; }
.list-cta-content h2 { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.list-cta-content h2 i { color: var(--gold); margin-right: 8px; }
.list-cta-content p {
  font-size: 16px; color: rgba(255,255,255,.6);
  max-width: 700px; margin: 0 auto 28px; line-height: 1.7;
}
.list-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.list-cta-buttons .price-btn { padding: 14px 36px; font-size: 15px; font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero h1 { font-size: 36px; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .pros-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .plat-row { grid-template-columns: 1fr; }
  .plat-tina { flex-direction: column; }
  .plat-tina-photo { width: 100%; min-height: 220px; max-height: 260px; }
  .plat-mf-title { font-size: 24px; }
  .plat-mf-pills { gap: 6px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-inner { grid-template-columns: 1fr; }
  .biz-sidebar { order: -1; }
  .city-service-header h1 { font-size: 24px; }
  .city-service-stats { gap: 12px; }
}
@media (max-width: 600px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .search-select { display: none; }
  .hero h1 { font-size: 30px; }
  .hero { padding: 56px 20px 48px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .biz-header { flex-direction: column; }
  .form-radio-group { flex-direction: column; gap: 10px; }
  .city-service-header h1 { font-size: 20px; }
  .city-service-stats { flex-direction: column; gap: 8px; }
  .content-page h1 { font-size: 24px; }
  .page-section { padding: 48px 20px; }
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .list-cta-content h2 { font-size: 22px; }
  .list-cta-buttons { flex-direction: column; align-items: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-hero h1 { font-size: 28px; }
  .tip-slider { height: 200px; }
  .tip-slide-content h3 { font-size: 18px; }
}

/* ══════════════════════════════════════════
   BLOG SYSTEM
   ══════════════════════════════════════════ */

/* ── Blog Hero ── */
.blog-hero {
  background: var(--green);
  color: #fff;
  padding: 56px 28px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 42px
  );
  pointer-events: none;
}
.blog-hero-inner {
  max-width: 700px; margin: 0 auto; position: relative;
}
.blog-hero h1 {
  font-size: 36px; font-weight: 900; margin-bottom: 10px;
}
.blog-hero h1 em {
  font-style: normal; color: #f0c050;
}
.blog-hero p {
  font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7;
}

/* ── Blog Filters ── */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.blog-filter-tag {
  padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: 2px solid var(--ink-200);
  color: var(--ink-500);
  text-decoration: none;
  transition: all .2s;
}
.blog-filter-tag:hover {
  border-color: var(--sienna); color: var(--sienna);
  text-decoration: none;
}
.blog-filter-tag.active {
  background: var(--sienna); border-color: var(--sienna);
  color: #fff;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 2px solid var(--ink-200);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: row;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.blog-card:hover {
  border-color: var(--sienna);
  box-shadow: var(--shadow-warm);
  transform: translateY(-4px);
  text-decoration: none; color: var(--ink);
}
.blog-card.featured {
  grid-column: span 2;
}
.blog-card.featured .blog-card-icon {
  width: 140px; min-height: 180px;
  font-size: 40px;
}
.blog-card.featured h2 { font-size: 22px; }
.blog-card-icon {
  width: 100px; min-height: 120px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  position: relative;
}
.blog-card-body {
  flex: 1; padding: 24px;
  display: flex; flex-direction: column;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-400);
  margin-bottom: 10px; font-weight: 500;
}
.blog-card-cat {
  background: var(--green-100); color: var(--green-700);
  padding: 2px 10px; border-radius: 50px;
  font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .5px;
}
.blog-card-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--ink-300);
}
.blog-card-diff {
  font-weight: 700; text-transform: uppercase;
  font-size: 11px; letter-spacing: .5px;
}
.diff-beginner { color: var(--green-600); }
.diff-intermediate { color: var(--gold); }
.diff-advanced { color: var(--sienna); }
.blog-card h2 {
  font-size: 17px; font-weight: 800; line-height: 1.3;
  margin-bottom: 8px;
}
.blog-card p {
  font-size: 13px; color: var(--ink-500); line-height: 1.6;
  margin-bottom: auto;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--sienna);
  margin-top: 12px;
  transition: gap .2s;
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* ── Blog Pagination ── */
.blog-pagination {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 40px; padding-top: 28px;
  border-top: 2px solid var(--ink-200);
}
.blog-page-btn {
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700;
  border: 2px solid var(--ink-200);
  color: var(--ink-700);
  text-decoration: none;
  transition: all .2s;
}
.blog-page-btn:hover {
  border-color: var(--sienna); color: var(--sienna);
  text-decoration: none;
}
.blog-page-info {
  font-size: 14px; color: var(--ink-400); font-weight: 500;
}

/* ── Blog Post (single) ── */
.blog-post {
  padding: 48px 28px;
}
.blog-post-inner {
  max-width: 820px; margin: 0 auto;
}
.blog-post-header {
  margin-bottom: 40px;
}
.blog-post-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-400);
  margin-bottom: 16px; font-weight: 500;
}
.blog-post-header h1 {
  font-size: 36px; font-weight: 900; line-height: 1.15;
  margin-bottom: 14px;
}
.blog-post-excerpt {
  font-size: 18px; color: var(--ink-500); line-height: 1.7;
  border-left: 4px solid var(--sienna);
  padding-left: 20px;
}

/* Blog post content HTML styling */
.blog-post-content {
  font-size: 16px; color: var(--ink-700); line-height: 1.85;
}
.blog-post-content h2 {
  font-size: 26px; font-weight: 800; color: var(--ink);
  margin: 48px 0 18px;
  padding-top: 24px;
  border-top: 2px solid var(--ink-100);
}
.blog-post-content h3 {
  font-size: 20px; font-weight: 700; color: var(--ink);
  margin: 32px 0 12px;
}
.blog-post-content p {
  margin-bottom: 18px;
}
.blog-post-content ul, .blog-post-content ol {
  margin: 0 0 20px 24px;
}
.blog-post-content li {
  margin-bottom: 8px; line-height: 1.75;
}
.blog-post-content strong {
  color: var(--ink); font-weight: 700;
}
.blog-post-content a {
  color: var(--sienna); font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(194, 98, 45, .3);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.blog-post-content a:hover {
  text-decoration-color: var(--sienna);
}
.blog-post-content blockquote {
  border-left: 4px solid var(--sienna);
  padding: 16px 24px; margin: 24px 0;
  background: var(--sienna-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--ink-700);
}
.blog-post-content .tool-card {
  background: var(--white);
  border: 2px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 16px 0;
  display: flex; align-items: center; gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.blog-post-content .tool-card:hover {
  border-color: var(--sienna);
  box-shadow: var(--shadow);
}
.blog-post-content .tool-card .tool-tier {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 10px; border-radius: 50px;
}
.blog-post-content .tool-card .tier-good { background: var(--green-100); color: var(--green-700); }
.blog-post-content .tool-card .tier-better { background: #fef3c7; color: #92400e; }
.blog-post-content .tool-card .tier-best { background: var(--sienna-light); color: var(--sienna); }
.blog-post-content .tool-card .tool-info { flex: 1; }
.blog-post-content .tool-card .tool-name {
  font-weight: 700; font-size: 15px; color: var(--ink);
  margin-bottom: 2px;
}
.blog-post-content .tool-card .tool-price {
  font-size: 13px; color: var(--ink-500);
}
.blog-post-content .tool-card .tool-link {
  background: var(--sienna); color: #fff;
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.blog-post-content .tool-card .tool-link:hover {
  background: var(--sienna-dark);
}
.blog-post-content .pro-tip {
  background: var(--green);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.blog-post-content .pro-tip strong {
  color: #f0c050;
  display: block; margin-bottom: 6px;
  font-size: 14px; text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-post-content .pro-tip p {
  margin: 0; color: rgba(255,255,255,.8); font-size: 15px;
}
.blog-post-content .warning-box {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  color: #991b1b;
}
.blog-post-content .warning-box strong {
  color: #7f1d1d;
}
.blog-post-content table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0; font-size: 14px;
}
.blog-post-content table th {
  background: var(--green); color: #fff;
  padding: 12px 16px; text-align: left;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .5px;
}
.blog-post-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-200);
}
.blog-post-content table tr:nth-child(even) td {
  background: var(--ink-100);
}

/* Blog post CTA */
.blog-post-cta {
  background: var(--green);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.blog-post-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 42px
  );
  pointer-events: none;
}
.blog-post-cta h3 {
  font-size: 24px; font-weight: 900; margin-bottom: 8px;
  position: relative;
}
.blog-post-cta p {
  color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 20px;
  position: relative;
}

/* Related posts */
.blog-related {
  margin-top: 48px; padding-top: 36px;
  border-top: 2px solid var(--ink-200);
}
.blog-related h3 {
  font-size: 22px; font-weight: 800; margin-bottom: 24px;
}
.blog-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.blog-related-grid .blog-card {
  flex-direction: column;
}
.blog-related-grid .blog-card-icon {
  width: 100%; min-height: 80px;
}

/* ══════════════════════════════════════════
   TIP SLIDER (AdSense replacement)
   ══════════════════════════════════════════ */
.tip-slider {
  max-width: 1200px; margin: 36px auto;
  padding: 0 28px;
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius);
}
.tip-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  border-radius: var(--radius);
  overflow: hidden;
}
.tip-slide.active { opacity: 1; }
.tip-slide-bg {
  position: absolute; inset: 0;
  border-radius: var(--radius);
}
.tip-slide-content {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  color: #fff;
}
.tip-slide-eyebrow {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px; opacity: .7;
}
.tip-slide-content h3 {
  font-family: 'Bitter', serif;
  font-size: 24px; font-weight: 900;
  line-height: 1.2; margin-bottom: 8px;
  max-width: 550px;
}
.tip-slide-content p {
  font-size: 14px; line-height: 1.6;
  max-width: 500px; opacity: .75;
  margin-bottom: 16px;
}
.tip-slide-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; text-decoration: none;
  width: fit-content;
  transition: background .2s;
}
.tip-slide-cta:hover { background: rgba(255,255,255,.25); text-decoration: none; color: #fff; }
.tip-slider-dots {
  position: absolute; bottom: 16px; right: 40px;
  display: flex; gap: 8px; z-index: 2;
}
.tip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
}
.tip-dot.active {
  background: #fff; width: 24px; border-radius: 4px;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .tip-slider { height: 220px; }
  .tip-slide-content h3 { font-size: 20px; }
}
@media (max-width: 600px) {
  .blog-card { flex-direction: column; }
  .blog-card-icon { width: 100%; min-height: 80px; }
  .blog-post-header h1 { font-size: 28px; }
  .tip-slider { height: 260px; }
  .tip-slide-content { padding: 24px; }
  .tip-slide-content h3 { font-size: 18px; }
}

/* Accessibility: Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ══════════════════════════════════════════
   BLOG LOCAL SERVICES — internal linking block
   ══════════════════════════════════════════ */
.blog-local-services {
  margin: 40px 0;
  padding: 28px 32px;
  background: var(--ink-100);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}
.blog-local-services h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 6px;
}
.blog-local-services p {
  font-size: 14px; color: var(--ink-500); margin-bottom: 16px;
}
.blog-local-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.blog-local-links li a {
  display: inline-block;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.blog-local-links li a:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
@media (max-width: 600px) {
  .blog-local-links li a { font-size: 12px; padding: 6px 11px; }
}
