/* Digital With Sandip — site stylesheet
   Palette derived from the brand mark: deep green #15231c + terracotta #d86f45
   Type: Sora (headings) / Manrope (body) */

:root {
  --ink: #15231c;
  --ink-2: #1d3129;
  --ink-3: #2c4437;
  --accent: #d86f45;
  --accent-dark: #bd5a33;
  --accent-soft: #f7e6dd;
  --cream: #f5f1e7;
  --paper: #fffdf8;
  --mint: #d9ece5;
  --line: #e3dccc;
  --line-dark: rgba(255, 255, 255, .12);
  --muted: #5f6f66;
  --muted-dark: #a9c3b8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -24px rgba(21, 35, 28, .35);
  --shadow-lg: 0 30px 70px -30px rgba(21, 35, 28, .45);
  --maxw: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section { padding: 84px 0; }
.section:last-of-type { padding-bottom: 96px; }

/* ── Scroll progress ─────────────────────────────── */
#progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #eaa07c);
  z-index: 999;
  transition: width .1s linear;
}

/* ── Nav ─────────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245, 241, 231, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--accent);
  font-size: .85rem;
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-3);
  position: relative;
  padding: 4px 0;
  transition: color .18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .22s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: .72rem 1.25rem;
  border-radius: 11px;
  border: 1px solid transparent;
  font-family: "Manrope", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 26px -14px rgba(21, 35, 28, .8);
}
.btn-primary:hover { background: var(--ink-3); }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(216, 111, 69, .75);
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ── Shared type ─────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .34rem .8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid #eccdbd;
  color: var(--accent-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.title {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 800;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 18px;
  max-width: 62ch;
}

.section-title {
  font-size: clamp(1.6rem, 2.9vw, 2.4rem);
  font-weight: 800;
}

.section-copy {
  color: var(--muted);
  margin-top: 14px;
  max-width: 64ch;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: 54px 0 72px;
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(216, 111, 69, .13), transparent 60%),
    radial-gradient(700px 380px at 2% 8%, rgba(21, 35, 28, .07), transparent 62%);
}

.ribbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--mint);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.ribbon-badge i { color: var(--accent); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: start;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-chip {
  padding: .4rem .85rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink-3);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-chip i { color: var(--accent); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Hero panel */
.hero-panel {
  background: var(--ink);
  color: var(--mint);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.panel-top small {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-top h2 {
  margin-top: 8px;
  font-size: 1.18rem;
  color: #fff;
}

.score {
  text-align: center;
  flex: none;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-dark);
}
.score strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}
.score span { font-size: .68rem; color: var(--muted-dark); }

.panel-list { display: grid; gap: 12px; margin: 20px 0; }

.panel-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(216, 111, 69, .18);
  color: var(--accent);
  flex: none;
}

.panel-item h3 { font-size: .92rem; color: #fff; }
.panel-item p { margin: 4px 0 0; font-size: .78rem; color: var(--muted-dark); line-height: 1.45; }
.panel-item > strong {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  text-align: right;
}

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mini-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
}
.mini-card span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mini-card strong {
  display: block;
  margin-top: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}

.panel-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: .8rem;
  color: var(--muted-dark);
  line-height: 1.55;
}

/* ── Marquee ─────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  padding: 13px 0;
}

.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: .84rem;
  font-weight: 600;
  color: var(--mint);
}
.marquee-item i { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Cards (shared surface) ──────────────────────── */
.audit-card, .service-card, .proof-card, .price-card, .why-card,
.quote-card, .location-card, .contact-card, .faq-card, .urgency-card,
.founder-card, .review-card, .location-profile, .service-detail, .stat-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Problem ─────────────────────────────────────── */
.problem-grid, .grid-2, .locations-wrap, .authority-grid,
.closing-grid, .faq-grid, .contact-grid, .testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.problem-list { display: grid; gap: 14px; margin-top: 26px; }

.problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
}
.problem-item i { color: #c2543c; margin-top: 4px; }
.problem-item h3 { font-size: .98rem; }
.problem-item p { margin: 4px 0 0; font-size: .88rem; color: var(--muted); }

.audit-card { padding: 28px; }
.audit-card h3 { font-size: 1.22rem; }
.audit-card > p { margin-top: 12px; color: var(--muted); font-size: .92rem; }

.audit-points, .service-list, .pricing-list, .cred-list,
.closing-points, .points, .audit-card .audit-points {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.audit-points > div, .service-list > div, .pricing-list > div,
.cred-list > div, .closing-points > div, .points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  font-size: .88rem;
  line-height: 1.55;
}

.audit-points i, .service-list i, .pricing-list i,
.cred-list i, .closing-points i, .points i {
  margin-top: 5px;
  font-size: .78rem;
  color: var(--accent);
}

.audit-note {
  margin-top: 20px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px dashed #e0b49c;
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ── Services ────────────────────────────────────── */
.offer-grid, .proof-grid, .why-grid, .pricing-grid,
.review-grid, .quote-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.quote-list { grid-template-columns: 1fr; }

.service-card { padding: 24px; transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d6cdb8; }

.service-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--accent);
  font-size: 1.05rem;
  flex: none;
}

.service-tag {
  padding: .28rem .7rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-card h3 { font-size: 1.1rem; }
.service-card > p { margin-top: 10px; font-size: .88rem; color: var(--muted); }

.service-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--mint);
}
.service-card.featured h3 { color: #fff; }
.service-card.featured > p { color: var(--muted-dark); }
.service-card.featured .service-icon { background: var(--accent); color: #fff; }
.service-card.featured .service-tag {
  background: rgba(255, 255, 255, .08);
  border-color: var(--line-dark);
  color: var(--accent);
}
.service-card.featured .service-list i { color: var(--accent); }

/* ── Proof / results ─────────────────────────────── */
.proof-card { padding: 24px; transition: transform .2s ease, box-shadow .25s ease; }
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proof-card small {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
}
.proof-card h3 { margin-top: 8px; font-size: 1.12rem; }
.proof-card > p { margin-top: 10px; font-size: .87rem; color: var(--muted); }

.delta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.delta strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
}
.delta span { font-size: .76rem; font-weight: 600; color: var(--muted); }

/* Filters (results page) */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }

.filter-chip {
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all .18s ease;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.stat-block { padding: 20px; text-align: center; }
.stat-block strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
}
.stat-block span { display: block; margin-top: 5px; font-size: .78rem; color: var(--muted); }

/* ── Locations ───────────────────────────────────── */
/* auto-fit so it reads well both beside the homepage copy (2 up) and
   full-width on locations.html (4 up) */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.location-card {
  padding: 18px;
  text-align: center;
  transition: transform .2s ease, box-shadow .25s ease;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.location-card i { font-size: 1.35rem; color: var(--accent); }
.location-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: .98rem;
  font-weight: 700;
}
.location-card span { display: block; margin-top: 3px; font-size: .74rem; color: var(--muted); }

.location-profile { padding: 26px; }
.location-profile h3 { font-size: 1.15rem; }
.location-profile > p { margin-top: 10px; font-size: .89rem; color: var(--muted); }

/* ── Pricing ─────────────────────────────────────── */
.price-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card h3 { font-size: 1.15rem; }
.price-card > p { margin-top: 9px; font-size: .86rem; color: var(--muted); }
.price-card .btn { margin-top: auto; width: 100%; }

