@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bebas-neue-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/source-sans-3.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/source-sans-3.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/source-sans-3.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/source-sans-3.woff2') format('woff2');
}

:root {
  --charcoal: #17120f;
  --charcoal-2: #221b17;
  --cream: #faf6f0;
  --cream-2: #f1ebe1;
  --ink: #2a221d;
  --flame-1: #ff4d1c;
  --flame-2: #ff8c00;
  --flame-3: #ffb347;
  --gold: #f0a500;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(0,0,0,0.08);
  --shadow: 0 20px 40px -20px rgba(0,0,0,0.35);
  --radius: 14px;
  --font-display: "Bebas Neue", Impact, "Arial Narrow Bold", sans-serif;
  --font-body: "Source Sans 3", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], div[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; margin: 0 0 0.5em; letter-spacing: 0.015em; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-flame {
  background: linear-gradient(100deg, var(--flame-1), var(--flame-2) 55%, var(--flame-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--flame-1);
  margin: 0 0 0.9em;
}
.eyebrow.center { text-align: center; }

.section { padding: 116px 0; }
.section-alt { background: var(--cream-2); }
.section-title { font-size: clamp(2.4rem, 4.6vw, 3.4rem); }
.section-title.center { text-align: center; }
.section-sub {
  max-width: 620px;
  margin: 0 auto 3.2rem;
  color: #5c534c;
  font-size: 1.05rem;
}
.section-sub.center { text-align: center; }
.section-sub-left { color: rgba(250,246,240,0.75); max-width: 460px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(100deg, var(--flame-1), var(--flame-2));
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(255, 77, 28, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(255, 77, 28, 0.65); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-lg { padding: 1em 2.1em; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.btn-call { background: rgba(255,255,255,0.95); color: var(--charcoal); border-color: rgba(255,255,255,0.95); }
.btn-call:hover { background: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 18, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.05rem;
  margin-right: auto;
}
.logo-flame { font-size: 1.5rem; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.logo-sub { font-size: 0.5rem; letter-spacing: 0.28em; color: var(--flame-3); font-weight: 700; font-family: var(--font-body); margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--flame-1), var(--flame-2));
  transition: width 0.25s ease;
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.main-nav a:hover { color: #fff; }
.nav-buttons { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-call { padding: 0.7em 1.3em; font-size: 0.88rem; }
.main-nav .nav-call { color: var(--charcoal); }
.main-nav .nav-call:hover { color: var(--charcoal); }
.nav-toggle { display: none; }

.nav-item { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}
.nav-dropdown-toggle:hover { color: #fff; }
.caret { font-size: 0.7em; transition: transform 0.15s ease; }
.nav-item.open .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 60;
}
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  padding: 120px 0 90px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  animation: heroZoomOut 8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroZoomOut {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,12,10,0.55) 0%, rgba(16,12,10,0.28) 35%, rgba(16,12,10,0.42) 65%, rgba(10,8,6,0.85) 100%);
}
.hero-glow {
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 480px;
  background: radial-gradient(closest-side, rgba(255,140,0,0.35), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow,
.hero h1,
.hero-sub,
.hero-actions,
.hero-stats {
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }
.hero-stats { animation-delay: 0.65s; }

.hero .eyebrow { text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.45em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(250,246,240,0.92);
  max-width: 640px;
  margin: 0 auto 2.2em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.6rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 22px 8px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.hero-stats li:first-child { border-left: none; }
.hero-stats strong { font-size: 1.9rem; font-family: var(--font-display); letter-spacing: 0.02em; color: var(--flame-3); }
.hero-stats span { font-size: 0.8rem; color: rgba(250,246,240,0.65); }

/* Before/After Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.ba-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-dark);
  transition: border-color 0.2s ease;
}
.ba-card:hover { border-color: rgba(255,77,28,0.35); }
.ba-compare { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pane {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal-2);
}
.ba-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ba-card:hover .ba-pane img { transform: scale(1.08); }
.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
}
.ba-tag-after { background: rgba(0,0,0,0.35); }
.ba-caption { padding: 20px 22px 24px; }
.ba-caption h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.ba-caption p { color: #6a6058; font-size: 0.92rem; margin-bottom: 0; }
.gallery-note {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 0.85rem;
  color: #948a80;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,77,28,0.35); }
.service-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,77,28,0.12), rgba(255,140,0,0.12));
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.service-card p { color: #6a6058; font-size: 0.93rem; margin-bottom: 0; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,77,28,0.35); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.7rem; }
.quote { font-size: 0.98rem; color: #4a423b; font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar-ph {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  flex-shrink: 0;
}
.person-name { font-weight: 700; margin-bottom: 0; font-size: 0.9rem; }
.person-role { margin-bottom: 0; font-size: 0.8rem; color: #948a80; }

.review-cta {
  margin-top: 3.2rem;
  padding: 40px 24px;
  text-align: center;
  background: var(--cream-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
.review-cta-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.3em;
}
.review-cta-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 1.3rem;
}

/* Contact */
.section-dark {
  background: var(--charcoal);
  color: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 1.8rem; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: rgba(250,246,240,0.85); font-size: 0.95rem; }
.contact-icon { font-size: 1.1rem; }

.contact-form {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: rgba(250,246,240,0.75);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8em 1em;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--flame-2);
  background: rgba(255,255,255,0.08);
}
.form-group select option { background: var(--charcoal-2); color: #fff; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.88rem;
  min-height: 1.2em;
  color: var(--flame-3);
  font-weight: 600;
}
.form-reassurance {
  background: rgba(255,140,0,0.12);
  border: 1px solid rgba(255,140,0,0.25);
  color: var(--flame-3);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0 0 18px;
}
.form-consent { margin-bottom: 18px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--flame-1);
}
.consent-label span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(250,246,240,0.65);
  font-weight: 400;
}

/* Service Areas */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.area-chip {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,77,28,0.35); }
.blog-thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-body { padding: 22px 24px 26px; }
.blog-meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--flame-1);
  margin-bottom: 0.6em;
}
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.5em; }
.blog-body p { color: #6a6058; font-size: 0.92rem; }
.blog-link { color: var(--flame-1); font-weight: 700; font-size: 0.9rem; }
.blog-link:hover { color: var(--flame-2); }

/* Map */
.map-section { background: var(--cream-2); }
.map-embed {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 100%; display: block; }

/* Footer */
.site-footer {
  background: #100c0a;
  color: rgba(250,246,240,0.6);
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { margin: 0; font-size: 0.85rem; }
.footer-social { display: flex; gap: 14px; font-size: 1.2rem; }
.footer-social a { opacity: 0.75; transition: opacity 0.15s ease; }
.footer-social a:hover { opacity: 1; }
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}
.footer-legal a { opacity: 0.65; transition: opacity 0.15s ease; }
.footer-legal a:hover { opacity: 1; }
.footer-legal-sep { opacity: 0.4; }

/* Legal Pages */
.legal-back-btn { padding: 0.6em 1.2em; font-size: 0.85rem; margin-left: auto; }
.legal-page { padding: 64px 0 100px; }
.legal-container { max-width: 760px; }
.legal-container h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.2em; }
.legal-company { color: #6a6058; font-weight: 700; margin-bottom: 0.2em; }
.legal-effective { color: #948a80; font-size: 0.9rem; margin-bottom: 2.4rem; }
.legal-container h2 {
  font-size: 1.3rem;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
  padding-top: 0.8em;
  border-top: 1px solid var(--line-dark);
}
.legal-container h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-container h3 { font-size: 1.05rem; margin-top: 1.4em; margin-bottom: 0.4em; }
.legal-container p { color: #4a423b; font-size: 0.96rem; }
.legal-container a { color: var(--flame-1); font-weight: 600; text-decoration: underline; }
.legal-container ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal-container li { color: #4a423b; font-size: 0.96rem; margin-bottom: 0.4em; }
.legal-container strong { color: var(--ink); }
.legal-contact { line-height: 1.8; }
.legal-notice {
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.25);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 2.4rem;
}
.legal-notice p { margin-bottom: 0.6em; }
.legal-notice p:last-child { margin-bottom: 0; }

/* Chat Widget */
.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--flame-1), var(--flame-2));
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px -8px rgba(255, 77, 28, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.chat-toggle:hover { transform: scale(1.06); }

.chat-teaser {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 250px;
  max-width: 70vw;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 34px 16px 16px;
  font-size: 0.85rem;
  line-height: 1.45;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  cursor: pointer;
  z-index: 99;
}
.chat-teaser p { margin: 0; }
.chat-teaser::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 26px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 3px 3px 6px -4px rgba(0,0,0,0.2);
}
.chat-teaser.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-widget.open .chat-teaser { opacity: 0; visibility: hidden; }
.chat-teaser-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: var(--cream-2);
  color: #948a80;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.chat-teaser-close:hover { background: var(--line-dark); color: var(--ink); }
.chat-toggle-icon-close { display: none; }
.chat-widget.open .chat-toggle-icon-open { display: none; }
.chat-widget.open .chat-toggle-icon-close { display: block; }

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 360px;
  max-width: calc(100vw - 40px);
  max-height: 70vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.chat-widget.open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--charcoal);
  color: #fff;
  flex-shrink: 0;
}
.chat-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame-1), var(--flame-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.chat-header-title { font-weight: 700; font-size: 0.92rem; margin: 0; }
.chat-header-status { font-size: 0.76rem; color: rgba(255,255,255,0.65); margin: 2px 0 0; display: flex; align-items: center; gap: 6px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #3ddc84; display: inline-block; }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream-2);
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
}
.chat-msg-bot {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg-user {
  background: linear-gradient(100deg, var(--flame-1), var(--flame-2));
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-start;
  width: 100%;
}
.chat-chip {
  background: #fff;
  border: 1px solid var(--flame-1);
  color: var(--flame-1);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
}
.chat-chip:hover { background: var(--flame-1); color: #fff; }

.chat-lead-form {
  padding: 16px 18px;
  border-top: 1px solid var(--line-dark);
  background: #fff;
  flex-shrink: 0;
  overflow-y: auto;
}
.chat-lead-form .form-reassurance { font-size: 0.78rem; padding: 8px 12px; margin-bottom: 14px; }
.chat-lead-form .form-group { margin-bottom: 12px; }
.chat-lead-form .form-group label {
  color: var(--ink);
  font-size: 0.76rem;
  margin-bottom: 0.4em;
}
.chat-lead-form .form-group input,
.chat-lead-form .form-group textarea {
  background: var(--cream-2);
  border: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 0.88rem;
  padding: 0.6em 0.8em;
}
.chat-lead-form .form-group input::placeholder,
.chat-lead-form .form-group textarea::placeholder { color: #a89f95; }
.chat-lead-form .consent-label span { color: #746a60; }
.chat-back-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: #948a80;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}
.chat-back-btn:hover { color: var(--ink); }

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line-dark);
  background: #fff;
  flex-shrink: 0;
}
.chat-input-row input {
  flex: 1;
  border: 1px solid var(--line-dark);
  background: var(--cream-2);
  border-radius: 999px;
  padding: 0.6em 1em;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--ink);
}
.chat-input-row input:focus { outline: none; border-color: var(--flame-2); }
.chat-input-row button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--flame-1), var(--flame-2));
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Floating call button (mobile only, sits left of the chat toggle) */
.floating-call-btn {
  display: none;
  position: fixed;
  right: 92px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.35);
  z-index: 100;
  transition: transform 0.15s ease;
}
.floating-call-btn:hover { transform: scale(1.06); }

