:root {
  --orange: #E85D2A;
  --orange-dark: #C74A1D;
  --ink: #111111;
  --body: #555555;
  --band: #F4F4F4;
  --radius: 8px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 0.6em; }
h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4em; }
h1 em { font-style: normal; color: var(--orange); }

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

.kicker {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.8em;
}
.lede { font-size: 1.1rem; max-width: 46ch; }

/* Nav */
.nav { position: sticky; top: 0; background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); border-bottom: 1px solid #eee; z-index: 10; }
.nav-row { display: flex; justify-content: space-between; align-items: center; height: 60px; }
.wordmark { font-size: 1.05rem; font-weight: 800; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.wordmark span { color: var(--orange); }
.wordmark-lg { font-size: 1.3rem; margin-bottom: 0.5em; }
.pill {
  font-size: 0.78rem; font-weight: 700; color: var(--ink); text-decoration: none;
  border: 2px solid var(--ink); border-radius: 999px; padding: 7px 14px;
  transition: background 0.15s, color 0.15s;
}
.pill:hover, .pill:focus-visible { background: var(--ink); color: #fff; }

/* Buttons */
.btn {
  display: inline-block; background: var(--orange); color: #fff;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  padding: 14px 26px; border-radius: var(--radius);
  transition: background 0.15s, transform 0.15s;
}
.btn:hover, .btn:focus-visible { background: var(--orange-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; color: var(--ink); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; padding: 14px 4px;
  border-bottom: 2px solid var(--orange);
}
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--orange); }

/* Hero */
.hero { padding: 56px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; padding-bottom: 56px; }
.hero-copy .lede { margin: 1.1em 0 1.6em; }
.cta-row { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img { border-radius: 12px; box-shadow: 0 20px 50px rgba(17,17,17,0.18); }
.hero-badge {
  position: absolute; bottom: -16px; left: -12px;
  background: var(--ink); color: #ddd; font-size: 0.78rem; line-height: 1.35;
  padding: 12px 18px; border-radius: var(--radius);
}
.hero-badge strong { display: block; color: #fff; font-size: 0.95rem; }
.trust-strip { background: var(--band); padding: 14px 0; }
.trust-items { display: flex; gap: 8px 28px; flex-wrap: wrap; font-size: 0.85rem; font-weight: 600; color: #444; }

/* BBB badge */
.bbb-badge { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; }
.bbb-mark {
  background: #00548B; color: #fff; font-weight: 800; font-size: 1.15rem;
  letter-spacing: 0.02em; padding: 12px 14px; border-radius: 6px; line-height: 1;
}
.bbb-mark sup { font-size: 0.5em; }
.bbb-text { font-size: 0.78rem; line-height: 1.35; color: var(--body); }
.bbb-text strong { display: block; color: var(--ink); font-size: 0.9rem; }

/* Services */
.services { padding: 72px 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.card {
  background: var(--band); border-radius: 12px; padding: 26px 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(17,17,17,0.10); }
.card p { font-size: 0.92rem; }
.card-feature { grid-row: span 2; background: #fff; border: 2px solid var(--orange); padding: 0 0 26px; overflow: hidden; }
.card-feature .carousel { margin-bottom: 20px; }

/* Carousel */
.carousel { position: relative; }
.carousel-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track img { width: 100%; flex-shrink: 0; scroll-snap-align: start; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(17,17,17,0.55); color: #fff; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.carousel-btn:hover, .carousel-btn:focus-visible { background: var(--orange); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.card-feature h3, .card-feature p { padding: 0 24px; }
.card-feature strong { color: var(--orange); }

/* Process */
.process { background: var(--band); padding: 72px 0; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; counter-reset: step; }
.steps li { background: #fff; border-radius: 12px; padding: 26px 24px; position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 0.95rem;
  margin-bottom: 14px;
}
.steps p { font-size: 0.9rem; }

/* About */
.about { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.about p { max-width: 54ch; margin-bottom: 1.1em; }
.about img { border-radius: 12px; }
.quote { font-size: 1.15rem; font-weight: 600; color: var(--ink); border-left: 4px solid var(--orange); padding-left: 18px; margin-top: 1.6em; }
.quote-attr { font-size: 0.85rem; color: #888; padding-left: 22px; }

/* Estimate form */
.estimate { padding: 72px 0; background: var(--band); }
.estimate-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.estimate p a { color: var(--orange); font-weight: 700; text-decoration: none; }
.assure { list-style: none; margin-top: 1.4em; }
.assure li { font-size: 0.92rem; font-weight: 600; color: #444; padding: 6px 0; }
.form { background: #fff; border-radius: 12px; padding: 30px 28px; box-shadow: 0 12px 34px rgba(17,17,17,0.08); }
.form label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.form input, .form select, .form textarea {
  display: block; width: 100%; margin-top: 6px;
  font: inherit; font-size: 0.95rem; color: var(--ink);
  border: 1.5px solid #ddd; border-radius: var(--radius);
  padding: 11px 12px; background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--orange);
}
.form textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { border: 0; width: 100%; cursor: pointer; font: inherit; font-weight: 700; }

/* Why */
.why { background: var(--ink); padding: 72px 0; }
.why h2, .why .btn-ghost { color: #fff; }
.why p { color: #b9b9b9; max-width: 52ch; margin-bottom: 1.6em; }
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.stats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stats li { background: #1d1d1d; border-radius: 12px; padding: 22px 20px; font-size: 0.82rem; color: #b9b9b9; line-height: 1.4; }
.stats strong { display: block; font-size: 2.1rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; }

/* Trusted */
.trusted { padding: 72px 0; }
.trusted .lede { margin-bottom: 2em; }
.client-grid {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px;
}
.client-grid li {
  border: 1px solid #e4e4e4; border-radius: var(--radius);
  padding: 16px 18px; font-size: 0.9rem; font-weight: 600; color: var(--ink);
}

/* Area */
.area { background: var(--band); padding: 72px 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.area img { border-radius: 12px; }
.area p { margin-bottom: 1.6em; max-width: 40ch; }

/* Footer */
.footer { background: var(--ink); padding: 56px 0; }
.footer .wordmark span { color: var(--orange); }
.footer .wordmark { color: #fff; }
.footer p { color: #b9b9b9; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid #2a2a2a; font-size: 0.95rem; }
.contact-list span { color: #888; width: 52px; flex-shrink: 0; }
.contact-list a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-list a:hover, .contact-list a:focus-visible { color: var(--orange); }

/* Mobile */
@media (max-width: 820px) {
  .hero { padding-top: 36px; }
  .hero-grid, .why-grid, .area-grid, .footer-grid, .about-grid, .estimate-grid { grid-template-columns: 1fr; gap: 36px; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .about img { order: -1; }
  .card-feature { grid-row: auto; }
  .hero-badge { left: 12px; bottom: -14px; }
  .area img { order: 2; }
  .services, .why, .trusted, .area { padding: 56px 0; }
}

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