/* =============================================
   Columbus Process Servers
   Forest Green + Cream + Ochre
   Left-sidebar layout — structurally distinct
   ============================================= */

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

:root {
  --green:       #1a5c38;
  --green-dark:  #0f3d25;
  --green-mid:   #2a7a4e;
  --green-light: #e8f2ec;
  --ochre:       #c8860a;
  --ochre-dark:  #a36c08;
  --ochre-light: #fdf3e0;
  --cream:       #faf7f2;
  --cream-2:     #f0ece4;
  --cream-3:     #e2dbd0;
  --white:       #ffffff;
  --text:        #1c2520;
  --text-mid:    #4a5a52;
  --text-light:  #7a8a80;
  --border:      #d5cfc6;
  --sidebar-w:   240px;
}

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.65;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   PAGE SHELL: sidebar + canvas
   Completely different from top-nav sites
   ══════════════════════════════════════════ */

.wrapper {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
}

/* ── LEFT SIDEBAR NAV ── */
.sidenav {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--green-dark);
  color: #c8d8cc;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  padding: 0 0 2rem;
}

.sidenav__brand {
  display: block;
  padding: 1.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.sidenav__name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sidenav__tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--ochre);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.sidenav__nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
}
.sidenav__link {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  color: #b0c4b8;
  border-left: 3px solid transparent;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.sidenav__link:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-left-color: var(--ochre);
  text-decoration: none;
}