@media (max-width: 760px) {
  .floating-call-btn { display: flex; }
}

@media (max-width: 480px) {
  .chat-widget { right: 12px; bottom: 12px; }
  .chat-panel { right: -6px; width: calc(100vw - 24px); }
  .floating-call-btn { right: 84px; bottom: 12px; }
  .chat-teaser { bottom: 68px; width: 210px; }
}

/* Scroll-entrance reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.gallery-grid .reveal:nth-child(2),
.services-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2),
.blog-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .reveal:nth-child(3),
.services-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3),
.blog-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { transform: scale(1); }
}

/* Responsive */
@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
  .section-sub-left { max-width: none; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 20px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .main-nav .nav-item { width: 100%; }
  .site-header.nav-open .nav-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .site-header.nav-open .nav-buttons .btn { width: 100%; text-align: center; }
  .site-header.nav-open .dropdown-menu {
    position: static;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    transition: max-height 0.2s ease;
  }
  .site-header.nav-open .nav-item.open .dropdown-menu {
    max-height: 400px;
    padding: 8px;
    border: 1px solid var(--line);
  }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 96px 0 70px; }
  .section { padding: 80px 0; }
  .hero-stats { padding: 18px 12px; border-radius: 20px; }
  .hero-stats li { border-left: none; padding: 4px 14px; }
}

