/* ================================================================
   style.css  –  Dullstroom Chimney Works
   Premium rustic-modern design system
   ================================================================ */

/* ── Google Fonts ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Josefin+Sans:wght@300;400;600;700&display=swap');

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --cream:       #f5efe6;
  --cream-2:     #fdfaf5;
  --cream-3:     #fffcf8;
  --parchment:   #ede3d4;
  --charcoal:    #1e1a17;
  --charcoal-2:  #2d2822;
  --charcoal-3:  #3d3530;
  --brown:       #6b4a32;
  --brown-2:     #8a6246;
  --brown-3:     #4a2f1a;
  --ember:       #c94f20;
  --ember-2:     #e06030;
  --ember-glow:  rgba(201,79,32,.15);
  --gold:        #b8902a;
  --line:        #e2d5c3;
  --line-dark:   #c8b99f;
  --text-muted:  #7a6654;
  --text-light:  #a8907c;
  --shadow-sm:   0 2px 8px rgba(50,30,10,.08);
  --shadow-md:   0 8px 32px rgba(50,30,10,.12);
  --shadow-lg:   0 20px 60px rgba(50,30,10,.16);
  --shadow-xl:   0 32px 80px rgba(50,30,10,.20);
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --max:         1200px;
  --max-narrow:  860px;
  --serif:       'Playfair Display', Georgia, serif;
  --serif-2:     'Cormorant Garamond', Georgia, serif;
  --sans:        'Josefin Sans', 'Segoe UI', Arial, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
address { font-style: normal; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── Utilities ───────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--narrow { max-width: var(--max-narrow); }
.section { padding: 96px 0; }
.section + .section { padding-top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ember);
}

.heading-serif {
  font-family: var(--serif);
  letter-spacing: -.02em;
  line-height: 1.12;
}
.muted { color: var(--text-muted); max-width: 68ch; }
.text-center { text-align: center; }
.text-center .muted { margin: 0 auto; }

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}
.divider-flame {
  color: var(--ember);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--ember);
  color: #fff;
  border-color: var(--ember);
}
.btn-primary:hover {
  background: var(--ember-2);
  border-color: var(--ember-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,79,32,.35);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ember);
  border-color: var(--ember);
}
.btn-outline:hover {
  background: var(--ember);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: var(--cream-2);
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* Cards & Panels */
.card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.card p { color: var(--text-muted); font-size: .95rem; }

.panel {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.tag-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--ember-glow);
  color: var(--ember);
  border-radius: 50%;
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: 14px;
}

/* Image placeholders */
.img-ph {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--parchment) center/cover no-repeat;
  position: relative;
}
.img-ph::after {
  content: attr(data-label);
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,.52);
  color: #fff;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Note / callout */
.note {
  padding: 16px 20px;
  border-left: 3px solid var(--ember);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .92rem;
  color: var(--text-muted);
  margin-top: 20px;
}
.note a { color: var(--ember); font-weight: 700; }
.note a:hover { text-decoration: underline; }

/* Area pills */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--brown);
}
.areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ── Navigation ──────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,230,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(50,30,10,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-svg {
  width: 38px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--charcoal);
}
.logo-text em {
  font-family: var(--sans);
  font-style: normal;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--brown-2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal-3);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ember);
  background: var(--ember-glow);
}
.nav-links .nav-cta {
  background: var(--ember);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--ember-2);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .25s;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero/hero-fireplace.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,12,8,.15) 0%,
    rgba(18,12,8,.5) 50%,
    rgba(18,12,8,.82) 100%
  );
}
.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(201,79,32,.08));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  color: #fff;
  max-width: 820px;
}
.hero-content .eyebrow {
  color: rgba(255,255,255,.8);
}
.hero-content .eyebrow::before {
  background: rgba(255,255,255,.5);
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--ember-2);
}
.hero-content p {
  font-family: var(--serif-2);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,.88);
  max-width: 60ch;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero-badge svg { color: var(--ember-2); flex-shrink: 0; }

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal-2);
  color: rgba(255,255,255,.85);
  padding: 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
.trust-item svg { color: var(--ember-2); flex-shrink: 0; }

