/* =========================================================
   Buckeye Generator Pros — stylesheet
   Naming convention: bkgp-<component>[-<modifier>]
   ========================================================= */

:root {
  --bkgp-ink: #2e2013;
  --bkgp-stone: #6b5a48;
  --bkgp-stone-dark: #4a3c2e;
  --bkgp-sand: #f6eee1;
  --bkgp-sand-deep: #eadfc8;
  --bkgp-turquoise: #2c7a73;
  --bkgp-turquoise-dark: #1f5c56;
  --bkgp-terracotta: #c1502e;
  --bkgp-terracotta-dark: #9c3f23;
  --bkgp-white: #fffdf8;
  --bkgp-line: #ddd0bc;

  --bkgp-font-head: "Zilla Slab", "Georgia", serif;
  --bkgp-font-body: "Mulish", "Segoe UI", sans-serif;

  --bkgp-radius: 12px;
  --bkgp-shadow: 0 14px 32px -16px rgba(46, 32, 19, 0.4);
  --bkgp-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bkgp-font-body);
  color: var(--bkgp-ink);
  background: var(--bkgp-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--bkgp-font-head);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--bkgp-ink);
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.bkgp-wrap {
  max-width: var(--bkgp-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bkgp-eyebrow {
  display: inline-block;
  font-family: var(--bkgp-font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bkgp-terracotta);
  margin-bottom: 0.6em;
}

/* ---------- Buttons ---------- */
.bkgp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--bkgp-font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.bkgp-btn:hover { transform: translateY(-1px); }
.bkgp-btn-primary {
  background: var(--bkgp-turquoise);
  color: var(--bkgp-white);
}
.bkgp-btn-primary:hover { background: var(--bkgp-turquoise-dark); }
.bkgp-btn-dark {
  background: var(--bkgp-ink);
  color: var(--bkgp-white);
}
.bkgp-btn-dark:hover { background: #1a1209; }
.bkgp-btn-outline {
  background: transparent;
  border-color: var(--bkgp-ink);
  color: var(--bkgp-ink);
}
.bkgp-btn-outline:hover { background: var(--bkgp-ink); color: var(--bkgp-white); }
.bkgp-btn-block { width: 100%; }

/* ---------- Top utility bar ---------- */
.bkgp-topbar {
  background: var(--bkgp-turquoise-dark);
  color: var(--bkgp-sand);
  font-size: 0.85rem;
}
.bkgp-topbar .bkgp-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.bkgp-topbar a { font-weight: 700; }
.bkgp-topbar a:hover { color: var(--bkgp-white); }

/* ---------- Header / nav ---------- */
.bkgp-header {
  background: var(--bkgp-white);
  border-bottom: 1px solid var(--bkgp-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.bkgp-header .bkgp-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.bkgp-logo {
  font-family: var(--bkgp-font-head);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--bkgp-ink);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.bkgp-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bkgp-terracotta);
  color: var(--bkgp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex: none;
}

.bkgp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.bkgp-nav-link {
  font-weight: 700;
  font-size: 0.94rem;
  padding: 8px 0;
}
.bkgp-nav-link:hover { color: var(--bkgp-turquoise); }
.bkgp-nav-link[aria-current="page"] { color: var(--bkgp-turquoise); }

.bkgp-has-dropdown { position: relative; }
.bkgp-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bkgp-white);
  border: 1px solid var(--bkgp-line);
  border-radius: var(--bkgp-radius);
  box-shadow: var(--bkgp-shadow);
  min-width: 270px;
  padding: 8px;
  display: none;
  z-index: 60;
}
.bkgp-has-dropdown:hover .bkgp-dropdown,
.bkgp-has-dropdown.is-open .bkgp-dropdown {
  display: block;
}
.bkgp-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}
.bkgp-dropdown a:hover { background: var(--bkgp-sand); color: var(--bkgp-terracotta-dark); }

.bkgp-header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bkgp-header-phone {
  font-family: var(--bkgp-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bkgp-ink);
  white-space: nowrap;
}
.bkgp-header-phone small {
  display: block;
  font-family: var(--bkgp-font-body);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--bkgp-stone);
}

