/* =====================================================================
   QuickChimney — core design system (adapted from the proven CR system)
   Palette: signal red · deep steel navy · crisp paper · amber accent
   Type: Archivo (display) + Hanken Grotesk (body/UI)
   ===================================================================== */

:root {
  /* QuickChimney national palette — bold, fast, trustworthy */
  --brick: #c1271d;          /* signal red — energetic, fast, confident */
  --brick-dark: #911710;
  --brick-soft: #d9544a;
  --ink: #131416;            /* cool near-black — headlines only */
  --charcoal: #131416;
  --slate: #2b2d31;          /* body text */
  --muted: #62656b;
  --gold: #e8a020;           /* amber — METALLIC on dark grounds only */
  --gold-dark: #9a6a10;      /* accessible amber-tone for text on light grounds */
  --navy: #16222e;           /* deep steel navy — dark anchor (bands/footer/topbar) */
  --navy-mid: #2a3d51;       /* usable lighter navy step (hovers/borders/icons) */
  --bg: #fbfbfa;             /* crisp paper base */
  --cream: #f1f1ee;          /* light cool section bg */
  --cream-deep: #e6e6e1;
  --card: #ffffff;
  --line: #e2e1dc;           /* cool hairline */
  --success: #2f6f4f;

  --radius: 3px;
  --radius-lg: 4px;
  --btn-radius: 0px;   /* fully square buttons & chips */
  --shadow-sm: 0 3px 10px rgba(26, 18, 10, 0.08);
  --shadow: 0 16px 38px rgba(26, 18, 10, 0.13);
  --shadow-brick: 0 14px 30px rgba(168, 50, 50, 0.22);
  --container: 1180px;

  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;  /* QuickChimney: no serif accents — sharp display face everywhere */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

a { color: var(--brick); text-decoration: none; }
a:hover { color: var(--brick-dark); }
img { max-width: 100%; display: block; height: auto; }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin: 0 auto; }

/* ── Clapboard texture on dark navy bands (New England siding) ───── */
.brick-bg {
  background-color: var(--navy);
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 17px);
}

