/* K.O. Construction-Remodeling — koconstructionremodeling.com */

:root {
  --ink: #1b1e23;
  --ink-2: #2a2e35;
  --paper: #f7f5f1;
  --white: #ffffff;
  --accent: #b87333;      /* copper, from the logo */
  --accent-dark: #8f5827;
  --muted: #5c6470;
  --line: #e3ded6;
  --head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); line-height: 1.6; }
img { max-width: 100%; }
a { color: inherit; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-block; padding: 14px 26px; border-radius: 6px; border: 0;
  font-family: var(--head); font-size: 1.15rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background .15s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent-dark); color: #fff; }
.btn-accent:hover { background: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { border-color: var(--accent-dark); color: var(--accent-dark); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 2px 10px rgba(27,30,35,.06); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 10px 20px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 54px; width: auto; display: block; }
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink-2); }
.site-nav a:hover { color: var(--accent-dark); }
.header-cta { padding: 10px 18px; font-size: 1rem; }

/* Hero — light, built around the logo */
.hero {
  background: var(--paper); color: var(--ink); text-align: center; padding: 56px 0 72px;
  border-bottom: 4px solid var(--accent);
}
.hero-logo { width: min(420px, 78vw); height: auto; margin: 0 auto 18px; mix-blend-mode: multiply; }
.hero-kicker { font-family: var(--head); text-transform: uppercase; letter-spacing: .18em; color: var(--accent-dark); font-weight: 600; margin-bottom: 14px; }
.hero h1 { font-family: var(--head); font-size: clamp(2.3rem, 6vw, 3.6rem); line-height: 1.08; text-transform: uppercase; letter-spacing: .02em; }
.hero-sub { max-width: 640px; margin: 20px auto 30px; color: var(--muted); font-size: 1.08rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Trust strip — dark for contrast under the light hero */
.trust { background: var(--ink); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 22px 20px; text-align: center; }
.trust-item strong { display: block; font-family: var(--head); font-size: 1.35rem; text-transform: uppercase; letter-spacing: .03em; color: #fff; }
.trust-item span { font-size: .85rem; color: #9aa0aa; }

/* Sections */
.section { padding: 72px 0; }
.section-title { font-family: var(--head); font-size: clamp(1.9rem, 4vw, 2.6rem); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px; }
.section-title::after { content: ""; display: block; width: 64px; height: 4px; background: var(--accent); margin-top: 10px; }
.section-lead { color: var(--muted); max-width: 620px; margin-bottom: 36px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.svc { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: 8px; padding: 22px; }
.svc h3 { font-family: var(--head); font-size: 1.3rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 6px; }
.svc p { font-size: .93rem; color: var(--muted); }

/* About */
.section-dark { background: var(--ink); color: #e8eaee; }
.section-dark .section-title { color: #fff; }
.about-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: start; }
.about-text p { margin-bottom: 16px; color: #c9cdd4; }
.about-list { list-style: none; margin-top: 8px; }
.about-list li { padding-left: 26px; position: relative; margin-bottom: 8px; }
.about-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.about-card { background: var(--ink-2); border: 1px solid #3a3f48; border-radius: 10px; padding: 26px; }
.about-card h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: .05em; color: var(--accent); margin: 14px 0 6px; }
.about-card h3:first-child { margin-top: 0; }
.about-card p { color: #c9cdd4; font-size: .95rem; }
.about-card a { color: #fff; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 30px; }
.review { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 8px; padding: 22px; }
.review p { font-size: .95rem; margin-bottom: 12px; }
.review footer { font-family: var(--head); text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; color: var(--muted); }

/* Contact */
.section-contact { background: var(--white); border-top: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-text p { color: var(--muted); }
#estimate-form { display: grid; gap: 14px; }
#estimate-form label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; }
#estimate-form input, #estimate-form textarea {
  padding: 12px 14px; border: 1px solid #cfc9bf; border-radius: 6px; font: inherit; background: var(--paper);
}
#estimate-form input:focus, #estimate-form textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.hp-field { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }
.form-status { min-height: 1.4em; font-size: .92rem; }
.form-status.ok { color: #1b7a34; }
.form-status.err { color: #b3261e; }

/* Footer */
.site-footer { background: var(--ink); color: #c9cdd4; text-align: center; padding: 36px 0; }
.footer-inner p { margin-bottom: 6px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-fine { font-size: .82rem; color: #8a909a; margin-top: 10px; }

/* Mobile */
@media (max-width: 760px) {
  .site-nav { display: none; }
  .header-cta { margin-left: auto; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 62px; }
}
