/* ───────────── design tokens ───────────── */
:root {
  --bg: #f4f5f4;
  --bg-2: #e8eae8;
  --surface: #ffffff;
  --ink: #1a201d;
  --ink-2: #3a423e;
  --ink-3: #6a716d;
  --forest: #2f5d3a;
  --forest-dark: #1f4127;
  --moss: #6b8055;
  --sage: #c2cdbc;
  --steel: #4a5350;
  --line: rgba(26,32,29,0.10);
  --line-strong: rgba(26,32,29,0.18);
  --shadow-soft: 0 1px 2px rgba(26,32,29,.05), 0 8px 24px rgba(26,32,29,.07);
  --shadow-deep: 0 2px 4px rgba(26,32,29,.07), 0 24px 48px rgba(26,32,29,.14);
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.11 0 0 0 0 0.1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .4; pointer-events: none; z-index: 1;
}
.wrap { position: relative; z-index: 2; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ─────── typography ─────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(44px, 6.2vw, 84px); font-weight: 500; line-height: .98; }
h2 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 500; line-height: 1.02; }
h3 { font-size: 22px; font-weight: 600; }
.ital { font-style: italic; font-weight: 400; color: var(--forest); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--forest-dark);
  margin-bottom: 28px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--forest-dark); }

/* ─────── nav ─────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,245,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: 1240px; margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  letter-spacing: -0.02em; line-height: 1;
  font-variation-settings: "opsz" 144;
}
.logo-text em { color: var(--forest); font-style: italic; font-weight: 400; }
.nav-cta { display: flex; align-items: center; gap: 18px; font-size: 15px; font-weight: 500; }
.nav-phone { color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .2s; }
.nav-phone:hover { color: var(--forest); }
.nav-phone svg { width: 16px; height: 16px; }
.nav-btn {
  background: var(--ink); color: var(--surface);
  padding: 11px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: background .2s, transform .2s;
}
.nav-btn:hover { background: var(--forest); transform: translateY(-1px); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-size: 15px; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 260px; padding: 10px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; box-shadow: var(--shadow-deep); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, transform .18s, visibility .18s; z-index: 120;
}
.nav-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 12px; border-radius: 5px; font-size: 14px; line-height: 1.25; white-space: normal;
}
.nav-dropdown a:hover { background: var(--bg-2); }
.service-card-link, .area-chip { text-decoration: none; color: inherit; }
.service-card .service-card-cta { display: inline-flex; margin-top: 18px; color: var(--forest); font-weight: 700; font-size: 13px; }
.area-chip .area-arrow { display: block; font-size: 12px; color: var(--sage); margin-top: 5px; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid a.footer-more { font-weight: 700; color: var(--sage); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ─────── hero ─────── */
.hero { position: relative; padding: 70px 0 100px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(244,245,244,0.97) 0%, rgba(244,245,244,0.88) 45%, rgba(244,245,244,0.55) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 28px; color: var(--ink); }
.hero-lede { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 520px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest); color: var(--surface);
  padding: 16px 28px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  box-shadow: var(--shadow-soft);
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-2px); box-shadow: var(--shadow-deep); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink);
  padding: 16px 24px; text-decoration: none;
  font-weight: 600; font-size: 15px;
  border-bottom: 1.5px solid var(--ink);
  transition: color .2s, border-color .2s;
}
.btn-secondary:hover { color: var(--forest); border-color: var(--forest); }
.hero-trust { margin-top: 44px; display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num { font-family: var(--display); font-size: 36px; font-weight: 600; line-height: 1; }
.trust-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); opacity: .75; }

/* ─────── form card ─────── */
.form-card {
  background: var(--surface); border-radius: 6px;
  padding: 38px 36px; box-shadow: var(--shadow-deep);
  position: relative; border: 1px solid var(--line);
}
.form-card::before {
  content: ""; position: absolute;
  top: -1px; left: -1px; right: -1px; height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--sage), var(--moss));
  border-radius: 6px 6px 0 0;
}
.form-title { font-family: var(--display); font-weight: 500; font-size: 28px; line-height: 1.1; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--ink-2); opacity: .8; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 4px;
  background: var(--bg); font-family: var(--sans); font-size: 15px;
  color: var(--ink); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; margin-top: 8px; padding: 16px;
  background: var(--ink); color: var(--surface);
  border: none; border-radius: 4px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background .2s;
}
.form-submit:hover { background: var(--forest); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-fine { font-size: 12px; color: var(--ink-2); opacity: .65; margin-top: 14px; text-align: center; line-height: 1.5; }

/* ─────── generic section ─────── */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--forest-dark); }
.section-head h2 { margin-bottom: 18px; }
.section-lede { font-size: 18px; color: var(--ink-2); line-height: 1.55; }