/* ── Services Grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.service-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--ember-2));
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ember);
}
.service-card:hover::before { opacity: 1; }
.service-card a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--ember-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

/* ── Before / After ──────────────────────────────────────────── */
.beforeafter-section { background: var(--charcoal-2); color: #fff; }
.beforeafter-section h2 { color: #fff; }
.beforeafter-section .muted { color: rgba(255,255,255,.6); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-top: 40px;
}
.ba-side {
  position: relative;
  min-height: 360px;
  background: center/cover no-repeat;
}
.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.ba-side.after .ba-label {
  background: var(--ember);
}

.ba-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.ba-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 22px;
}
.ba-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #fff;
}
.ba-card p { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ── Bioethanol Feature ──────────────────────────────────────── */
.bio-section { background: var(--charcoal); color: #fff; }
.bio-section h2, .bio-section h3 { color: #fff; }
.bio-section .muted { color: rgba(255,255,255,.6); }
.bio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bio-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: url('assets/pages/bioethanol-fireplace.jpg') center/cover no-repeat;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.bio-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--cream-2);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: .8rem;
  box-shadow: var(--shadow-md);
  max-width: 180px;
  text-align: center;
}
.bio-img-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ember);
  margin-bottom: 4px;
}
.bio-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.bio-feat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 18px;
}
.bio-feat h4 {
  font-family: var(--serif);
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}
.bio-feat p { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--parchment); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars {
  color: var(--ember);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal-3);
  line-height: 1.65;
  margin-bottom: 18px;
}
.testimonial-author {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown-2);
}

/* ── Service Areas ───────────────────────────────────────────── */
.areas-section { background: var(--cream); }

/* ── Winter CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal-3) 0%, var(--brown-3) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero/hero-fireplace.jpg') center/cover no-repeat;
  opacity: .12;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  font-family: var(--serif-2);
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 54ch;
  margin: 0 auto 32px;
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--brown-3) 100%);
  color: #fff;
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero/hero-fireplace.jpg') center/cover no-repeat;
  opacity: .1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero .eyebrow { color: rgba(255,255,255,.7); }
.page-hero .eyebrow::before { background: rgba(255,255,255,.4); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero p {
  font-family: var(--serif-2);
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 60ch;
  margin-bottom: 28px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 40px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--cream-2);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: color .2s;
}
.faq-q:hover { color: var(--ember); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--ember-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  font-size: 1rem;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ── Table ───────────────────────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
th, td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: .92rem;
}
th {
  background: var(--parchment);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--brown);
}
tr:last-child td { border-bottom: none; }

/* ── Contact Form ────────────────────────────────────────────── */
.form-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown);
}
.field input,
.field textarea,
.field select {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream-3);
  color: var(--charcoal);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(201,79,32,.12);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gallery-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 200px;
  background: var(--parchment) center/cover no-repeat;
  position: relative;
}
.gallery-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.gallery-label.after-label { background: var(--ember); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal-2);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-text {
  font-family: var(--sans);
  letter-spacing: .2em;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
}
.footer-logo-text em {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--brown-2);
}
.footer-tagline {
  font-family: var(--serif-2);
  font-style: italic;
  font-size: .92rem;
  color: var(--ember-2);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .2s;
}
.footer-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--ember-2); }
.footer-col address p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-col address a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col address a:hover { color: var(--ember-2); }
.footer-areas {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-top: 4px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── Floating WhatsApp ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  z-index: 90;
  transition: all .25s;
  text-decoration: none;
}
.wa-float:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.5);
}

/* ── Two-column layout ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Comparison Fireplace Types ──────────────────────────────── */
.fp-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.fp-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.fp-card.featured {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(201,79,32,.12), var(--shadow-md);
}
.fp-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ember);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 4px 12px;
  border-radius: 999px;
}
.fp-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.fp-card .fp-sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.fp-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fp-card ul li {
  font-size: .88rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.fp-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ember);
  font-weight: 700;
}

/* ── About Page ──────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--ember-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.value-card h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--text-muted); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .bio-inner { gap: 36px; }
  .fp-compare { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .bio-inner { grid-template-columns: 1fr; gap: 32px; }
  .ba-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .ba-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .fp-compare { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: .85rem; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 6px; }
  .nav-inner { flex-wrap: wrap; }
  .hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .trust-item { padding: 14px 16px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 12px; }
  .hero-badge { font-size: .7rem; }
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp .7s ease both;
}
.hero-content .eyebrow  { animation-delay: .1s; }
.hero-content h1        { animation-delay: .2s; }
.hero-content p         { animation-delay: .35s; }
.hero-content .btn-group { animation-delay: .5s; }
.hero-content .hero-badges { animation-delay: .65s; }
