/* ============================================================
   OKC Evictions — okevictions.com
   Design system: evergreen + copper on warm paper, bold sans
   headings. System fonts only; no external requests.
   (Deliberately distinct from the navy/amber/serif sister site.)
   ============================================================ */

html { color-scheme: only light; }
:root {
  --pine-950: #06201A;
  --pine-900: #0A2C22;
  --pine:     #0E3A2D;
  --pine-600: #17573F;
  --pine-100: #E4EFE8;
  --paper:    #F7F5F0;
  --white:    #FFFFFF;
  --ink:      #1D2721;
  --stone:    #56645C;
  --line:     #DCE2DC;
  --copper:      #C2571D;
  --copper-600:  #A84815;
  --copper-100:  #F8E8DC;
  --cream:    #F4EFE6;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(6, 32, 26, 0.08);
  --shadow-md: 0 10px 30px rgba(6, 32, 26, 0.12);
  --wrap: 1120px;
}

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

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

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--pine-900); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 1.3rem + 2.8vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.4rem; margin: 0 0 1rem; }
li { margin-bottom: 0.4rem; }

a { color: var(--pine-600); text-decoration: underline; text-decoration-color: rgba(23, 87, 63, 0.35); text-underline-offset: 3px; transition: color .15s ease; }
a:hover { color: var(--copper-600); text-decoration-color: currentColor; }

:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; border-radius: 3px; }

.wrap { width: min(92%, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(92%, 800px); margin-inline: auto; }

section { padding: clamp(2.8rem, 2rem + 2.6vw, 4.6rem) 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--pine-900); color: #fff; padding: .6rem 1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.small { font-size: .92rem; color: var(--stone); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1.6rem; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--copper-600); margin-bottom: .55rem;
}
.section-head { max-width: 720px; margin-bottom: 2.2rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head p { color: var(--stone); margin: .7rem 0 0; }

/* ------------------------------------------------------------ buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--radius);
  padding: .72rem 1.35rem; cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-accent { background: var(--copper); color: #fff; }
.btn-accent:hover { background: var(--copper-600); color: #fff; }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-600); color: #fff; }
.btn-ghost { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-ghost:hover { background: var(--pine-100); color: var(--pine-900); }
.btn-ghost-light { background: var(--pine-900); color: var(--cream); border-color: rgba(244, 239, 230, .65); }
.btn-ghost-light:hover { background: rgba(244, 239, 230, .12); color: #fff; border-color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--pine-900); border-color: var(--pine-900); }
.btn-ghost-dark:hover { background: var(--pine-100); }
.btn-lg { padding: .9rem 1.7rem; font-size: 1.08rem; }

/* ------------------------------------------------------------- header --- */
.site-header {
  background: var(--white); border-bottom: 3px solid var(--pine);
  position: sticky; top: 0; z-index: 100;
}
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { flex: 0 0 auto; }
.brand-name { font-weight: 800; font-size: 1.22rem; color: var(--pine-900); line-height: 1.1; letter-spacing: -0.01em; display: flex; flex-direction: column; }
.brand-name small { font-weight: 600; font-size: .68rem; color: var(--stone); letter-spacing: .08em; text-transform: uppercase; margin-top: .18rem; }

.nav-toggle { display: none; background: none; border: 0; color: var(--pine-900); cursor: pointer; padding: .4rem; }

.main-nav ul { display: flex; align-items: center; gap: 1.3rem; list-style: none; margin: 0; padding: 0; }
.main-nav li { margin: 0; }
.main-nav a { font-weight: 600; font-size: .98rem; color: var(--ink); text-decoration: none; }
.main-nav a:hover { color: var(--copper-600); }
.main-nav a[aria-current="page"] { color: var(--pine-600); box-shadow: inset 0 -2px 0 var(--copper); }
.nav-phone a { display: inline-flex; align-items: center; gap: .4rem; color: var(--pine-600); font-weight: 700; white-space: nowrap; }
.nav-cta a.btn { padding: .55rem 1.05rem; font-size: .95rem; }
.nav-cta a.btn:hover { color: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
              background: var(--white); border-bottom: 3px solid var(--pine); box-shadow: var(--shadow-md); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 4%; }
  .main-nav li { border-top: 1px solid var(--line); }
  .main-nav li:first-child { border-top: 0; }
  .main-nav a { display: block; padding: .8rem .2rem; }
  .nav-cta { padding: .7rem 0 .9rem; }
  .nav-cta a.btn { display: flex; }
}