.bkgp-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--bkgp-line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.bkgp-hero {
  background: linear-gradient(180deg, var(--bkgp-sand) 0%, var(--bkgp-white) 100%);
  padding: 56px 0 64px;
}
.bkgp-hero .bkgp-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.bkgp-hero h1 { font-size: clamp(2rem, 3.4vw, 2.7rem); }
.bkgp-hero-lede { font-size: 1.1rem; color: var(--bkgp-stone-dark); max-width: 54ch; }
.bkgp-hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.bkgp-badge {
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--bkgp-white);
  border: 1px solid var(--bkgp-line);
  padding: 8px 14px;
  border-radius: 999px;
}
.bkgp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ---------- Quote form card ---------- */
.bkgp-quote-card {
  background: var(--bkgp-white);
  border: 1px solid var(--bkgp-line);
  border-radius: var(--bkgp-radius);
  box-shadow: var(--bkgp-shadow);
  padding: 26px;
}
.bkgp-quote-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.bkgp-quote-card .bkgp-form-sub { color: var(--bkgp-stone); font-size: 0.9rem; margin-bottom: 18px; }
.bkgp-field { margin-bottom: 14px; }
.bkgp-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--bkgp-stone-dark);
}
.bkgp-field input,
.bkgp-field select,
.bkgp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--bkgp-line);
  border-radius: 8px;
  font-family: var(--bkgp-font-body);
  font-size: 0.95rem;
  background: var(--bkgp-sand);
  color: var(--bkgp-ink);
}
.bkgp-field textarea { min-height: 90px; resize: vertical; }
.bkgp-field input:focus,
.bkgp-field select:focus,
.bkgp-field textarea:focus {
  outline: 2px solid var(--bkgp-turquoise);
  outline-offset: 1px;
  background: var(--bkgp-white);
}
.bkgp-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.bkgp-form-fine { font-size: 0.78rem; color: var(--bkgp-stone); margin-top: 10px; text-align: center; }
.bkgp-form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #e5f0ee;
  border: 1px solid #b9d8d3;
  font-size: 0.9rem;
  display: none;
}
.bkgp-form-message.is-visible { display: block; }
.bkgp-form-message--error { background: #f8e6de; border-color: #e9bda6; color: var(--bkgp-terracotta-dark); }

/* ---------- Sections ---------- */
.bkgp-section { padding: 72px 0; }
.bkgp-section-alt { background: var(--bkgp-sand); }
.bkgp-section-dark { background: var(--bkgp-ink); color: var(--bkgp-sand); }
.bkgp-section-dark h2, .bkgp-section-dark h3 { color: var(--bkgp-white); }
.bkgp-section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.bkgp-section-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.05rem); }
.bkgp-section-head p { color: var(--bkgp-stone); }

/* ---------- Card grid ---------- */
.bkgp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.bkgp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.bkgp-grid-4 { grid-template-columns: repeat(4, 1fr); }

.bkgp-card {
  background: var(--bkgp-white);
  border: 1px solid var(--bkgp-line);
  border-radius: var(--bkgp-radius);
  padding: 28px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.bkgp-card:hover { box-shadow: var(--bkgp-shadow); transform: translateY(-2px); }
.bkgp-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--bkgp-sand-deep);
  color: var(--bkgp-turquoise-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.bkgp-card h3 { font-size: 1.1rem; }
.bkgp-card p { color: var(--bkgp-stone-dark); font-size: 0.95rem; margin-bottom: 12px; }
.bkgp-card-link { font-weight: 700; color: var(--bkgp-terracotta); font-size: 0.9rem; }
.bkgp-card-link:hover { text-decoration: underline; }

/* ---------- Media + text row ---------- */
.bkgp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bkgp-split.bkgp-split-reverse .bkgp-split-media { order: 2; }
.bkgp-split-media img {
  border-radius: var(--bkgp-radius);
  box-shadow: var(--bkgp-shadow);
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.bkgp-split-body .bkgp-eyebrow { display: block; }
.bkgp-list-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.96rem;
}
.bkgp-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bkgp-turquoise);
  font-weight: 700;
}

/* ---------- Pricing table ---------- */
.bkgp-table-wrap { overflow-x: auto; }
.bkgp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bkgp-white);
  border: 1px solid var(--bkgp-line);
  border-radius: var(--bkgp-radius);
  overflow: hidden;
}
.bkgp-table th, .bkgp-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bkgp-line);
  font-size: 0.92rem;
}
.bkgp-table th {
  background: var(--bkgp-turquoise-dark);
  color: var(--bkgp-white);
  font-family: var(--bkgp-font-head);
  font-weight: 600;
}
.bkgp-table tr:last-child td { border-bottom: none; }
.bkgp-table-note { font-size: 0.85rem; color: var(--bkgp-stone); margin-top: 12px; }

/* ---------- Process steps ---------- */
.bkgp-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  counter-reset: step;
}
.bkgp-step { position: relative; padding-top: 8px; }
.bkgp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bkgp-terracotta);
  color: var(--bkgp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bkgp-font-head);
  font-weight: 700;
  margin-bottom: 14px;
}
.bkgp-step h3 { font-size: 1rem; }
.bkgp-step p { font-size: 0.88rem; color: var(--bkgp-stone-dark); }

