/* ===========================================================
   GTA Chimney Sweep and Repair — palette drawn from the logo
   Gold gradient, brushed silver, charcoal black, red cap accent
   =========================================================== */
:root {
  --black: #121212;
  --charcoal: #1c1c1c;
  --charcoal-2: #242424;
  --charcoal-3: #2e2e2e;
  --gold: #d4af37;
  --gold-light: #f2d57e;
  --gold-deep: #b8902a;
  --silver: #d8d8d8;
  --silver-dim: #a9a9a9;
  --red: #c0392b;
  --cream: #f5f3ee;
  --text: #e9e7e2;
  --text-dim: #b7b4ad;
  --gold-grad: linear-gradient(135deg, #f2d57e 0%, #d4af37 45%, #b8902a 100%);
  --silver-grad: linear-gradient(135deg, #ffffff 0%, #d8d8d8 50%, #9a9a9a 100%);
  --maxw: 1140px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.15; letter-spacing: .5px; }

.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; font-size: 15px;
  padding: 13px 24px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn__icon { font-size: 1.1em; }
.btn--gold {
  background: var(--gold-grad); color: #1a1306;
  box-shadow: 0 6px 18px rgba(212,175,55,.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(212,175,55,.4); color: #1a1306; }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--silver-dim); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--charcoal-2);
  border-bottom: 1px solid rgba(212,175,55,.18);
  font-size: 13px;
}
.topbar__inner { display: flex; gap: 26px; justify-content: center; padding: 8px 0; flex-wrap: wrap; }
.topbar__item { color: var(--silver); letter-spacing: .3px; }
.topbar__item::first-letter { color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18,18,18,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 0; }
.header__logo img { height: 62px; width: auto; }
.nav { display: flex; gap: 26px; }
.nav a {
  color: var(--text); font-family: 'Oswald', sans-serif; font-weight: 500;
  text-transform: uppercase; font-size: 15px; letter-spacing: .5px;
}
.nav a:hover { color: var(--gold); }
.header__cta { font-size: 14px; padding: 10px 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(212,175,55,.12), transparent 60%),
    linear-gradient(180deg, #161616 0%, #101010 100%);
  border-bottom: 1px solid rgba(212,175,55,.12);
  text-align: center;
}
.hero__eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
  font-family: 'Oswald', sans-serif; font-size: 14px; margin-bottom: 18px;
}
.hero__title { font-size: clamp(34px, 6vw, 60px); font-weight: 700; margin-bottom: 22px; }
.hero__sub { max-width: 640px; margin: 0 auto 32px; color: var(--text-dim); font-size: 18px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.hero__points {
  list-style: none; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  color: var(--silver); font-size: 14px;
}
.hero__points li { position: relative; padding-left: 22px; }
.hero__points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section--dark { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.section__eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
  font-family: 'Oswald', sans-serif; font-size: 13px; text-align: center; margin-bottom: 12px;
}
.section__title { font-size: clamp(28px, 4vw, 40px); text-align: center; margin-bottom: 16px; color: var(--cream); }
.section__lead { text-align: center; max-width: 620px; margin: 0 auto 46px; color: var(--text-dim); font-size: 17px; }

/* ---------- Services grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.5); box-shadow: var(--shadow); }
.card__icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; border-radius: 12px; margin-bottom: 18px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.35);
}
.card h3 { color: var(--gold-light); font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 15px; }

/* ---------- Features ---------- */
.feature { padding: 8px 4px; }
.feature__num {
  font-family: 'Oswald', sans-serif; font-size: 34px; font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 8px;
}
.feature h3 { color: var(--silver); font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 15px; }

/* ---------- CTA strip ---------- */
.ctastrip {
  background:
    linear-gradient(90deg, rgba(212,175,55,.14), rgba(192,57,43,.12)),
    var(--charcoal-3);
  border-top: 1px solid rgba(212,175,55,.3);
  border-bottom: 1px solid rgba(212,175,55,.3);
  text-align: center; padding: 56px 0;
}
.ctastrip h2 { font-size: clamp(26px, 4vw, 36px); color: var(--cream); margin-bottom: 8px; }
.ctastrip p { color: var(--text-dim); margin-bottom: 26px; font-size: 17px; }

/* ---------- Areas ---------- */
.areas {
  list-style: none; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.areas li {
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 12px; text-align: center; font-size: 14px; color: var(--silver);
  transition: border-color .2s, color .2s;
}
.areas li:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact .section__eyebrow, .contact .section__title, .contact .section__lead { text-align: left; margin-left: 0; }
.contact__list { list-style: none; margin-top: 26px; }
.contact__list li { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.contact__label { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--gold); margin-bottom: 3px; }
.contact__list a, .contact__list span:not(.contact__label) { font-size: 18px; color: var(--cream); }

.form { background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 30px; }
.form__row { margin-bottom: 16px; }
.form__row label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--silver-dim); margin-bottom: 6px; font-family: 'Oswald', sans-serif; }
.form__row input, .form__row select, .form__row textarea {
  width: 100%; padding: 12px 14px; background: var(--black);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: var(--text); font-size: 15px;
  font-family: inherit;
}
.form__row input:focus, .form__row select:focus, .form__row textarea:focus { outline: none; border-color: var(--gold); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); border-top: 1px solid rgba(212,175,55,.18); padding-top: 50px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand img { height: 70px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--text-dim); font-size: 14px; max-width: 320px; }
.footer__col h4 { color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; font-size: 15px; margin-bottom: 14px; }
.footer__col p { margin-bottom: 8px; font-size: 15px; }
.footer__col a { color: var(--text); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.footer__bottom p { color: var(--silver-dim); font-size: 13px; text-align: center; }

/* ---------- Sticky mobile call button ---------- */
.callfab {
  display: none;
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 60; background: var(--gold-grad); color: #1a1306;
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 13px 30px; border-radius: 40px; box-shadow: 0 8px 22px rgba(0,0,0,.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 34px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .callfab { display: inline-block; }
  .grid, .grid--4 { grid-template-columns: 1fr; }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .topbar__inner { gap: 14px; font-size: 12px; }
  .hero { padding: 60px 0 60px; }
  body { padding-bottom: 70px; }
}