/* --------------------------------------------------------------- hero --- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(23, 87, 63, .55), transparent 60%),
    linear-gradient(160deg, var(--pine-950) 0%, var(--pine-900) 55%, var(--pine) 100%);
  color: var(--cream);
  padding: clamp(3rem, 2.2rem + 3vw, 5.4rem) 0;
}
.hero h1 { color: #fff; margin-bottom: 1rem; max-width: 21ch; }
.hero .lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem); color: rgba(244, 239, 230, .9); max-width: 58ch; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.6rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0 0; }

.hero-points { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .55rem; }
.hero-points li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 600; font-size: .98rem; }
.hero-points svg { flex: 0 0 auto; margin-top: .22rem; color: #E8A263; }

.hero-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg);
  border-top: 5px solid var(--copper); box-shadow: var(--shadow-md); padding: 1.6rem 1.6rem 1.5rem;
}
.hero-card h2 { font-size: 1.3rem; margin-bottom: .4rem; }
.hero-card > p { color: var(--stone); font-size: .95rem; margin-bottom: 1rem; }
.hero-card hr { border: 0; border-top: 1px solid var(--line); margin: .9rem 0; }
.contact-line { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); font-weight: 700; }
.contact-line svg { color: var(--pine-600); flex: 0 0 auto; }
.contact-line span small { display: block; font-weight: 500; font-size: .8rem; color: var(--stone); }
.contact-line:hover { color: var(--copper-600); }
.hero-card .btn { width: 100%; margin-top: 1.1rem; }

/* ---------------------------------------------------------- trust bar --- */
.trust-bar { background: var(--pine-950); color: rgba(244, 239, 230, .92); padding: .8rem 0; }
.trust-bar .wrap { display: flex; flex-wrap: wrap; gap: .5rem 2.2rem; justify-content: center; }
.trust-bar span { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 600; }
.trust-bar svg { color: #E8A263; }

/* -------------------------------------------------------------- cards --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px)  { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 620px)  { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.3rem; box-shadow: var(--shadow-sm);
}
.card h3 { margin: .85rem 0 .5rem; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--stone); font-size: .97rem; }

.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius);
  background: var(--pine-100); color: var(--pine-600);
}

/* Service rows (services page) */
.svc-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem;
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--pine);
  border-radius: var(--radius-lg); padding: 1.5rem 1.6rem; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
}
.svc-row:nth-child(even) { border-left-color: var(--copper); }
.svc-row h3 { margin: 0 0 .45rem; }
.svc-row p:last-child { margin-bottom: 0; }
.svc-row .icon-chip { width: 52px; height: 52px; }
@media (max-width: 620px) { .svc-row { grid-template-columns: 1fr; } .svc-row .icon-chip { width: 46px; height: 46px; } }

/* Steps */
.steps { list-style: none; counter-reset: step; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.steps li {
  counter-increment: step; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); margin: 0;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: inline-block; font-weight: 800; font-size: .95rem; letter-spacing: .06em;
  color: var(--copper-600); background: var(--copper-100); border-radius: var(--radius);
  padding: .2rem .55rem; margin-bottom: .8rem;
}
.steps h3 { margin: 0 0 .45rem; font-size: 1.12rem; }
.steps p { color: var(--stone); font-size: .95rem; margin: 0; }

/* Checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: .55rem; }
.checklist li { display: flex; align-items: flex-start; gap: .6rem; }
.checklist svg { flex: 0 0 auto; margin-top: .25rem; color: var(--pine-600); }

/* Chips (service area) */
.chip-row { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.chip-row li { margin: 0; }
.chip {
  display: inline-block; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: .38rem 1rem; font-weight: 600; font-size: .93rem; color: var(--pine-900);
}

/* County cards */
.county-card h3 { display: flex; align-items: center; gap: .55rem; margin: 0 0 .3rem; font-size: 1.08rem; }
.county-card h3 svg { color: var(--copper-600); }
.county-card p { margin: 0; font-size: .92rem; }

/* Alternate section background */
.section-tint { background: var(--pine-100); }
.section-white { background: var(--white); border-block: 1px solid var(--line); }

/* ------------------------------------------------------------ CTA band --- */
.cta-band {
  background: linear-gradient(140deg, var(--pine-950), var(--pine-900) 70%);
  color: var(--cream); text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(244, 239, 230, .88); max-width: 60ch; margin: .8rem auto 0; }
.cta-band .hero-ctas { justify-content: center; }

/* ----------------------------------------------------------- page hero --- */
.page-hero { background: linear-gradient(150deg, var(--pine-950), var(--pine) 90%); color: var(--cream); padding: 2.6rem 0 2.8rem; }
.page-hero h1 { color: #fff; margin: .4rem 0 .7rem; }
.page-hero .lede { color: rgba(244, 239, 230, .9); max-width: 62ch; margin: 0; font-size: 1.08rem; }
.breadcrumbs { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; font-size: .85rem; }
.breadcrumbs li { margin: 0; color: rgba(244, 239, 230, .75); }
.breadcrumbs li + li::before { content: "/"; margin-right: .45rem; color: rgba(244, 239, 230, .45); }
.breadcrumbs a { color: rgba(244, 239, 230, .9); }

/* ----------------------------------------------------------------- FAQ --- */
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  margin-bottom: .85rem; box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.05rem 1.3rem; font-weight: 700; color: var(--pine-900); font-size: 1.03rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 700; color: var(--copper); line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 1.3rem 1.15rem; color: var(--stone); }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .icon-chip { width: 42px; height: 42px; flex: 0 0 auto; }
.contact-list strong { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); }

.lead-form label { display: block; font-weight: 700; margin: 1rem 0 .35rem; font-size: .95rem; }
.lead-form label small { font-weight: 500; color: var(--stone); }
.lead-form input[type=text], .lead-form input[type=email], .lead-form input[type=tel], .lead-form textarea {
  width: 100%; padding: .68rem .8rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  font: inherit; font-size: 1rem; background: var(--white); color: var(--ink);
}
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--pine-600); outline: 2px solid rgba(23, 87, 63, .25); }
.lead-form textarea { min-height: 140px; resize: vertical; }
.lead-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 620px) { .lead-form .row2 { grid-template-columns: 1fr; } }
.lead-form .btn { margin-top: 1.3rem; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-flash { display: none; border-radius: var(--radius); padding: .9rem 1.1rem; margin-bottom: 1.1rem; font-weight: 600; }
.form-flash.ok { background: #E4F2E8; border: 1px solid #A9D3B5; color: #1C5631; }
.form-flash.err { background: #FAE9E4; border: 1px solid #E5B3A3; color: #8A3213; }
#lead-sent:target, #lead-error:target { display: block; }

/* -------------------------------------------------------------- footer --- */
.site-footer { background: var(--pine-950); color: rgba(244, 239, 230, .85); padding: 3rem 0 0; }
.site-footer a { color: rgba(244, 239, 230, .9); text-decoration-color: rgba(244, 239, 230, .3); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: .6rem; }
.footer-note { font-size: .92rem; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .7rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; font-size: .95rem; }
.footer-counties { columns: 2; }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.8; }
.footer-legal { border-top: 1px solid rgba(244, 239, 230, .15); padding: 1.3rem 0 4.6rem; }
.footer-legal p { font-size: .8rem; color: rgba(244, 239, 230, .6); margin-bottom: .5rem; }
@media (min-width: 761px) { .footer-legal { padding-bottom: 1.5rem; } }

/* ------------------------------------------------------ mobile call bar --- */
.mobile-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(6, 32, 26, .12);
  padding: .55rem 3%; gap: .6rem;
}
.mobile-call-bar .btn { flex: 1; padding: .65rem .5rem; font-size: .95rem; }
@media (max-width: 760px) { .mobile-call-bar { display: flex; } }