/* ---------- Service area chips ---------- */
.bkgp-chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.bkgp-chip {
  background: var(--bkgp-white);
  border: 1px solid var(--bkgp-line);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ---------- FAQ (native details/summary) ---------- */
.bkgp-faq { max-width: 820px; margin: 0 auto; }
.bkgp-faq-item {
  border-bottom: 1px solid var(--bkgp-line);
  padding: 6px 0;
}
.bkgp-faq-item summary {
  cursor: pointer;
  font-family: var(--bkgp-font-head);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 14px 4px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bkgp-faq-item summary::-webkit-details-marker { display: none; }
.bkgp-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--bkgp-terracotta);
  margin-left: 12px;
  flex: none;
}
.bkgp-faq-item[open] summary::after { content: "–"; }
.bkgp-faq-item p { padding: 0 4px 16px; color: var(--bkgp-stone-dark); }

/* ---------- Trust / why us bullets ---------- */
.bkgp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bkgp-trust-item { text-align: center; }
.bkgp-trust-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bkgp-turquoise);
  color: var(--bkgp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.bkgp-trust-item h3 { font-size: 1rem; }
.bkgp-trust-item p { font-size: 0.88rem; color: var(--bkgp-stone); }

/* ---------- CTA band ---------- */
.bkgp-cta-band {
  background: var(--bkgp-turquoise);
  color: var(--bkgp-white);
  padding: 52px 0;
  text-align: center;
}
.bkgp-cta-band h2 { color: var(--bkgp-white); }
.bkgp-cta-band p { color: #dcefec; }

/* ---------- Page header (interior pages) ---------- */
.bkgp-page-header {
  background: var(--bkgp-ink);
  color: var(--bkgp-sand);
  padding: 46px 0;
}
.bkgp-page-header h1 { color: var(--bkgp-white); margin-bottom: 8px; }
.bkgp-breadcrumb { font-size: 0.85rem; color: #c4b39c; }
.bkgp-breadcrumb a { color: #d8c9ae; }
.bkgp-breadcrumb a:hover { color: var(--bkgp-white); }

/* ---------- Footer ---------- */
.bkgp-footer {
  background: var(--bkgp-ink);
  color: #d3c4ae;
  padding: 56px 0 26px;
}
.bkgp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.bkgp-footer h4 {
  color: var(--bkgp-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.bkgp-footer a { font-size: 0.9rem; display: block; margin-bottom: 10px; color: #d3c4ae; }
.bkgp-footer a:hover { color: var(--bkgp-white); }
.bkgp-footer-logo { color: var(--bkgp-white); font-family: var(--bkgp-font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 12px; }
.bkgp-footer-bottom {
  border-top: 1px solid #4a3c2e;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #a8977e;
}
.bkgp-footer-bottom a { display: inline; margin: 0 0 0 16px; font-size: 0.82rem; }

/* ---------- Sticky mobile call bar ---------- */
.bkgp-mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bkgp-terracotta);
  z-index: 80;
}
.bkgp-mobile-callbar a {
  display: block;
  text-align: center;
  color: var(--bkgp-white);
  font-family: var(--bkgp-font-head);
  font-weight: 700;
  padding: 14px;
  font-size: 1rem;
}

/* ---------- Utility ---------- */
.bkgp-center { text-align: center; }
.bkgp-mt-0 { margin-top: 0; }
.bkgp-text-stone { color: var(--bkgp-stone); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .bkgp-hero .bkgp-wrap { grid-template-columns: 1fr; }
  .bkgp-split { grid-template-columns: 1fr; }
  .bkgp-split.bkgp-split-reverse .bkgp-split-media { order: -1; }
  .bkgp-grid { grid-template-columns: repeat(2, 1fr); }
  .bkgp-steps { grid-template-columns: repeat(3, 1fr); }
  .bkgp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bkgp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .bkgp-topbar { display: none; }
  .bkgp-nav-toggle { display: inline-flex; }
  .bkgp-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bkgp-white);
    border-bottom: 1px solid var(--bkgp-line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 18px;
    display: none;
  }
  .bkgp-nav.is-open { display: flex; }
  .bkgp-nav-link { padding: 12px 0; border-bottom: 1px solid var(--bkgp-line); }
  .bkgp-has-dropdown .bkgp-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 12px;
  }
  .bkgp-has-dropdown.is-open .bkgp-dropdown { display: block; }
  .bkgp-header-phone { display: none; }
  .bkgp-mobile-callbar { display: block; }
  body { padding-bottom: 52px; }
}

@media (max-width: 700px) {
  .bkgp-grid, .bkgp-grid-2, .bkgp-grid-4 { grid-template-columns: 1fr; }
  .bkgp-steps { grid-template-columns: 1fr 1fr; }
  .bkgp-trust-grid { grid-template-columns: 1fr; }
  .bkgp-footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .bkgp-footer-bottom { flex-direction: column; }
  .bkgp-footer-bottom a { margin: 0 16px 0 0; }
  .bkgp-section { padding: 52px 0; }
}