.price-card.popular {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--mint);
  box-shadow: var(--shadow-lg);
}
.price-card.popular h3 { color: #fff; }
.price-card.popular > p { color: var(--muted-dark); }
.price-card.popular .price-tag { color: #fff; }
.price-card.popular .price-tag span { color: var(--muted-dark); }
.price-card.popular .pricing-list { border-color: var(--line-dark); }

.popular-flag {
  position: absolute;
  top: -12px;
  right: 22px;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-tag {
  margin: 18px 0 4px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
}
.price-tag span {
  font-family: "Manrope", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.pricing-list {
  padding: 18px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guarantee-band {
  margin-top: 34px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--mint);
  text-align: center;
}
.guarantee-band h3 { color: #fff; font-size: 1.2rem; }
.guarantee-band p { margin-top: 10px; color: var(--muted-dark); font-size: .9rem; }

/* ── Founder / authority ─────────────────────────── */
.founder-card { padding: 26px; }

.photo-frame {
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px dashed #cdc3ae;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.photo-placeholder { padding: 40px 24px; text-align: center; }
.photo-placeholder i { font-size: 2.4rem; color: var(--accent); }
.photo-placeholder h3 { margin-top: 14px; font-size: 1rem; }
.photo-placeholder p { margin-top: 8px; font-size: .82rem; color: var(--muted); }

.placement-note {
  margin-top: 14px;
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.5;
}

.linkedin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: .72rem 1rem;
  border-radius: 11px;
  background: #0a66c2;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  transition: filter .18s ease, transform .16s ease;
}
.linkedin-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }

.authority-proof {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--mint);
  box-shadow: var(--shadow-lg);
}
.authority-proof h3 { color: #fff; font-size: 1.25rem; }
.authority-proof > p { margin-top: 12px; font-size: .9rem; color: var(--muted-dark); }
.authority-proof .cred-list i { color: var(--accent); }

.number-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.number-box {
  padding: 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
}
.number-box strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
.number-box span {
  display: block;
  margin-top: 5px;
  font-size: .74rem;
  line-height: 1.5;
  color: var(--muted-dark);
}

/* ── Timeline ────────────────────────────────────── */
.timeline {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding-left: 6px;
  border-left: 2px dashed var(--line);
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  padding-left: 18px;
  position: relative;
}

.timeline-index {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: .85rem;
  font-weight: 800;
  flex: none;
}

.timeline-step h3 { font-size: 1rem; margin-top: 4px; }
.timeline-step p { margin-top: 5px; font-size: .87rem; color: var(--muted); }

.faq-side { padding: 4px 0; }
.faq-side > h3 { font-size: 1.2rem; }

/* ── Compare table ───────────────────────────────── */
.compare-wrap { border-radius: var(--radius); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .88rem;
}

.compare-table th {
  padding: 14px 16px;
  background: var(--ink);
  color: var(--mint);
  font-family: "Sora", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: .02em;
}
.compare-table th:last-child { color: var(--accent); }

.compare-table td {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
.compare-table td:first-child { font-weight: 700; }

.compare-table tr.compare-highlight { background: #fbf8f1; }

.compare-table .no { color: var(--muted); }
.compare-table .no::before {
  content: "\2715";
  margin-right: 8px;
  font-weight: 700;
  color: #c2543c;
}
.compare-table .yes { color: var(--ink); font-weight: 600; }
.compare-table .yes::before {
  content: "\2713";
  margin-right: 8px;
  font-weight: 800;
  color: #2f7d5d;
}

/* ── Why cards ───────────────────────────────────── */
.why-card { padding: 24px; }
.why-card > i {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.15rem;
}
.why-card h3 { margin-top: 16px; font-size: 1.05rem; }
.why-card p { margin-top: 9px; font-size: .87rem; color: var(--muted); }

/* ── Testimonials ────────────────────────────────── */
.testimonial-main {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--mint);
  box-shadow: var(--shadow-lg);
}

.quote {
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -.01em;
}

.testimonial-main > p { margin-top: 14px; font-size: .88rem; color: var(--muted-dark); }

.person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}
.person strong { display: block; font-size: .92rem; color: #fff; }
.person span { font-size: .76rem; color: var(--muted-dark); }

.rating { display: inline-flex; gap: 3px; color: var(--accent); font-size: .82rem; }

.quote-card { padding: 20px; }
.quote-card strong { font-family: "Sora", sans-serif; font-size: .95rem; }
.quote-card p { margin-top: 8px; font-size: .86rem; color: var(--muted); font-style: italic; }

.review-card { padding: 24px; }
.review-card .rating { color: var(--accent); margin-bottom: 12px; }
.review-card p { font-size: .89rem; color: var(--muted); font-style: italic; }
.review-card .person { border-top-color: var(--line); margin-top: 18px; padding-top: 14px; }
.review-card .person strong { color: var(--ink); }
.review-card .person span { color: var(--muted); }

/* ── Closing / urgency ───────────────────────────── */
.closing-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--mint);
  box-shadow: var(--shadow-lg);
}
.closing-card h3 { color: #fff; font-size: 1.3rem; }
.closing-card > p { margin-top: 12px; font-size: .9rem; color: var(--muted-dark); }
.closing-card .closing-points i { color: var(--accent); }

.urgency-card { padding: 28px; }
.urgency-card h3 { font-size: 1.15rem; }
.urgency-card > p { margin-top: 10px; font-size: .88rem; color: var(--muted); }

.availability {
  margin: 20px 0;
  padding: 15px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid #eccdbd;
}
.availability strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: .92rem;
  color: var(--accent-dark);
}
.availability span { display: block; margin-top: 5px; font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-stack { display: grid; gap: 12px; }

.faq-card { overflow: hidden; }

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 17px 20px;
  border: 0;
  background: transparent;
  font-family: "Sora", sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-btn i {
  flex: none;
  font-size: .8rem;
  color: var(--accent);
  transition: transform .25s ease;
}
.faq-card.open .faq-btn i { transform: rotate(45deg); }

/* max-height (not the 0fr grid trick): the <p> is the only child, and its
   padding cannot collapse to zero inside a 0fr row — that left an 18px sliver
   showing under every closed question. */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-card.open .faq-answer { max-height: 460px; }
.faq-answer p {
  padding: 0 20px 18px;
  font-size: .88rem;
  color: var(--muted);
}

/* ── Contact form ────────────────────────────────── */
.contact-card { padding: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .74rem .85rem;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: "Manrope", sans-serif;
  font-size: .9rem;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field textarea { min-height: 118px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(216, 111, 69, .16);
}

.field input::placeholder, .field textarea::placeholder { color: #97a49c; }

.fineprint {
  margin-top: 14px;
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #e7f3ec;
  border: 1px solid #bcdcc9;
  font-size: .84rem;
  font-weight: 600;
  color: #1f6b47;
}

/* ── Sub-page hero ───────────────────────────────── */
.page-hero {
  padding: 44px 0 40px;
  background:
    radial-gradient(760px 340px at 85% -10%, rgba(216, 111, 69, .12), transparent 62%);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.breadcrumbs a { color: var(--muted); transition: color .18s ease; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs i { font-size: .6rem; opacity: .6; }
.breadcrumbs span { color: var(--ink); }

.stack { display: grid; gap: 22px; }

/* Markup is: <article><div class="service-icon"></div><div>…content…</div></article>
   i.e. an icon column beside a content column. */
.service-detail {
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.service-detail h2, .service-detail h3 { font-size: 1.2rem; }
.service-detail p { margin-top: 10px; font-size: .89rem; color: var(--muted); }
.service-detail .service-list { margin-top: 16px; }

/* ── Footer ──────────────────────────────────────── */
footer {
  padding: 0 0 30px;
  background: var(--cream);
}

.footer-shell {
  padding: 40px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--mint);
}

.footer-shell .brand { color: #fff; }
.footer-shell .brand-mark { background: rgba(255, 255, 255, .09); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-grid > div > p {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--muted-dark);
  line-height: 1.6;
  max-width: 44ch;
}

.footer-grid h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .86rem;
  color: var(--muted-dark);
  transition: color .18s ease, transform .18s ease;
}
.footer-links a:hover { color: #fff; transform: translateX(3px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: .78rem;
  color: var(--muted-dark);
}

/* ── Motion ──────────────────────────────────────── */
/* .reveal is visible by default; only hidden once JS confirms it loaded,
   so a missing/blocked main.js can never blank the page. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }

.tilt-card { transition: transform .25s ease, box-shadow .3s ease; transform-style: preserve-3d; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty-slow { animation: floaty 8.5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .floaty, .floaty-slow { animation: none; }
  .btn:hover, .service-card:hover, .proof-card:hover,
  .location-card:hover, .price-card:hover { transform: none; }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid, .problem-grid, .grid-2, .locations-wrap, .authority-grid,
  .closing-grid, .faq-grid, .contact-grid, .testimonial-wrap {
    grid-template-columns: 1fr;
  }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 62px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 22px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 13px 0; }
  .nav-links a::after { display: none; }

  .menu-btn { display: inline-flex; }
  .nav-wrap { position: relative; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { padding: 34px 0 52px; }
  .hero-stats, .number-grid, .mini-grid, .form-grid,
  .location-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel, .audit-card, .contact-card, .testimonial-main,
  .closing-card, .authority-proof, .founder-card, .urgency-card { padding: 20px; }
  .footer-shell { padding: 26px 20px; }
  .panel-item { grid-template-columns: auto 1fr; }
  .panel-item > strong { grid-column: 2; text-align: left; }
  .service-detail { grid-template-columns: 1fr; gap: 14px; }
  .person { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .breadcrumbs { flex-wrap: wrap; }
}

/* dws-logo */
.brand-logo{height:52px;width:auto;max-width:200px;object-fit:contain;display:block}
.footer-shell .brand{align-items:flex-start}
.footer-shell .brand-logo{height:52px;width:auto;max-width:200px;object-fit:contain;background:#fff;padding:8px 12px;border-radius:11px;box-shadow:0 3px 12px rgba(0,0,0,.16)}
@media (max-width:600px){.brand-logo{height:46px;width:auto;max-width:170px}.footer-shell .brand-logo{height:46px;width:auto;max-width:170px;padding:7px 10px}}

/* founder authority — hero card (added 2026-08-26) */
.hero-right-col{display:flex;flex-direction:column;gap:16px}
.founder-mini{background:#fff;border:1px solid var(--line,#e6e0d3);border-radius:20px;padding:18px 20px;box-shadow:var(--shadow-lg,0 18px 40px rgba(20,30,15,.10))}
.fm-label{display:inline-flex;align-items:center;gap:7px;font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#6b7a3f;background:rgba(124,132,80,.12);border:1px solid rgba(124,132,80,.28);padding:5px 11px;border-radius:20px}
.fm-row{display:flex;align-items:center;gap:15px;margin-top:14px}
.fm-photo{width:76px;height:76px;border-radius:50%;flex:none;background-color:var(--cream,#f3efe6);background-size:cover;background-position:center top;background-repeat:no-repeat;border:3px solid #7c8450;box-shadow:0 4px 14px rgba(20,30,15,.15)}
.fm-meta{display:flex;flex-direction:column;gap:2px;min-width:0}
.fm-meta strong{font-size:1.15rem;color:var(--ink,#20301b);font-weight:800;line-height:1.1}
.fm-meta>span{font-size:.85rem;color:var(--muted,#7b8473)}
.fm-badges{display:flex;gap:7px;margin-top:6px;flex-wrap:wrap}
.fm-badge{font-size:.72rem;font-weight:600;color:var(--ink,#20301b);background:var(--cream,#f3efe6);border:1px solid var(--line,#e6e0d3);padding:3px 9px;border-radius:20px;display:inline-flex;align-items:center;gap:5px}
.fm-actions{display:flex;flex-direction:column;gap:9px;margin-top:16px}
.fm-linkedin,.fm-portfolio{display:flex;align-items:center;justify-content:center;gap:9px;padding:.66rem 1rem;border-radius:11px;font-size:.85rem;font-weight:700;transition:filter .18s ease,transform .16s ease}
.fm-linkedin{background:#0a66c2;color:#fff}
.fm-portfolio{background:var(--ink,#20301b);color:#fff}
.fm-linkedin:hover,.fm-portfolio:hover{filter:brightness(1.07);transform:translateY(-1px)}
@media(max-width:900px){.fm-photo{width:64px;height:64px}}

/* founder authority — sticky in hero (desktop) */
@media(min-width:901px){
  .founder-mini{position:sticky;top:88px;align-self:start;z-index:5}
}

/* founder authority — bigger centered photo (2026-08-26 v10) */
.founder-mini{text-align:center}
.founder-mini .fm-label{margin:0 auto}
.fm-photo-wrap{width:190px;height:190px;border-radius:50%;margin:18px auto 4px;overflow:hidden;border:4px solid #7c8450;background:var(--cream,#f3efe6);box-shadow:0 8px 22px rgba(20,30,15,.20);position:relative}
.fm-photo-img{width:100%;height:100%;object-fit:cover;object-position:center 20%;display:block}
.fm-photo-wrap.no-photo::after{content:"\f007";font-family:"Font Awesome 6 Free";font-weight:900;position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:4rem;color:#c7bfa8}
.fm-meta{align-items:center;margin-top:12px}
.fm-meta strong{font-size:1.45rem}
.fm-meta>span{font-size:.95rem}
.fm-badges{justify-content:center}
@media(max-width:900px){.fm-photo-wrap{width:150px;height:150px}}

/* ===== DWS-CONTACT-POPUP-V1 : Floating WhatsApp + Lead Popup ===== */
.floating-cta{position:fixed;right:20px;bottom:22px;z-index:940;display:inline-flex;align-items:center;gap:10px;background:#25D366;color:#fff;font-weight:700;font-size:.98rem;text-decoration:none;padding:13px 20px 13px 16px;border-radius:50px;box-shadow:0 10px 26px rgba(37,211,102,.45),0 4px 10px rgba(0,0,0,.18);transition:transform .2s ease,box-shadow .2s ease;animation:waPulse 2.6s ease-in-out infinite}
.floating-cta i{font-size:1.4rem;line-height:1}
.floating-cta:hover{transform:translateY(-2px) scale(1.03);box-shadow:0 14px 32px rgba(37,211,102,.55),0 6px 14px rgba(0,0,0,.22)}
@keyframes waPulse{0%,100%{box-shadow:0 10px 26px rgba(37,211,102,.45),0 4px 10px rgba(0,0,0,.18)}50%{box-shadow:0 10px 26px rgba(37,211,102,.45),0 0 0 13px rgba(37,211,102,0)}}
@media(max-width:600px){.floating-cta{right:16px;bottom:16px;padding:15px;border-radius:50%}.floating-cta span{display:none}.floating-cta i{font-size:1.55rem}}

.dws-pop-overlay{position:fixed;inset:0;z-index:9998;display:flex;align-items:center;justify-content:center;padding:20px;overflow-y:auto;background:rgba(18,28,20,.58);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}
.dws-pop-overlay.show{opacity:1;visibility:visible}
.dws-pop{position:relative;width:100%;max-width:440px;max-height:calc(100vh - 40px);background:#fff;border-radius:22px;overflow:hidden auto;box-shadow:0 30px 70px rgba(0,0,0,.35);transform:translateY(26px) scale(.95);transition:transform .38s cubic-bezier(.2,.85,.25,1);text-align:center}
.dws-pop-overlay.show .dws-pop{transform:translateY(0) scale(1)}
.dws-pop-head{background:linear-gradient(135deg,#15231c 0%,#2c4736 100%);color:#fff;padding:32px 26px 26px}
.dws-pop-badge{display:inline-flex;align-items:center;gap:7px;font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#ffd9c7;background:rgba(216,111,69,.22);border:1px solid rgba(216,111,69,.5);padding:6px 13px;border-radius:50px;margin-bottom:15px}
.dws-pop-head h3{margin:0;font-size:1.62rem;line-height:1.22;font-weight:800;letter-spacing:-.01em}
.dws-pop-head h3 span{color:#f0955f}
.dws-pop-body{padding:22px 26px 28px}
.dws-pop-body p{margin:0 0 18px;color:#4a5750;font-size:1rem;line-height:1.55}
.dws-pop-actions{display:flex;flex-direction:column;gap:11px}
.dws-pop-actions a{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-weight:700;font-size:1.02rem;text-decoration:none;padding:14px 18px;border-radius:12px;transition:transform .18s ease,box-shadow .18s ease}
.dws-pop-wa{background:#25D366;color:#fff;box-shadow:0 8px 20px rgba(37,211,102,.4)}
.dws-pop-wa:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(37,211,102,.5)}
.dws-pop-audit{background:#d86f45;color:#fff;box-shadow:0 8px 20px rgba(216,111,69,.35)}
.dws-pop-audit:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(216,111,69,.45)}
.dws-pop-trust{margin-top:16px;font-size:.82rem;color:#8a938c;display:flex;align-items:center;justify-content:center;gap:6px}
.dws-pop-close{position:absolute;top:12px;right:14px;width:34px;height:34px;border:none;border-radius:50%;background:rgba(255,255,255,.18);color:#fff;font-size:1.5rem;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s ease;z-index:3}
.dws-pop-close:hover{background:rgba(255,255,255,.34)}
@media(max-width:600px){.dws-pop-head h3{font-size:1.4rem}.dws-pop-head{padding:28px 20px 22px}.dws-pop-body{padding:20px 20px 24px}}

/* ===== DWS-BLOG-V1 : Blog listing + article ===== */
.post-main{max-width:780px;margin:0 auto}
.post-head .label{display:inline-block}
.post-metaline{display:flex;flex-wrap:wrap;gap:16px;align-items:center;margin-top:18px;color:#6b7269;font-size:.92rem}
.post-metaline span{display:inline-flex;align-items:center;gap:7px}
.post-metaline i{color:#d86f45}
.post-toc{background:#fff;border:1px solid var(--line,#e3dccc);border-radius:16px;padding:22px 24px;margin:8px 0 30px;box-shadow:0 6px 20px rgba(20,30,15,.05)}
.post-toc h4{margin:0 0 12px;font-size:1.02rem;letter-spacing:.02em}
.post-toc ol{margin:0;padding-left:20px;columns:2;column-gap:28px}
.post-toc li{margin:0 0 8px;break-inside:avoid}
.post-toc a{color:#2c4736;text-decoration:none;font-weight:600;font-size:.95rem}
.post-toc a:hover{color:#d86f45;text-decoration:underline}
@media(max-width:600px){.post-toc ol{columns:1}}

.post-body{color:#28322b;font-size:1.06rem;line-height:1.75}
.post-body h2{font-family:'Sora',sans-serif;font-size:1.62rem;line-height:1.25;margin:38px 0 14px;color:#15231c;scroll-margin-top:90px}
.post-body h3{font-size:1.2rem;margin:26px 0 10px;color:#1c2c22}
.post-body p{margin:0 0 17px}
.post-body ul,.post-body ol{margin:0 0 18px;padding-left:22px}
.post-body li{margin:0 0 9px}
.post-body a{color:#bd5a33;font-weight:600;text-decoration:none;border-bottom:1px solid rgba(189,90,51,.3)}
.post-body a:hover{border-bottom-color:#bd5a33}
.post-body strong{color:#15231c}
.post-body .lead-para{font-size:1.16rem;color:#3a463d;line-height:1.7}
.post-body blockquote{margin:24px 0;padding:16px 22px;background:#f7e6dd;border-left:4px solid #d86f45;border-radius:0 12px 12px 0;color:#5a3a2a;font-size:1.04rem}

.blog-promo{margin:34px 0;border-radius:20px;overflow:hidden;background:linear-gradient(135deg,#15231c 0%,#2c4736 100%);color:#fff;padding:30px 28px;text-align:center;box-shadow:0 18px 44px rgba(20,30,15,.22)}
.blog-promo .bp-badge{display:inline-flex;align-items:center;gap:7px;font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#ffd9c7;background:rgba(216,111,69,.22);border:1px solid rgba(216,111,69,.5);padding:6px 13px;border-radius:50px;margin-bottom:14px}
.blog-promo h3{margin:0 0 8px;font-size:1.5rem;line-height:1.25;font-weight:800}
.blog-promo h3 span{color:#f0955f}
.blog-promo p{margin:0 auto 20px;max-width:520px;color:#d7ddd4;font-size:1rem;line-height:1.55}
.blog-promo .bp-actions{display:flex;flex-wrap:wrap;gap:11px;justify-content:center}
.blog-promo .bp-actions a{display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:.98rem;text-decoration:none;padding:12px 20px;border-radius:11px;transition:transform .18s ease,box-shadow .18s ease}
.blog-promo .bp-wa{background:#25D366;color:#fff}
.blog-promo .bp-call{background:#d86f45;color:#fff}
.blog-promo .bp-ghost{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.28)}
.blog-promo .bp-actions a:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(0,0,0,.25)}

.post-reviews{margin:36px 0}
.post-reviews h2{font-family:'Sora',sans-serif;font-size:1.5rem;margin:0 0 18px;color:#15231c}
.post-review-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
@media(max-width:600px){.post-review-grid{grid-template-columns:1fr}}

/* Blog listing cards */
.blog-list-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:24px;margin-top:10px}
.blog-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line,#e3dccc);border-radius:18px;overflow:hidden;box-shadow:0 8px 24px rgba(20,30,15,.06);transition:transform .2s ease,box-shadow .2s ease}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(20,30,15,.12)}
.blog-card-top{background:linear-gradient(135deg,#15231c,#2c4736);color:#fff;padding:22px 22px 20px}
.blog-card-cat{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#f0955f;margin-bottom:10px}
.blog-card-top h3{margin:0;font-size:1.22rem;line-height:1.3;font-weight:800}
.blog-card-body{padding:20px 22px 22px;display:flex;flex-direction:column;flex:1}
.blog-card-body p{margin:0 0 16px;color:#4a5750;font-size:.97rem;line-height:1.6;flex:1}
.blog-card-meta{display:flex;align-items:center;justify-content:space-between;margin-top:auto}
.blog-card-meta .read{color:#bd5a33;font-weight:700;text-decoration:none;font-size:.95rem}
.blog-card-meta .date{color:#8a938c;font-size:.85rem}