/* ── Top bar ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
}
.topbar a { color: var(--gold); font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .gold-star { color: var(--gold); }

/* ── Placeholder flag (yellow note for missing contact details) ──── */
.placeholder-note {
  background: #fff6d6 !important;
  border: 1px solid #e7c200;
  color: #6b5800 !important;   /* beat .hero p / .footer p white text on dark sections */
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--btn-radius);
  display: inline-block;
  line-height: 1.35;
}
.placeholder-note a { color: #6b5800 !important; text-decoration: underline; }

/* ── Header / nav ────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.brand:hover { color: inherit; }
.brand img { width: 62px; height: 62px; border-radius: 50%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-copy span { color: var(--brick); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }

.nav-right { display: none; align-items: center; gap: 0.5rem; }
.phone-btn { display: none; }
@media (min-width: 981px) {
  .nav-right { display: none !important; }
  .topbar-inner > div:last-child { display: block; }
}
.nav-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--btn-radius);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: inherit;
}
.nav-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-links > a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.nav-links > a:not(.button)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--brick);
  transition: width 0.22s ease;
}
.nav-links > a:not(.button):hover::after { width: 100%; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.button, button, input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brick);
  color: #fff;
  border: none;
  padding: 0.92rem 1.5rem;
  border-radius: var(--btn-radius);
  font-weight: 800;
  font-size: 0.92rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: var(--shadow-brick);
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.button:hover, button:hover, input[type='submit']:hover {
  background: var(--brick-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(168, 50, 50, 0.3);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.button.secondary:hover { background: #fff; border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
/* Secondary button on dark hero — keep text visible */
.hero .button.secondary { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero .button.secondary:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.75); }
.button.gold { background: var(--gold); color: var(--ink); box-shadow: 0 14px 30px rgba(200,168,90,0.3); }
.button.gold:hover { background: var(--gold-dark); color: var(--ink); }
.button.lg { padding: 1.05rem 1.7rem; font-size: 1rem; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(20,18,16,0.92) 28%, rgba(20,18,16,0.55) 55%, rgba(20,18,16,0.15) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0;
}
.hero h1 {
  margin: 0 0 1.1rem;
  color: #fff;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.hero h1 .accent { color: var(--gold); }
.hero p {
  font-size: 1.12rem;
  max-width: 56ch;
  color: rgba(255,255,255,0.9);
}
.page-hero h1 { color: #fff; margin: 0 0 0.8rem; font-size: clamp(2.1rem, 4.4vw, 3.4rem); }

.hero-card {
  background: rgba(255,255,255,0.98);
  color: var(--slate);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}
.hero-card h2 { font-size: 1.5rem; margin: 0 0 0.6rem; }
.hero-card p { color: var(--muted); font-size: 0.98rem; }

/* ── Light editorial hero (homepage) ─────────────────────────────── */
.hero-lite {
  background:
    radial-gradient(1200px 500px at 85% 20%, rgba(200,168,90,0.12), transparent 60%),
    var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-lite-inner {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center;
  padding: 3.5rem 0 3.8rem;
}
.hero-lite h1 {
  font-size: clamp(2.5rem, 5vw, 4.1rem); color: var(--ink); margin: 0.8rem 0 1.1rem; font-weight: 600;
}
.hero-lite h1 .accent { color: var(--brick); font-style: italic; }
.hero-lite p { font-size: 1.12rem; color: var(--slate); max-width: 52ch; margin: 0 0 1.4rem; }
.hero-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff;
}
.hero-figure::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--brick), var(--gold)); z-index: 2; }
.hero-figure img { width: 100%; display: block; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
@media (max-width: 980px) {
  .hero-lite-inner { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.2rem 0 2.6rem; }
  .hero-lite .hero-figure { order: -1; }
}

/* ── Hero zip-quote (conversion pattern from top chimney sites) ───── */
.zip-quote { display: flex; gap: 0.5rem; margin: 0.4rem 0 0.9rem; }
.zip-quote input {
  flex: 1; min-width: 0; padding: 0.85rem 1rem; border-radius: var(--btn-radius);
  border: 1.5px solid var(--line); font: inherit; font-weight: 600; letter-spacing: 0.04em;
}

/* ── Service selector — "What do you need?" (fast-service entry) ──── */
.need-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 0.4rem; }
.need-chips .nc-label { font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: rgba(255,255,255,0.7); align-self: center; margin-right: 0.2rem; }
.need-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28); color: #fff;
  padding: 0.5rem 0.85rem; border-radius: var(--btn-radius); font-weight: 700; font-size: 0.88rem;
  transition: all 0.16s ease;
}
.need-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Compact horizontal "fast-service menu" tiles (thumbnail + label) */
.need-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 0.7rem; }
.need-tile {
  display: flex; align-items: stretch; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.need-tile img { width: 78px; min-height: 78px; object-fit: cover; display: block; flex-shrink: 0; }
.need-tile .nt-body { flex: 1; padding: 0.6rem 0.85rem; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; border-left: 3px solid var(--brick); }
.need-tile .nt-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; font-size: 0.98rem; color: var(--ink); line-height: 1.05; }
.need-tile .nt-sub { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.need-tile .nt-arrow { color: var(--brick); font-size: 1.2rem; font-weight: 800; flex-shrink: 0; transition: transform 0.15s ease; }
.need-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brick); }
.need-tile:hover .nt-arrow { transform: translateX(3px); }
.need-tile.nt-cta { background: var(--brick); color: #fff; align-items: center; justify-content: center; text-align: center; padding: 0.9rem; }
.need-tile.nt-cta .nt-body { border-left: none; justify-content: center; }
.need-tile.nt-cta .nt-name { color: #fff; font-size: 1.05rem; }
.need-tile.nt-cta .nt-sub { color: rgba(255,255,255,0.88); }
.need-tile.nt-cta:hover { background: var(--brick-dark); border-color: var(--brick-dark); }
.zip-quote button { white-space: nowrap; padding: 0.85rem 1.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.35rem; }
.hero-trust b { color: var(--brick); }

/* Clean benefits list inside the hero quote card */
.hero-points { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.6rem; }
.hero-points li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; font-weight: 700; color: var(--slate); }
.hero-points li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0; border-radius: var(--btn-radius);
  background: var(--brick); color: #fff; font-size: 0.72rem; font-weight: 900;
}
.hero-points li b { color: var(--brick); font-weight: 800; }

/* ── Badges ──────────────────────────────────────────────────────── */
.badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; }
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 0.5rem 0.95rem;
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
  font-weight: 600;
}
.badge .b-ico { color: var(--gold); }

/* trust badges on light bg */
.trust-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #fff; border: 1px solid var(--line);
  padding: 0.5rem 0.95rem; border-radius: var(--btn-radius);
  font-weight: 700; font-size: 0.88rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.trust-pill .t-ico { color: var(--brick); font-size: 1rem; }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section.alt { background: var(--cream); }
