/* Champion Chimney Care — styles */

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

:root {
  --black: #0f0f0f;
  --grey-dark: #1a1a1a;
  --grey-mid: #2a2a2a;
  --grey-light: #f5f5f5;
  --white: #ffffff;
  --text-muted: #888;
  --text-subtle: #555;
  --border: #333;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body { font-family: "Inter", system-ui, -apple-system, sans-serif; background: #fff; color: #111; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* NAV */
nav {
  background: var(--black);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  width: 42px; height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
}
.nav-logo-text { color: #fff; font-size: 15px; font-weight: 600; line-height: 1.25; }
.nav-logo-text span { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #ccc; font-size: 13px; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta { display: none; }
.nav-cta {
  background: #fff;
  color: #111;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.nav-right { display: flex; align-items: center; gap: 16px; }

/* HAMBURGER */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero-wrap { background: var(--black); }
.hero {
  background: var(--black);
  padding: 80px 40px 90px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-logo img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  flex-shrink: 0;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ccc;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero h1 span { color: var(--text-muted); }
.hero-tagline { color: #666; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.hero-desc { color: #aaa; font-size: 15px; line-height: 1.75; margin-bottom: 30px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; }
.btn-primary {
  background: #fff;
  color: #111;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #444;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--grey-dark);
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.trust-item { color: #aaa; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.trust-item svg { color: #fff; }

/* SECTIONS */
.section { padding: 72px 40px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.section h2 { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.section-sub { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.service-card {
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.service-icon {
  width: 44px; height: 44px;
  background: var(--black);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { color: #fff; }
.service-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* OFFERS */
.offers-section { background: var(--grey-light); padding: 72px 40px; }
.offers-inner { max-width: 1100px; margin: 0 auto; }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.offer-card {
  background: #fff;
  border: 2px dashed #ddd;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.offer-icon { font-size: 32px; flex-shrink: 0; }
.offer-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.offer-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.why-card svg { color: #fff; margin-bottom: 12px; }
.why-card h3 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.why-card p { color: #777; font-size: 12px; line-height: 1.6; }

/* WHAT TO EXPECT (3-step process) */
.steps-section { padding: 72px 40px; max-width: 1100px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step-card { position: relative; border: 1px solid #e5e5e5; border-radius: var(--radius); padding: 30px 24px; text-align: center; }
.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: #666; line-height: 1.6; }
.step-arrow {
  display: none;
  position: absolute;
  top: 18px;
  right: -20px;
  color: #ccc;
  font-size: 20px;
}

/* TESTIMONIALS */
.testimonials-section { background: var(--grey-light); padding: 72px 40px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 26px 24px;
}
.testimonial-stars { color: #111; font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-quote { font-size: 14px; color: #333; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: #111; }
.testimonial-location { font-size: 12px; color: #888; }

/* CONTACT */
.contact-section { background: var(--grey-light); padding: 72px 40px; }
.contact-inner { max-width: 1100px; margin: 0 auto; }

/* Contact form */
.contact-form-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.contact-form-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.contact-form-card .form-sub { font-size: 13px; color: #666; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 12px; font-weight: 500; color: #333; }
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #111;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #111;
}
.form-status { font-size: 13px; margin-top: 12px; min-height: 18px; }
.form-status.success { color: #111; font-weight: 500; }
.form-status.error { color: #111; font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card.dark { background: var(--black); border-color: transparent; }
.contact-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: 4px; }
.phone-number { font-size: 28px; font-weight: 600; color: #fff; margin: 6px 0 8px; }
.contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; color: #555; }
.contact-row svg { flex-shrink: 0; }

/* FOOTER */
footer {
  background: var(--black);
  padding: 36px 40px;
  text-align: center;
  border-top: 1px solid #222;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 2px;
}
.footer-logo span { color: #aaa; font-size: 14px; font-weight: 500; }
footer p { color: #555; font-size: 12px; margin-top: 6px; }

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 16px;
    border-top: 1px solid #222;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid #222; font-size: 14px; }
  .nav-links .nav-cta { display: inline-block; margin-top: 12px; border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-right .nav-cta { display: none; }

  .hero { flex-direction: column; padding: 48px 20px; gap: 32px; text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-logo img { width: 140px; height: 140px; }
  .section { padding: 48px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .offers-section, .contact-section, .testimonials-section, .steps-section { padding: 48px 20px; }
  .trust-strip { gap: 24px; padding: 16px 20px; }
}