/* ─────── services ─────── */
.services { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); padding: 36px 30px;
  border-radius: 4px; border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--forest);
  transition: width .35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.service-card:hover::after { width: 100%; }
.service-card h3 { font-family: var(--display); font-weight: 600; font-size: 24px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.service-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest-dark); background: rgba(47,93,58,0.10);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}

/* ─────── process ─────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step .step-num {
  font-family: var(--display); font-size: 64px;
  font-weight: 400; font-style: italic; color: var(--forest);
  line-height: 1; margin-bottom: 16px; opacity: .85;
}
.process-step h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.process-step p { font-size: 15px; color: var(--ink-2); }

/* ─────── areas ─────── */
.areas { background: var(--ink); color: var(--surface); }
.areas h2 { color: var(--surface); }
.areas h2 .ital { color: var(--sage); }
.areas .section-lede { color: rgba(244,245,244,0.7); }
.areas .eyebrow { color: var(--sage); }
.areas .eyebrow::before, .areas .eyebrow::after { background: var(--sage); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.area-chip {
  background: rgba(244,245,244,0.06);
  border: 1px solid rgba(244,245,244,0.12);
  padding: 18px 20px; border-radius: 4px;
  text-align: center; font-weight: 500; font-size: 15px;
  transition: background .2s, border-color .2s, transform .2s;
}
.area-chip:hover { background: rgba(47,93,58,0.18); border-color: var(--sage); transform: translateY(-2px); }
.area-chip .zip { display: block; font-size: 11px; color: var(--sage); margin-top: 4px; letter-spacing: 0.06em; }

/* ─────── reviews ─────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--surface); padding: 32px 28px; border-radius: 4px; border: 1px solid var(--line); }
.stars { color: #d4a548; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-quote {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.45; color: var(--ink); margin-bottom: 18px;
}
.review-author { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-loc { font-size: 12px; color: var(--ink-2); opacity: .7; margin-top: 2px; }

/* ─────── faqs ─────── */
.faqs { background: var(--bg-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 26px 0;
  font-family: var(--display); font-weight: 500; font-size: 22px;
  line-height: 1.3; color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-q::after {
  content: "+"; font-family: var(--sans); font-size: 28px; font-weight: 300;
  color: var(--forest); transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--ink-2); font-size: 16px; line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 26px; }

/* ─────── cta band ─────── */
.cta-band { background: var(--ink); color: var(--surface); text-align: center; padding: 90px 0; }
.cta-band h2 { color: var(--surface); }
.cta-band h2 .ital { color: var(--sage); }
.cta-band p { color: rgba(244,245,244,0.75); font-size: 18px; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .btn-secondary { color: var(--surface); border-color: var(--surface); }
.cta-band .btn-secondary:hover { color: var(--sage); border-color: var(--sage); }

/* ─────── footer ─────── */
footer { background: #2a302d; color: rgba(244,245,244,0.7); padding: 60px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer h4 { color: var(--surface); font-family: var(--display); font-size: 18px; font-weight: 600; margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: rgba(244,245,244,0.7); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--sage); }
.footer-bottom {
  border-top: 1px solid rgba(244,245,244,0.1);
  padding-top: 24px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 12px; opacity: .65;
}

/* ─────── mobile call bar ─────── */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--forest); color: var(--surface);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(28,42,34,0.18);
  border-top: 2px solid var(--forest-dark);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; color: var(--surface); text-decoration: none;
  font-weight: 700; font-size: 17px; padding: 6px 0;
}
.mobile-call-bar svg { width: 22px; height: 22px; }
.mobile-call-bar .pulse {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
}
.mobile-call-bar .pulse::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(244,245,244,0.25);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ─────── blog ─────── */
.blog-hero { padding: 70px 0 50px; text-align: center; }
.blog-hero .eyebrow { justify-content: center; margin-bottom: 24px; }
.blog-hero .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--forest-dark); }
.blog-hero h1 { font-size: clamp(38px, 5vw, 60px); margin-bottom: 18px; }
.blog-hero p { font-size: 18px; color: var(--ink-2); max-width: 620px; margin: 0 auto; }

.featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
  margin-bottom: 70px; box-shadow: var(--shadow-soft);
  transition: transform .25s, box-shadow .25s;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.featured-img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--bg-2); }