.section.ink { background: var(--navy); color: rgba(255,255,255,0.86); }
.section.ink h2, .section.ink h3 { color: #fff; }
.section-header { margin-bottom: 2.5rem; max-width: 66ch; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  text-transform: uppercase;
  color: var(--brick);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.kicker::before { content: ''; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); display: inline-block; }

/* ── Heritage serif eyebrow + New England trade-sign seal ────────── */
.ne-eyebrow {
  font-family: var(--font-display); font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem;
  color: var(--gold-dark); font-size: 1.08rem; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 0.5rem;
}
.ne-eyebrow::before, .ne-eyebrow::after { content: ''; width: 26px; height: 1px; background: var(--gold); opacity: 0.7; }
.hero .ne-eyebrow, .page-hero .ne-eyebrow { color: var(--gold); }
.ne-seal {
  display: flex; align-items: center; gap: 0.9rem; text-align: left;
  background: var(--navy); color: #fff;
  border: 1px solid rgba(200,168,90,0.55); box-shadow: inset 0 0 0 4px var(--navy), inset 0 0 0 5px rgba(200,168,90,0.35);
  padding: 0.9rem 1.1rem;
}
.ne-seal img { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; }
.ne-seal .seal-name { font-family: var(--font-serif); font-weight: 600; font-size: 1.02rem; line-height: 1.15; }
.ne-seal .seal-sub { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-top: 2px; }
.section-header.center .kicker { justify-content: center; }
h2.display { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 0.6rem 0 0.8rem; }

/* ── Grid ────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* ── Cards ───────────────────────────────────────────────────────── */
.feature-card, .service-card, .project-card, .info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.service-card .sc-img { aspect-ratio: 16/11; object-fit: cover; width: 100%; background: var(--cream); }
.service-card .sc-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-card:hover, .project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold); }
.feature-card h3, .service-card h3, .project-card h3, .info-card h3 { margin: 0 0 0.6rem; font-size: 1.3rem; }
.service-card p { color: var(--muted); margin: 0 0 1rem; flex: 1; }
.service-card .sc-link { font-weight: 700; color: var(--brick); display: inline-flex; align-items: center; gap: 0.35rem; }
.service-card .sc-link::after { content: '→'; transition: transform 0.18s ease; }
.service-card:hover .sc-link::after { transform: translateX(4px); }

.feature-card .fc-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(168,50,50,0.1); color: var(--brick);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}

/* numbered process steps */
.step-card { position: relative; padding-top: 2.4rem; }
.step-num {
  position: absolute; top: -18px; left: 1.4rem;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brick); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brick);
}

/* ── Stats ───────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.9rem; margin-top: 1.2rem; }
.stat { border: 1px solid var(--line); border-radius: 14px; padding: 1rem; background: var(--cream); text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--brick); }
.stat span { font-size: 0.82rem; color: var(--muted); }

/* ── Page hero / breadcrumbs ─────────────────────────────────────── */
.page-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero .hero-bg { opacity: 0.5; }
.page-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(100deg, rgba(20,18,16,0.94), rgba(20,18,16,0.6)); z-index:1; }
.page-hero-inner { position: relative; z-index: 2; padding: 3.6rem 0 3rem; }
.breadcrumbs { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 60ch; }

/* ── Content / split ─────────────────────────────────────────────── */
.page-content { padding: 4.5rem 0; }
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin: 2rem 0 0.8rem; }
.prose h3 { font-size: 1.35rem; margin: 1.6rem 0 0.6rem; }
.prose p, .prose li { color: var(--slate); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.split { display: grid; grid-template-columns: 1.3fr 0.85fr; gap: 2rem; align-items: start; }

.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow); border-top: 5px solid var(--brick);
}
.contact-card h2 { font-size: 1.5rem; margin-top: 0; }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist li::before {
  content: '✓'; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(168,50,50,0.12); color: var(--brick);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; margin-top: 2px;
}

