:root {
  --bg: #111010;
  --bg-soft: #181717;
  --bg-soft-2: #1e1d1c;
  --card: #1e1d1c;
  --accent: #d29a5a;
  --accent-soft: rgba(210, 154, 90, 0.12);
  --text: #f6f1ea;
  --muted: #b3aaa0;
  --border: #2a2725;
  --danger: #ff6b6b;
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 14px 32px rgba(0, 0, 0, 0.45);
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #26201a 0, #111010 45%, #050404 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
}

a:hover {
  color: #f7cf96;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: radial-gradient(circle at top, #1e1914 0, #151413 40%, #10100f 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.center {
  text-align: center;
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
    align-items: flex-start;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 0, #ffdd9b 0, #d9713a 40%, #34120b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(210, 154, 90, 0.5);
}

.flame-icon {
  font-size: 1.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--muted);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.1rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a.active {
  color: var(--accent);
}

.nav-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  width: 38px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

@media (min-width: 880px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }
}

@media (max-width: 879px) {
  .main-nav {
    position: absolute;
    top: 64px;
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: column;
    padding: 1rem 1rem 1.1rem;
    background: rgba(10, 9, 8, 0.98);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #e3ad6c, #c87d4d);
  color: #1b130c;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.8);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
}

.btn-nav {
  padding-inline: 1.1rem;
  font-size: 0.8rem;
  background: rgba(210, 154, 90, 0.1);
  border-color: rgba(210, 154, 90, 0.35);
  color: var(--accent);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 3.1fr) minmax(0, 2.2fr);
    align-items: stretch;
  }
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.hero-text {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-trust span {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  background: radial-gradient(circle at top, #2a1f15 0, #181412 40%, #100f0e 100%);
  border-radius: 1.4rem;
  padding: 1.6rem 1.6rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.hero-card-inner h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.hero-card-inner p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.soft-card {
  background: linear-gradient(145deg, #201a14, #171412);
}

.small-card {
  border-radius: 1rem;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.service-card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.card-list {
  padding-left: 1.1rem;
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.card-list li + li {
  margin-top: 0.25rem;
}

.card-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--accent);
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 720px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(4, 4, 4, 0.85);
  padding: 0.8rem 0;
}

.service-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.service-pill {
  font-size: 0.78rem;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.pill-grid {
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.4);
}

.pill a {
  text-decoration: none;
  color: inherit;
}

.pill a:hover {
  color: var(--accent);
}

.trust-grid {
  display: grid;
  gap: 2.4rem;
}

.badge-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 880px) {
  .trust-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
    align-items: stretch;
  }

  .badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.badge-card {
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, #2a1c12 0, #181412 45%, #10100f 100%);
  font-size: 0.85rem;
}

.badge-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.review-card {
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
}

.review-card.large {
  min-height: 0;
}

.review-text {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.review-author {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.cta-strip {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, #281d15, #151311);
  padding: 2.2rem 0;
}

.cta-strip-inner {
  display: grid;
  gap: 1.1rem;
  align-items: center;
}

.cta-strip-inner h2 {
  margin: 0 0 0.3rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (min-width: 780px) {
  .cta-strip-inner {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
}

.page-hero .hero-text {
  margin-bottom: 0;
}

.page-hero .hero-text.narrow {
  max-width: 34rem;
}

.contact-card {
  max-width: 560px;
}

.contact-form .form-group {
  margin-bottom: 0.9rem;
}

.contact-form label {
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.6rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 8, 8, 0.8);
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.contact-highlight {
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 1.1rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.15rem;
  background: #151311;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.section-header {
  text-align: left;
  margin-bottom: 1.7rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.small-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-card .small-note {
  margin-top: 0.6rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 1.2rem;
  background: #080707;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 0.8rem;
}

.footer-brand {
  margin-bottom: 0.4rem;
}

.footer-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-list li + li {
  margin-top: 0.25rem;
}

.footer-list a {
  color: inherit;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.7rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-areas {
  columns: 2;
}

@media (min-width: 780px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }
}

.review-cta {
  margin-top: 2rem;
  text-align: center;
}

.review-cta p {
  max-width: 28rem;
  margin: 0.4rem auto;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card h3 {
  padding: 1rem 1.15rem 0;
}

.map-embed {
  padding: 1rem;
  padding-top: 0.5rem;
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 260px;
  border-radius: 1rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}


.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.project-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.project-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.project-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}


.project-slider {
  position: relative;
  max-width: 1100px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-strong);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), rgba(0,0,0,0.9));
  max-height: 420px;
}


.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.project-slide.active {
  position: relative;
  opacity: 1;
}

.project-slide img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-control.prev { left: 18px; }
.slider-control.next { right: 18px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--accent);
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}


/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-soft);
  background: #050505;
}

.gallery-item img {
  width: 100%;
  display: block;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}



/* Site Logo */
.site-logo {
  height: 48px;
  width: 48px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.footer .site-logo {
  height: 38px;
}

/* Call Popup */
.call-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.92);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  max-width: 320px;
  z-index: 9999;
  display: none;
}

.call-popup h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.call-popup p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 14px;
}

.call-popup-actions {
  display: flex;
  gap: 10px;
}


/* Hero Background Image */
.hero-with-bg {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('../assets/images/hero.jpg') center/cover no-repeat;
  padding-top: 140px;
  padding-bottom: 140px;
}


/* 🎄 Holiday Banner */
.holiday-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #000, #1a1a1a);
  color: #fff;
  padding: 12px 50px 12px 16px;
  font-size: 0.95rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.holiday-call {
  background: #d4af37;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  margin-left: 10px;
  text-decoration: none;
  font-weight: 600;
}

.holiday-close {
  margin-left: 12px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* 🎄 Holiday Popup */
.holiday-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.holiday-popup-inner {
  background: #0b0b0b;
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.holiday-popup-inner h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.holiday-popup-inner p {
  margin-bottom: 14px;
}

.holiday-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 768px) {
  .holiday-banner {
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Chimney Cleaning USA – Alternate Brand Glow */
.btn-primary,
.service-card,
.soft-card {
  box-shadow: 0 10px 30px rgba(107, 143, 214, 0.25);
}

.page-hero {
  background: linear-gradient(135deg, #0b1220, #1f2933);
}
