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

:root {
  --green-dark:  #1a4a2e;
  --green-mid:   #2d6a45;
  --green-btn:   #1e5c38;
  --gold:        #c8952a;
  --gold-btn:    #d4a032;
  --white:       #ffffff;
  --off-white:   #f5f5f2;
  --gray-light:  #e8e8e4;
  --gray-mid:    #6b6b6b;
  --text-dark:   #1a1a1a;
  --footer-bg:   #2a2a2a;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

/* ── TOP BAR ─────────────────────────────────── */
.top {
  background: var(--green-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
}
.top-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.top-logo span { font-weight: 700; }
.top-phone {
  background: var(--white);
  color: var(--green-dark);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 6px 18px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

/* ── SPLASH ────────────────────────────────────── */
.splash {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.splash-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('../images/handyman.png');
  background-size: cover;
  background-position: center 30%;
}
/* Subtle flag-tint overlay for patriotic feel */
.splash-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}
.splash-content {
  position: relative;
  z-index: 1;
  padding: 60px 40px 60px 48px;
  max-width: 560px;
}
.splash-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 14px;
}

.splash-content .tagline {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.splash-cta {
  display: inline-block;
  background: var(--green-btn);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
}
.splash-cta:hover { background: #164d2d; }
.tags {
  font-family: 'Oswald', sans-serif;
  margin-top: 18px;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em;
  text-shadow: 0 5px 4px rgba(0,0,0,0.5);
}
.tags span { margin: 0 6px; }

/* ── MAIN CONTENT GRID ───────────────────────── */
.left-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--off-white);
}

/* ── SERVICES PANEL ──────────────────────────── */
.services-panel {
  padding: 48px 44px 36px 48px;
  background: var(--white);
}
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--green-mid);
  display: inline-block;
}
.check-list {
  list-style: none;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-light);
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; }
.services-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: 6px;
}

/* ── WHY PANEL ───────────────────────────────── */
.why-panel {
  padding: 36px 44px 36px 48px;
  background: var(--off-white);
}

/* ── BIO PANEL ───────────────────────────────── */
.bio-panel {
  padding: 40px 48px 36px 44px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bio-photo {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.bio-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.bio-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}

/* ── QUOTE CTA BOX ───────────────────────────── */
.quote-box {
  background: var(--green-dark);
  padding: 36px 40px;
  text-align: center;
  border-radius: 4px;
  margin: 0 44px 40px 44px;
}
.quote-box .qb-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.quote-box .qb-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.quote-box .qb-email {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  display: block;
}
.quote-box .qb-btn {
  display: inline-block;
  background: var(--gold-btn);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.quote-box .qb-btn:hover { background: #b8821e; }

/* ── RIGHT COLUMN WRAPPER ────────────────────── */
.right-col {
  display: flex;
  flex-direction: column;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.85);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
footer .ft-divider { color: rgba(255,255,255,0.35); }
footer strong { font-weight: 700; color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 760px) {
  .topbar { padding: 10px 16px; }
  .hero-content { padding: 48px 20px; }
  .main-grid { grid-template-columns: 1fr; }
  .services-panel, .why-panel { padding: 32px 20px; }
  .bio-panel { padding: 32px 20px; }
  .quote-box { margin: 0 20px 32px; }
  footer { font-size: 0.85rem; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