/* ── CTA band ────────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--brick) 0%, var(--brick-dark) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 2.6rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 1.5rem;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; margin: 0 0 0.4rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.9); }
.cta-band .cta-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cta-band .button { background: #fff; color: var(--brick); box-shadow: 0 12px 26px rgba(0,0,0,0.18); }
.cta-band .button:hover { background: var(--cream); color: var(--brick-dark); }
.cta-band .button.secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .button.secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── Forms ───────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; font-size: 0.92rem; }
input, textarea, select {
  width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--line); font: inherit; color: var(--slate); background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(168,50,50,0.12);
}
textarea { min-height: 140px; resize: vertical; }
.full { grid-column: 1 / -1; }
.notice { font-size: 0.92rem; color: var(--muted); }

/* Booking embed slot (ready to connect a scheduler) */
.booking-embed {
  border: 2px dashed var(--brick); border-radius: var(--radius);
  background: rgba(156,40,32,0.05); padding: 1.4rem; text-align: center;
}
.booking-embed strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; color: var(--brick); margin-bottom: 0.35rem; }
.booking-embed p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ── FAQ accordion ───────────────────────────────────────────────── */
.faq details {
  border: 1px solid var(--line); border-radius: 14px; margin-bottom: 0.7rem;
  overflow: hidden; background: #fff; transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--brick); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; padding: 1.1rem 1.3rem; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--brick); font-size: 1.5rem; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.1rem; margin: 0; color: var(--muted); }

/* "Full service list" — professional category directory */
.svc-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 980px) { .svc-directory { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-directory { grid-template-columns: 1fr; } }
.svc-cat {
  background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--brick);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
}
.svc-cat-head {
  display: flex; align-items: center; gap: 0.6rem; margin: 0 0 0.85rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em;
  font-size: 1rem; color: var(--ink);
}
.svc-cat-head svg { width: 24px; height: 24px; color: var(--brick); flex-shrink: 0; }
.svc-cat-list { list-style: none; padding: 0; margin: 0; }
.svc-cat-list li + li { border-top: 1px solid var(--line); }
.svc-cat-list a { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.5rem 0; color: var(--slate); font-weight: 600; font-size: 0.93rem; }
.svc-cat-list a::after { content: '→'; color: var(--brick); opacity: 0; transform: translateX(-4px); transition: all 0.15s ease; }
.svc-cat-list a:hover { color: var(--brick); }
.svc-cat-list a:hover::after { opacity: 1; transform: translateX(0); }

/* ── Reviews (sample/placeholder) ────────────────────────────────── */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow-sm); position: relative; }
.review-card .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; }
.review-card .quote { color: var(--slate); font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; margin: 0.6rem 0 0.9rem; }
.review-card .who { font-weight: 700; color: var(--ink); font-size: 0.9rem; }
.review-card .sample-tag {
  position: absolute; top: 0.9rem; right: 0.9rem;
  background: #fff6d6; border: 1px solid #e7c200; color: #6b5800;
  font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem; border-radius: var(--btn-radius);
}