.sidenav__cta-block {
  margin: 0.75rem 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sidenav__quote-btn {
  display: block;
  background: var(--ochre);
  color: #fff;
  text-align: center;
  padding: 0.6rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.sidenav__quote-btn:hover { background: var(--ochre-dark); text-decoration: none; }

.sidenav__contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #8aaa92;
}
.sidenav__contact a { color: #b0c4b8; }
.sidenav__contact a:hover { color: #fff; text-decoration: none; }
.sidenav__contact a[href^="tel"] { font-size: 0.9rem; font-weight: 700; color: #d0e4d8; }

.sidenav__badges {
  display: flex;
  gap: 0.4rem;
  padding: 0 1rem;
  margin-top: auto;
}
.badge {
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  color: #8aaa92;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── CANVAS (scrollable right side) ── */
.canvas {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--white);
}

/* ── TOP BAR (thin strip above content) ── */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 0.45rem 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.topbar__phone a { color: #fff; font-weight: 600; }
.topbar__sep { color: rgba(255,255,255,0.3); }
.topbar__quote { color: #fcd98a; font-weight: 600; margin-left: auto; }
.topbar__quote:hover { text-decoration: underline; }

/* ── MAIN ── */
main { flex: 1; }

/* ════════════════════════════════════
   HOMEPAGE BLOCKS
   ════════════════════════════════════ */

/* Intro block — no "hero" wrapper, just a section */
.intro-block {
  background: var(--green);
  color: #fff;
  padding: 3rem 2.5rem 2.5rem;
  border-bottom: 4px solid var(--ochre);
}
.intro-block__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.6rem;
}
.intro-block h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.intro-block h1 em { font-style: normal; color: #a3d4b4; }
.intro-block__lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.intro-block__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--ochre);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 700;
}
.btn-primary:hover { background: var(--ochre-dark); text-decoration: none; }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: #fff; color: #fff; text-decoration: none; }

/* Stats row — figures, not divs */
.stats-row {
  display: flex;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-row figure {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}
.stats-row figure:last-child { border-right: none; }
.stats-row figcaption {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a9a82;
  margin-bottom: 0.2rem;
}
.stats-row .stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stats-row .stat-val em { font-style: normal; color: var(--ochre); }

/* Content area */
.content-area {
  padding: 2.5rem;
}
.content-area + .content-area { padding-top: 0; }

.section-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.35rem;
}
.section-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.section-rule {
  width: 36px;
  height: 3px;
  background: var(--ochre);
  margin-bottom: 1.25rem;
}
.section-intro {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 1.5rem;
}

/* Services — ordered list, not cards */
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.service-list > li {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--white);
}
.service-list > li:nth-child(2n) { border-right: none; }
.service-list > li:nth-last-child(-n+2) { border-bottom: none; }
.service-list > li > b {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.service-list > li > p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}
.service-list > li > a {
  font-size: 0.78rem;
  color: var(--ochre);
  font-weight: 600;
}

/* County table — not columns */
.county-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.county-table thead tr {
  background: var(--green);
  color: #fff;
}
.county-table thead th {
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.county-table tbody tr:nth-child(even) { background: var(--cream); }
.county-table tbody tr:hover { background: var(--green-light); }
.county-table td {
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.county-table td:first-child a { color: var(--green); font-weight: 500; }
.county-table td:first-child a:hover { color: var(--ochre); text-decoration: none; }
.county-table td:last-child { color: var(--text-light); font-size: 0.75rem; }

/* 4-column county table layout */
.county-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.county-4col__item {
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}
.county-4col__item:nth-child(4n) { border-right: none; }
.county-4col__item a { color: var(--text); }
.county-4col__item a:hover { color: var(--green); text-decoration: none; }
.county-4col__item span { color: var(--text-light); font-size: 0.72rem; white-space: nowrap; }

/* Why section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}
.why-checks {
  list-style: none;
}
.why-checks > li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.why-checks > li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}
.why-checks > li:last-child { border-bottom: none; }

.contact-box {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 1.5rem;
  border-radius: 0 0 2px 2px;
}
.contact-box h3 { font-size: 0.9rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.contact-box p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.contact-box address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.82rem;
}
.contact-box address a[href^="tel"] {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}
.contact-box address a { color: var(--text-mid); }
.contact-box__cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  background: var(--green);
  color: #fff;
  padding: 0.6rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
}
.contact-box__cta:hover { background: var(--green-dark); text-decoration: none; }

/* CTA strip */
.cta-strip {
  background: var(--ochre);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip__text h2 { font-size: 1.15rem; color: #fff; margin-bottom: 0.25rem; }
.cta-strip__text p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.cta-strip__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--ochre-dark); padding: 0.6rem 1.25rem; border-radius: 2px; font-size: 0.85rem; font-weight: 700; }
.btn-white:hover { background: var(--cream); text-decoration: none; }
.btn-white-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); padding: 0.6rem 1.25rem; border-radius: 2px; font-size: 0.85rem; font-weight: 700; }
.btn-white-ghost:hover { border-color: #fff; text-decoration: none; }

/* ════════════════════════════════════
   INNER PAGE ELEMENTS
   ════════════════════════════════════ */

/* Breadcrumb — plain <p> not <ol> */
.breadcrumb {
  background: var(--cream-2);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 2rem;
  font-size: 0.75rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--green); }
.breadcrumb .crumb-sep { margin: 0 0.3rem; color: var(--border); }

/* Page header (inner pages) */
.page-hd {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem 1.5rem;
  border-left: 5px solid var(--green);
}
.page-hd h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.page-hd p { font-size: 0.85rem; color: var(--text-mid); }

/* Two-column inner layout: main + sidebar */
.inner-layout {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 0;
}
.inner-main {
  padding: 2rem 2rem 2rem 2.5rem;
  border-right: 1px solid var(--border);
}
.inner-main h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.inner-main .rule {
  width: 32px;
  height: 2px;
  background: var(--ochre);
  margin-bottom: 1rem;
}
.inner-main p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 0.85rem; line-height: 1.65; }
.inner-main h3 { font-size: 1rem; color: var(--green-dark); margin: 1.25rem 0 0.5rem; font-weight: 600; }
.inner-main ul { margin: 0 0 0.85rem 1.25rem; }
.inner-main ul li { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 0.25rem; }

.inner-sidebar {
  padding: 1.5rem 1.25rem;
  background: var(--cream);
}
.inner-sidebar__panel {
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  background: #fff;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0 0 2px 2px;
}
.inner-sidebar__panel h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.inner-sidebar__panel address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
}
.inner-sidebar__panel address a[href^="tel"] {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
}
.inner-sidebar__panel address a { color: var(--text-mid); }
.inner-sidebar__panel p { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.sidebar-quote-btn {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  padding: 0.55rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.75rem;
}
.sidebar-quote-btn:hover { background: var(--green-dark); text-decoration: none; }

.inner-sidebar__links {
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-radius: 2px;
}
.inner-sidebar__links h3 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.inner-sidebar__links a {
  display: block;
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--cream-2);
}
.inner-sidebar__links a:last-child { border-bottom: none; }
.inner-sidebar__links a:hover { color: var(--green); text-decoration: none; }

/* FAQ — dl/dt/dd, not details/summary */
.faq-list { margin-top: 0.5rem; }
.faq-list dt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  padding: 0.85rem 1rem;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-bottom: none;
  margin-top: 0.5rem;
  cursor: default;
}
.faq-list dt:first-child { margin-top: 0; }
.faq-list dd {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  line-height: 1.65;
  margin: 0;
}
.faq-list dd a { color: var(--green); }