.featured-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.post-cat { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); margin-bottom: 14px; }
.featured-body h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; }
.featured-body .excerpt { color: var(--ink-2); font-size: 17px; margin-bottom: 22px; }
.post-meta { font-size: 13px; color: var(--ink-3); }
.post-meta span + span::before { content: " · "; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 60px; }
.post-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--bg-2); }
.post-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.post-card h3 { font-size: 20px; margin-bottom: 8px; line-height: 1.25; }
.post-card h3 a, .featured-body h2 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover, .featured-body h2 a:hover { color: var(--forest); }
.post-card .excerpt { color: var(--ink-2); font-size: 14.5px; margin-bottom: 16px; flex: 1; }

.pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0 80px; }
.pagination a, .pagination span {
  padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: 4px;
  font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.pagination a:hover { background: var(--forest); color: var(--surface); border-color: var(--forest); }
.pagination .current { background: var(--ink); color: var(--surface); border-color: var(--ink); }

.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-2); }

.breadcrumb { padding: 28px 0 0; font-size: 13px; color: var(--ink-3); }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

.post-header { padding: 28px 0 32px; }
.post-cat-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest);
  background: rgba(47,93,58,0.10); padding: 6px 12px; border-radius: 999px;
  margin-bottom: 22px;
}
.post-header h1 { font-size: clamp(34px, 4.6vw, 54px); margin-bottom: 22px; }
.post-header .excerpt { font-size: 19px; color: var(--ink-2); line-height: 1.55; margin-bottom: 28px; }
.post-header .meta { font-size: 14px; color: var(--ink-3); padding-top: 22px; border-top: 1px solid var(--line); }
.post-header .meta span + span::before { content: " · "; }

.post-hero { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-soft); }
/* Keep hero images aligned with the article column on blog and SEO sub-pages.
   .post-hero appears after .container-narrow in the stylesheet, so this restores
   the horizontal auto margin that centers the figure. */
.post-hero.container-narrow { margin: 24px auto 40px; }
.post-hero img { width: 100%; aspect-ratio: 16 / 9; height: auto; display: block; object-fit: cover; object-position: center; }

.post-body { font-size: 18px; line-height: 1.75; color: var(--ink-2); padding-bottom: 60px; }
.post-body h2 { margin: 50px 0 18px; font-size: 30px; color: var(--ink); }
.post-body h3 { margin: 36px 0 14px; font-size: 22px; color: var(--ink); }
.post-body p { margin-bottom: 22px; }
.post-body ul, .post-body ol { margin: 0 0 22px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--forest-dark); }
.post-body img { max-width: 100%; height: auto; border-radius: 6px; margin: 28px 0; }
.post-body blockquote {
  border-left: 3px solid var(--forest); padding: 4px 0 4px 24px; margin: 30px 0;
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--ink); line-height: 1.4;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 50px; }
.tag { font-size: 12px; font-weight: 500; background: var(--bg-2); color: var(--ink-2); padding: 6px 12px; border-radius: 999px; }

.post-cta {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: var(--surface); padding: 44px 40px; border-radius: 8px;
  margin: 60px 0; text-align: center;
}
.post-cta h3 { color: var(--surface); font-family: var(--display); font-size: 28px; font-weight: 500; margin-bottom: 10px; }
.post-cta p { color: rgba(244,245,244,0.85); font-size: 16px; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.post-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.post-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 14px 24px; border-radius: 4px;
  transition: transform .2s, background .2s;
}
.post-cta .btn-primary { background: var(--surface); color: var(--forest); }
.post-cta .btn-primary:hover { transform: translateY(-2px); }
.post-cta .btn-outline { background: transparent; color: var(--surface); border: 1.5px solid rgba(244,245,244,0.5); }
.post-cta .btn-outline:hover { border-color: var(--surface); }

.related { background: var(--bg-2); padding: 70px 0; margin-top: 60px; }
.related h2 { font-size: 30px; margin-bottom: 36px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); }
.related-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--bg-2); }
.related-card-body { padding: 22px; }
.related-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--ink); }
.related-card .post-meta { font-size: 12px; color: var(--ink-3); margin-top: 8px; }

/* ─────── responsive ─────── */
@media (max-width: 960px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .process-grid, .reviews-grid, .post-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 0; }
  .nav-phone span { display: none; }
  .hero-trust { gap: 24px; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-body { padding: 32px 28px; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 72px; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav-btn { padding: 9px 16px; font-size: 13px; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-cta { padding: 32px 24px; }
  .post-body { font-size: 17px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-grid > * { animation: fadeUp .8s ease both; }
.hero-grid > *:nth-child(2) { animation-delay: .15s; }