/* ── Area chips ──────────────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.7rem; }
.area-chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--btn-radius);
  padding: 0.75rem 1rem; font-weight: 700; color: var(--ink);
  transition: all 0.18s ease; display: flex; align-items: center; gap: 0.5rem;
}
.area-chip::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brick); flex-shrink: 0; }
.area-chip:hover { border-color: var(--brick); color: var(--brick); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.state-tag { font-size: 0.7rem; color: var(--muted); font-weight: 600; }

/* ── Comparison table (vs / comparison pages) ────────────────────── */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.cmp-table th, .cmp-table td { padding: 0.85rem 1rem; text-align: center; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.cmp-table thead th { background: var(--ink); color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.86rem; vertical-align: bottom; }
.cmp-table thead th.ours { background: var(--brick); }
.cmp-table tbody th { text-align: left; font-weight: 700; color: var(--ink); background: var(--cream); position: sticky; left: 0; }
.cmp-table td.ours { background: rgba(156,40,32,0.06); font-weight: 700; }
.cmp-table tbody tr:last-child td, .cmp-table tbody tr:last-child th { border-bottom: none; }
.cmp-yes { color: var(--success); font-weight: 800; }
.cmp-no { color: #b9b1a5; font-weight: 700; }
.cmp-note { color: var(--muted); font-size: 0.86rem; }
.cmp-col-tag { display: block; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: none; letter-spacing: 0; margin-top: 2px; }

/* ── A–Z location index (state hub pages) ────────────────────────── */
.az-nav {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 1.6rem 0 0.5rem;
  position: sticky; top: 64px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  padding: 0.6rem; border-radius: 10px; border: 1px solid var(--line); z-index: 10;
}
.az-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; height: 30px; padding: 0 6px; border-radius: var(--btn-radius);
  background: var(--cream); color: var(--ink); font-weight: 800; font-size: 0.85rem;
}
.az-link:hover { background: var(--brick); color: #fff; }
.az-group { margin-top: 2rem; scroll-margin-top: 120px; }
.az-head {
  font-size: 1.5rem; color: var(--brick); border-bottom: 2px solid var(--line);
  padding-bottom: 0.3rem; margin: 0 0 1rem;
}
iframe[title^="Service area map"] { box-shadow: var(--shadow-sm); }

/* ── Warning-signs / symptom cards ───────────────────────────────── */
.signs-list { display: grid; gap: 1rem; }
.sign-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brick);
  border-radius: var(--radius); padding: 1.2rem 1.35rem; box-shadow: var(--shadow-sm);
}
.sign-card h3 { margin: 0 0 0.6rem; font-size: 1.18rem; display: flex; justify-content: space-between; align-items: center; gap: 0.7rem; }
.sign-card .sign-row { margin: 0.3rem 0; color: var(--slate); font-size: 0.95rem; }
.sign-card .sign-row b { color: var(--ink); }
.urgency { font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.22rem 0.55rem; border-radius: var(--btn-radius); white-space: nowrap; flex-shrink: 0; }
.urgency.monitor { background: #e9f2ec; color: #2f6f4f; }
.urgency.soon { background: #fff6d6; color: #6b5800; }
.urgency.now { background: rgba(192,36,26,0.12); color: var(--brick); }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 3.5rem 0 2rem; margin-top: 0; }
.footer h3, .footer h4, .footer strong { color: #fff; font-family: var(--font-display); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 2rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.footer-brand-row img { width: 54px; height: 54px; border-radius: 50%; }
.footer a { color: rgba(255,255,255,0.82); }
.footer a:hover { color: var(--gold); }
.footer .small a { display: inline-block; }
.footer-links a { display: block; padding: 0.18rem 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); margin-top: 2rem; padding-top: 1.3rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.86rem;
}
.small { font-size: 0.9rem; }
.gold-text { color: var(--gold); }

/* ── Reveal-on-load stagger ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); animation: revealUp 0.7s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes revealUp { to { opacity: 1; transform: none; } }
.d1 { animation-delay: 0.05s; } .d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; } .d4 { animation-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner, .split, .footer-grid, .grid-3, .grid-4, .grid-2, .stats, .area-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner { min-height: auto; padding: 2.8rem 0; }
  .hero::after { background: linear-gradient(180deg, rgba(20,18,16,0.86), rgba(20,18,16,0.7)); }
  .section { padding: 3.2rem 0; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .cta-band { padding: 1.8rem; }

  .nav-right { display: flex; align-items: center; gap: 0.5rem; }
  .phone-btn {
    display: inline-flex; align-items: center; background: var(--brick); color: #fff;
    padding: 0.5rem 0.85rem; border-radius: var(--btn-radius); font-weight: 700; font-size: 0.8rem; white-space: nowrap;
  }
  .phone-btn:hover { background: var(--brick-dark); color: #fff; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 0.75rem; right: 0.75rem; top: calc(100% + 0.5rem);
    background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 0.75rem;
    box-shadow: var(--shadow); flex-direction: column; align-items: stretch; z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 0.7rem 0.9rem; border-radius: 10px; }
  .nav-links > a:not(.button)::after { display: none; }
  .nav-links > a:hover { background: var(--cream); }
  .nav-links a.button { text-align: center; margin-top: 0.3rem; }
  .topbar-inner { justify-content: center; gap: 1rem; }
}
@media (max-width: 600px) {
  .brand-copy span { display: none; }
  .brand img { width: 50px; height: 50px; }
  .brand-copy strong { font-size: 1rem; }
  .topbar { font-size: 0.74rem; }
  .topbar-text { display: none; }
  .topbar-inner { justify-content: center; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .stats { grid-template-columns: 1fr; }
  .section { padding: 2.6rem 0; }
}

@media print {
  .topbar, .nav-toggle, .cw-fab, .cw-panel, .cw-backdrop { display: none !important; }
}

/* ═══ Added (v14): sweep process, fire-safety band, benefits, footer social, form consent ═══ */

/* 5-step sweep process — reuses .feature-card.step-card on a 5-up grid */
.grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }

/* Fire-safety band (sits inside .section.ink.brick-bg) */
.safety { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.6rem; align-items: center; }
.safety-figure {
  font-family: var(--font-display); font-weight: 900; letter-spacing: -0.03em;
  font-size: clamp(3.4rem, 8vw, 5.6rem); line-height: 0.9; color: var(--gold);
}
.safety-figure span {
  display: block; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.72); margin-top: 0.7rem; line-height: 1.3;
}
.safety-cite { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0.6rem 0 0; }
.safety-points { display: grid; gap: 1.1rem; }
.safety-points .sp { display: flex; gap: 0.95rem; align-items: flex-start; }
.safety-points .sp svg { flex-shrink: 0; color: var(--gold); width: 28px; height: 28px; margin-top: 2px; }
.safety-points .sp h3 { color: #fff; margin: 0 0 0.2rem; font-size: 1.12rem; }
.safety-points .sp p { margin: 0; color: rgba(255,255,255,0.82); font-size: 0.95rem; }

/* Benefits cards — reuse .feature-card + a brick icon disc */
.benefit-ico {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: rgba(168,50,50,0.09); color: var(--brick);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.05rem;
}
.benefit-ico svg { width: 25px; height: 25px; }

/* Footer social icons */
.footer-social-label { font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); margin: 1.1rem 0 0.55rem; }
.footer-social { display: flex; gap: 0.55rem; }
.footer-social a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.22); border-radius: var(--btn-radius);
  color: rgba(255,255,255,0.8); transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; display: block; }

/* Form consent (SMS) + spam honeypot */
.consent { display: flex; gap: 0.6rem; align-items: flex-start; }
.consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--brick); }
.consent label { font-weight: 500; color: var(--muted); font-size: 0.82rem; line-height: 1.5; margin: 0; }
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .safety { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 600px) {
  .grid-5 { grid-template-columns: 1fr; }
}

/* ═══ QuickChimney v3: urgency band, mobile CTA bar, nav dropdown, state finder, rating strip ═══ */

/* Urgency band — red, impossible to miss */
.urgency-band { background: linear-gradient(100deg, var(--brick-dark), var(--brick)); color: #fff; padding: 1.4rem 0; }
.ub-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
.ub-text { display: flex; align-items: center; gap: 1rem; }
.ub-ico { width: 38px; height: 38px; color: var(--gold); flex-shrink: 0; }
.ub-text strong { display: block; font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.02em; }
.ub-text span { color: rgba(255,255,255,0.88); font-size: 0.95rem; }

/* Sticky mobile CTA bar */
.mobile-cta-bar { display: none; }
@media (max-width: 980px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.97); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(19,20,22,0.12);
  }
  .mobile-cta-bar .button { width: 100%; padding: 0.85rem 0.5rem; font-size: 0.88rem; }
  .mobile-cta-bar .button.secondary { background: #fff; }
  body { padding-bottom: 76px; }
}

/* Services dropdown (desktop hover) */
.nav-drop { position: relative; display: inline-flex; }
.nav-drop .drop {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 260px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 0.6rem 0; z-index: 120;
}
.nav-drop:hover .drop, .nav-drop:focus-within .drop { display: block; }
.nav-drop .drop a { display: block; padding: 0.45rem 1.1rem; font-size: 0.92rem; color: var(--slate); }
.nav-drop .drop a:hover { background: var(--cream); color: var(--brick); }
.nav-drop .drop .drop-all { border-top: 1px solid var(--line); margin-top: 0.4rem; padding-top: 0.7rem; font-weight: 700; color: var(--brick); }
@media (max-width: 980px) {
  .nav-drop { display: contents; }
  .nav-drop .drop { display: none !important; } /* mobile menu stays flat */
}

/* State finder */
.state-finder { margin: 1.6rem 0; }
.state-finder input {
  max-width: 460px; margin: 0 auto; display: block;
  padding: 0.95rem 1.2rem; font-size: 1rem; border: 2px solid var(--navy);
  border-radius: var(--btn-radius); background: #fff;
}
.state-finder input:focus { border-color: var(--brick); box-shadow: 0 0 0 3px rgba(193,39,29,0.12); }

/* Rating strip (ServPro-style trust banner) */
.rating-strip {
  background: var(--navy); color: #fff; padding: 1.5rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap;
}
.rating-strip .rs-left { display: flex; align-items: center; gap: 1.2rem; }
.rating-strip .stars { color: var(--gold); letter-spacing: 0.12em; }
.rating-strip .rs-copy strong { display: block; font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; }
.rating-strip .rs-copy span { color: rgba(255,255,255,0.82); font-size: 0.92rem; }