/* City grid — list, not columns */
.city-grid {
  columns: 3;
  column-gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-top: 0.75rem;
  overflow: hidden;
}
.city-grid a {
  display: block;
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.35rem 0.75rem;
  border-bottom: 1px solid var(--cream-2);
  break-inside: avoid;
}
.city-grid a:hover { background: var(--green-light); color: var(--green); text-decoration: none; }

/* Fee table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 1rem 0;
}
.fee-table thead tr { background: var(--green); color: #fff; }
.fee-table thead th {
  padding: 0.55rem 0.85rem;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}
.fee-table td { padding: 0.5rem 0.85rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.fee-table tr:nth-child(even) td { background: var(--cream); }

/* Guarantee callout */
.guarantee-block {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 2px 2px 0;
}
.guarantee-block strong { display: block; color: var(--green-dark); margin-bottom: 0.25rem; font-size: 0.875rem; }
.guarantee-block p { font-size: 0.82rem; color: var(--text-mid); margin: 0; }

/* Contact two-col */
.contact-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-two-col h3 { font-size: 0.9rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.contact-two-col p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.35rem; }

/* ── FOOTER ── */
.sitefooter {
  background: var(--green-dark);
  color: #8aaa92;
  margin-top: auto;
}
.sitefooter__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
}
.sitefooter__name { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.sitefooter__about { font-size: 0.75rem; color: #6a8a72; margin-bottom: 0.75rem; line-height: 1.6; }
.sitefooter__addr { font-style: normal; font-size: 0.78rem; }
.sitefooter__addr a { color: #8aaa92; }
.sitefooter__addr a:hover { color: #fff; text-decoration: none; }
.sitefooter__col h3 {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a8a72;
  margin-bottom: 0.75rem;
}
.sitefooter__col a {
  display: block;
  font-size: 0.78rem;
  color: #8aaa92;
  padding: 0.2rem 0;
}
.sitefooter__col a:hover { color: #fff; text-decoration: none; }
.sitefooter__bar {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: #4a6a52;
}
.sitefooter__bar a { color: #4a6a52; }
.sitefooter__bar a:hover { color: #8aaa92; text-decoration: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .why-grid { grid-template-columns: 1fr; }
  .county-4col { grid-template-columns: repeat(2, 1fr); }
  .county-4col__item:nth-child(2n) { border-right: none; }
  .county-4col__item:nth-child(4n) { border-right: 1px solid var(--border); }
  .sitefooter__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .inner-layout { grid-template-columns: 1fr; }
  .inner-main { border-right: none; border-bottom: 1px solid var(--border); }
  .service-list { grid-template-columns: 1fr; }
  .service-list > li { border-right: none; }
  .service-list > li:last-child { border-bottom: none; }
  .city-grid { columns: 2; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .contact-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  :root { --sidebar-w: 0px; }
  .sidenav { display: none; }
  .canvas { margin-left: 0; }
  .stats-row { flex-wrap: wrap; }
  .stats-row figure { flex: 1 1 50%; }
  .county-4col { grid-template-columns: 1fr 1fr; }
  .city-grid { columns: 1; }
  .sitefooter__cols { grid-template-columns: 1fr; }
  .intro-block h1 { font-size: 1.6rem; }
}