/* Review Funnel Page */
.review-topbar {
  background: var(--charcoal);
  padding: 22px 0;
  text-align: center;
}
.review-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
.review-logo .logo-flame { font-size: 1.4rem; }
.review-logo-dot { color: var(--flame-2); }

.review-main {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  overflow: hidden;
}
.review-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.review-bg-overlay { position: absolute; inset: 0; background: rgba(16,12,10,0.72); }

.review-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.review-card-header { background: var(--charcoal); padding: 32px 36px 28px; }
.review-card-header h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}
.review-card-body { padding: 32px 36px; min-height: 220px; }
.review-field-label { font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; color: var(--ink); }
.required { color: var(--flame-1); }

.review-rating-options { display: flex; flex-direction: column; gap: 4px; }
.review-rating-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.review-rating-option:hover { background: var(--cream-2); }
.review-rating-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--flame-1);
  flex-shrink: 0;
  cursor: pointer;
}
.review-rating-stars { font-size: 1.05rem; letter-spacing: 1px; }
.review-rating-text { color: #6a6058; font-size: 0.92rem; }

.review-step-msg { color: #4a423b; font-size: 1rem; margin-bottom: 1.6rem; line-height: 1.6; }
.review-step-error { color: #c0392b; font-size: 0.85rem; margin-top: 0.4rem; min-height: 1.2em; }

/* Light-background overrides for shared .form-group styles (built for dark panels) */
.review-step .form-group label { color: var(--ink); }
.review-step .form-group input,
.review-step .form-group textarea {
  background: var(--cream-2);
  border: 1px solid var(--line-dark);
  color: var(--ink);
}
.review-step .form-group input::placeholder,
.review-step .form-group textarea::placeholder { color: #a89f95; }
.review-step .form-group input:focus,
.review-step .form-group textarea:focus { background: #fff; border-color: var(--flame-2); }
.review-step .consent-label span { color: #746a60; }

.review-card-footer {
  background: var(--charcoal);
  padding: 16px 24px;
  display: flex;
  justify-content: flex-end;
}

.btn-ghost-dark { background: transparent; border: 2px solid var(--line-dark); color: var(--ink); }
.btn-ghost-dark:hover { background: var(--cream-2); transform: translateY(-2px); }

.review-progress-wrap { position: relative; z-index: 2; width: 100%; max-width: 620px; margin-top: 24px; }
.review-progress-track {
  width: 100%;
  height: 34px;
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  overflow: hidden;
}
.review-progress-fill {
  height: 100%;
  min-width: 64px;
  background: linear-gradient(100deg, var(--flame-1), var(--flame-2));
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  transition: width 0.4s ease;
  white-space: nowrap;
}
.review-progress-fill span { color: #fff; font-weight: 700; font-size: 0.8rem; }

@media (max-width: 600px) {
  .review-card-header, .review-card-body { padding-left: 24px; padding-right: 24px; }
  .review-card-footer { padding: 14px 20px; }
}