/* Hero stats (ServPro-style trust strip, dark variant) */
.hero-stats { margin-top: 1.4rem; max-width: 460px; }
.hero-stats .stat { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.hero-stats .stat strong { color: var(--gold); }
.hero-stats .stat span { color: rgba(255,255,255,0.78); }

/* Booking/contact form polish — labels and inputs stay consistent */
.form-grid label { font-family: var(--font-body); font-size: 0.88rem; letter-spacing: 0.01em; }
.form-grid input, .form-grid select, .form-grid textarea { font-family: var(--font-body); font-size: 0.97rem; border-radius: var(--radius); }
.form-grid select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232b2d31' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; }
.booking-embed strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.95rem; }
.booking-embed p { font-size: 0.92rem; margin: 0.4rem 0 0; }
.consent label { font-family: var(--font-body); }

/* Compact sidebar steps (booking page) — inline number, no overlap */
.mini-step { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.85rem 0.95rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.mini-step .ms-num { width: 32px; height: 32px; flex: none; background: var(--brick); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); }
.mini-step h3 { font-family: var(--font-display); font-size: 0.96rem; margin: 0 0 0.15rem; line-height: 1.2; }
.mini-step p { font-family: var(--font-body); font-size: 0.86rem; margin: 0; color: var(--muted); line-height: 1.45; }

/* Real contact info (v11) */
.phone-link { font-weight: 700; color: var(--brick); white-space: nowrap; }
.phone-link:hover { color: var(--brick-dark); text-decoration: underline; }
.phone-cta { margin: 0; font-family: var(--font-display); font-size: 1.15rem; }
.phone-cta .phone-link { color: var(--brick); }
.topbar-contact a { color: var(--gold); font-weight: 700; }
.topbar-contact a:hover { color: #fff; }
.hero-contact { color: rgba(255,255,255,0.92); font-size: 0.95rem; }
.hero-contact a { color: var(--gold); font-weight: 700; }
.phone-btn.call { background: var(--gold); color: var(--navy); }
.phone-btn.call:hover { background: var(--gold-dark); color: var(--navy); }
@media (max-width: 980px) { .mobile-cta-bar.mcb-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* Email shown alongside phone (v12) */
.email-cta { margin: .15rem 0 0; font-size: .92rem; }
.email-cta .phone-link { color: var(--brick); font-weight: 600; word-break: break-all; }
.footer .email-cta .phone-link { color: var(--gold); }

/* ═══ Promo popup + help chat (v13) ═══ */
.promo-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(19,20,22,0.6); display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.promo-backdrop[hidden] { display: none; }
.promo-card { background: #fff; max-width: 420px; width: 100%; border-radius: var(--radius); padding: 2.2rem 1.8rem 1.8rem; text-align: center; position: relative; box-shadow: var(--shadow); border-top: 6px solid var(--brick); animation: promoIn .35s cubic-bezier(.2,.7,.3,1); }
@keyframes promoIn { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
.promo-close { position: absolute; top: .6rem; right: .8rem; background: none; border: none; box-shadow: none; color: var(--muted); font-size: 1.6rem; line-height: 1; cursor: pointer; padding: .2rem .4rem; text-transform: none; }
.promo-close:hover { background: none; color: var(--ink); transform: none; }
.promo-badge { display: inline-block; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .7rem; margin-bottom: .9rem; }
.promo-price { font-family: var(--font-display); font-weight: 900; font-size: 3.6rem; line-height: 1; color: var(--brick); }
.promo-card h2 { font-size: 1.5rem; margin: .2rem 0 .6rem; text-transform: uppercase; letter-spacing: -.01em; }
.promo-card p { color: var(--slate); margin: 0 0 1.3rem; font-size: .98rem; }
.promo-card .button { width: 100%; }
.promo-dismiss { display: block; margin: .8rem auto 0; background: none; border: none; box-shadow: none; color: var(--muted); font-size: .85rem; text-transform: none; letter-spacing: 0; font-weight: 600; cursor: pointer; padding: .2rem; }
.promo-dismiss:hover { background: none; color: var(--ink); transform: none; text-decoration: underline; }

/* Chat FAB */
.qc-chat-fab { position: fixed; right: 18px; bottom: 20px; z-index: 95; background: var(--brick); color: #fff; border: none; border-radius: 50px; padding: .85rem 1.25rem; font-family: var(--font-display); font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .03em; cursor: pointer; box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: .5rem; transition: transform .18s ease, background .2s ease; }
.qc-chat-fab:hover { background: var(--brick-dark); transform: translateY(-2px); }
.qc-chat-fab svg { width: 20px; height: 20px; }
.qc-chat-fab.open { opacity: 0; pointer-events: none; }
@media (max-width: 980px) { .qc-chat-fab { bottom: 86px; right: 12px; padding: .7rem 1rem; } }

/* Chat panel */
.qc-chat { position: fixed; right: 18px; bottom: 20px; z-index: 96; width: min(360px, calc(100vw - 24px)); height: min(540px, calc(100vh - 100px)); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden; animation: promoIn .28s ease; }
.qc-chat[hidden] { display: none; }
@media (max-width: 980px) { .qc-chat { bottom: 80px; right: 8px; left: 8px; width: auto; height: min(70vh, 520px); } }
.qc-chat-head { background: var(--navy); color: #fff; padding: .9rem 1.1rem; display: flex; align-items: center; justify-content: space-between; }
.qc-chat-head strong { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.qc-chat-head span { font-size: .78rem; color: var(--gold); }
.qc-chat-head button { background: none; border: none; box-shadow: none; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 .2rem; text-transform: none; }
.qc-chat-head button:hover { background: none; transform: none; color: var(--gold); }
.qc-chat-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; background: var(--cream); }
.qc-msg { max-width: 85%; padding: .65rem .9rem; border-radius: 14px; font-size: .92rem; line-height: 1.45; }
.qc-msg.bot { background: #fff; border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 3px; }
.qc-msg.user { background: var(--brick); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.qc-msg-cta { align-self: flex-start; background: var(--gold); color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; padding: .55rem .9rem; border-radius: var(--btn-radius); }
.qc-msg-cta:hover { background: var(--gold-dark); color: var(--navy); }
.qc-chat-prompts { padding: .7rem; display: flex; flex-wrap: wrap; gap: .4rem; border-top: 1px solid var(--line); background: #fff; }
.qc-chip { background: var(--cream); border: 1px solid var(--line); color: var(--ink); font-size: .82rem; font-weight: 600; padding: .45rem .7rem; border-radius: 50px; cursor: pointer; box-shadow: none; text-transform: none; letter-spacing: 0; }
.qc-chip:hover { background: var(--brick); color: #fff; border-color: var(--brick); transform: none; }

/* Live Google booking calendar embed (v17) */
.booking-embed.booking-live { border: 1px solid var(--line); background: #fff; text-align: left; padding: 1.3rem; }
.booking-embed.booking-live strong { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.booking-embed.booking-live p { margin: .3rem 0 1rem; font-size: .92rem; color: var(--muted); }

/* ═══ Booking calendar (custom date/time picker) v19 ═══ */
.bookcal-step { font-family: var(--font-display); font-weight: 700; font-size: .95rem; margin: 1.1rem 0 .55rem; }
.bookcal-cal { border: 1px solid var(--line); border-radius: var(--radius); padding: .9rem; background: #fff; }
.bookcal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.bookcal-head strong { font-family: var(--font-display); font-size: 1.05rem; }
.bookcal-head button { background: var(--cream); color: var(--ink); border: 1px solid var(--line); box-shadow: none; width: 34px; height: 34px; padding: 0; font-size: 1.2rem; line-height: 1; border-radius: var(--radius); }
.bookcal-head button:hover { background: var(--brick); color: #fff; border-color: var(--brick); transform: none; }
.bookcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: .72rem; font-weight: 700; color: var(--muted); padding: 4px 0; text-transform: uppercase; }
.cal-day { aspect-ratio: 1; background: var(--cream); border: 1px solid transparent; color: var(--ink); box-shadow: none; border-radius: var(--radius); font-weight: 600; font-size: .9rem; padding: 0; text-transform: none; letter-spacing: 0; }
.cal-day:hover { background: var(--brick); color: #fff; transform: none; }
.cal-day:disabled { background: transparent; color: #c8c8c4; cursor: default; }
.cal-day.today { border-color: var(--brick); }
.cal-day.sel { background: var(--brick); color: #fff; }
.bookcal-windows { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .5rem; }
.cal-win { background: #fff; border: 1.5px solid var(--line); color: var(--ink); box-shadow: none; font-weight: 600; font-size: .88rem; padding: .7rem .5rem; border-radius: var(--radius); text-transform: none; letter-spacing: 0; }
.cal-win:hover { border-color: var(--brick); color: var(--brick); transform: none; background: #fff; }
.cal-win.sel { background: var(--brick); color: #fff; border-color: var(--brick); }
.bookcal-or { display: flex; align-items: center; text-align: center; color: var(--muted); font-size: .85rem; margin: 1.8rem 0 1.2rem; }
.bookcal-or::before, .bookcal-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.bookcal-or span { padding: 0 .9rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
