/* ==========================================================================
   Flame Fix LLC — Gas Fireplace Services · Cleveland, Ohio
   Brand palette taken from the logo: charcoal, steel, flame orange, copper.
   ========================================================================== */

:root {
  /* Brand */
  --ink: #131518;
  --char: #1b1e22;
  --char-2: #23272c;
  --steel: #a9aeb4;
  --flame: #f47a20;
  --amber: #ffb13d;
  --ember: #e4531c;
  --copper: #c8773f;
  --flame-text: #b3561b;          /* accessible orange for text on light backgrounds */
  --grad: linear-gradient(135deg, #ffb13d 0%, #f47a20 55%, #e4531c 100%);

  /* Neutrals */
  --paper: #f7f5f2;
  --white: #ffffff;
  --text: #1c1f23;
  --muted: #5b616a;
  --line: #e8e4de;
  --line-strong: #d6d1c9;
  --line-d: rgba(255, 255, 255, 0.09);

  /* System */
  --font-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(16, 18, 20, 0.04), 0 10px 30px -12px rgba(16, 18, 20, 0.12);
  --shadow-lg: 0 2px 4px rgba(16, 18, 20, 0.04), 0 24px 48px -18px rgba(16, 18, 20, 0.22);
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 74px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4.1rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.65rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.i {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible { outline: 2px solid var(--flame); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  margin-bottom: 1.1rem;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flame-text);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.on-dark .eyebrow { color: var(--amber); }

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

.lead {
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
}
.on-dark .lead { color: rgba(255, 255, 255, 0.72); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.9rem;
  --pad-x: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: var(--pad-y) var(--pad-x);
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s, border-color 0.2s, color 0.2s;
}
.btn .i { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad);
  color: var(--ink);
  box-shadow: 0 8px 22px -8px rgba(244, 122, 32, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(244, 122, 32, 0.75); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.24); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn-outline { border-color: var(--line-strong); background: #fff; color: var(--text); }
.btn-outline:hover { border-color: var(--text); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--char-2); transform: translateY(-2px); }
.btn-sm { --pad-y: 0.62rem; --pad-x: 1.1rem; font-size: 0.87rem; }
.btn-lg { --pad-y: 1.05rem; --pad-x: 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.65; cursor: progress; transform: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--flame-text);
}
.link-arrow .i { width: 16px; height: 16px; transition: transform 0.2s; }
.link-arrow:hover .i { transform: translateX(4px); }
.on-dark .link-arrow { color: var(--amber); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(19, 21, 24, 0.84);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}
.site-header.is-scrolled { background: rgba(19, 21, 24, 0.95); border-bottom-color: var(--line-d); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.brand img { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}
.brand-llc { color: var(--copper); }
.brand-tag {
  margin-top: 0.35rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 0.2rem; margin: 0; padding: 0; list-style: none; }
.site-nav li a {
  position: relative;
  display: block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s, background-color 0.2s;
}
.site-nav li a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.site-nav li a[aria-current="page"] { color: #fff; }
.site-nav li a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--flame);
}
.nav-mobile-cta { display: none; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: #fff;
}
.header-phone .i { color: var(--amber); width: 18px; height: 18px; }
.header-phone:hover { color: var(--amber); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-d);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav-toggle .i { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .header-phone span { display: none; }
  .header-phone {
    width: 44px; height: 44px;
    justify-content: center;
    border: 1px solid var(--line-d);
    border-radius: 12px;
  }
  .header-actions { margin-left: auto; gap: 0.6rem; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem var(--gutter) 1.5rem;
    background: var(--ink);
    border-bottom: 1px solid var(--line-d);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li + li { border-top: 1px solid var(--line-d); }
  .site-nav li a { padding: 0.95rem 0.25rem; border-radius: 0; font-size: 1.08rem; }
  .site-nav li a:hover { background: none; }
  .site-nav li a[aria-current="page"] { color: var(--amber); }
  .site-nav li a[aria-current="page"]::after { display: none; }
  .nav-mobile-cta { display: grid; gap: 0.6rem; margin-top: 1rem; }
}
@media (max-width: 600px) {
  .header-actions .btn { display: none; }
  .brand-tag { display: none; }
  .brand img { width: 40px; height: 40px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.section--dark { position: relative; overflow: hidden; background: var(--ink); color: #fff; isolation: isolate; }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head p { margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  max-width: none;
}
.section-head--split > div { max-width: 640px; }

.glow::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 900px;
  height: 900px;
  right: -300px;
  bottom: -520px;
  max-width: none;
  background: radial-gradient(closest-side, rgba(244, 122, 32, 0.26), rgba(228, 83, 28, 0.08) 55%, transparent 75%);
  pointer-events: none;
}
.dots::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; isolation: isolate; }
.hero::before { right: -260px; bottom: -420px; width: 1000px; height: 1000px; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4.5rem, 9vw, 7rem);
}
.hero h1 { margin-bottom: 1.3rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 2.2rem 0 2.2rem; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-points li { display: flex; align-items: center; gap: 0.45rem; }
.hero-points .i { width: 18px; height: 18px; color: var(--amber); stroke-width: 2.4; }

.hero-visual { position: relative; }
.hearth-card {
  padding: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid var(--line-d);
  border-radius: 30px;
  background: linear-gradient(180deg, #1f2226, #15171a);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.hearth { width: 100%; height: auto; }
.hearth .fl {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: flicker 2.6s ease-in-out infinite alternate;
}
.hearth .ember { animation: ember 2.8s ease-in-out infinite alternate; }
.hearth .breathe { animation: breathe 3.6s ease-in-out infinite alternate; }
@keyframes flicker {
  0%   { transform: scale(1, 1) skewX(0deg); }
  25%  { transform: scale(0.96, 1.07) skewX(1.5deg); }
  50%  { transform: scale(1.03, 0.9) skewX(-1deg); }
  75%  { transform: scale(0.98, 1.05) skewX(2deg); }
  100% { transform: scale(1, 0.94) skewX(-1.5deg); }
}
@keyframes ember { from { opacity: 0.3; } to { opacity: 1; } }
@keyframes breathe { from { opacity: 0.7; } to { opacity: 1; } }

.float-card {
  position: absolute;
  left: -22px;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem 0.85rem 0.85rem;
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.55);
}
.float-card--top { left: auto; right: -18px; top: -22px; bottom: auto; }
.float-card strong { display: block; font-family: var(--font-head); font-size: 0.9rem; line-height: 1.25; }
.float-card small { display: block; font-size: 0.78rem; color: var(--muted); line-height: 1.35; }
.float-card .icon-badge { width: 40px; height: 40px; border-radius: 12px; }
.float-card .icon-badge .i { width: 20px; height: 20px; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { width: 100%; max-width: 560px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .float-card { left: 10px; bottom: -22px; }
  .float-card--top { display: none; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--char); color: #fff; border-top: 1px solid var(--line-d); }
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.7rem 1.5rem;
  border-left: 1px solid var(--line-d);
}
.trust-item:first-child { padding-left: 0; border-left: 0; }
.trust-item .i { width: 26px; height: 26px; margin-top: 2px; color: var(--amber); }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.trust-item span { font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }
  .trust-item { padding: 1.4rem 0; border-left: 0; }
  .trust-item:nth-child(n + 3) { border-top: 1px solid var(--line-d); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: minmax(0, 1fr); }
  .trust-item:nth-child(n + 2) { border-top: 1px solid var(--line-d); }
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-lg); }
.card--static:hover { transform: none; box-shadow: none; border-color: var(--line); }
.card h3 { margin: 1.3rem 0 0.5rem; }
.card p { flex: 1; margin-bottom: 1.2rem; font-size: 0.96rem; color: var(--muted); }
.card--static p { margin-bottom: 0; }
.stretched::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

.icon-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff3e6, #ffe3cc);
  color: var(--ember);
}
.icon-badge .i { width: 26px; height: 26px; }
.icon-badge--dark { background: rgba(244, 122, 32, 0.13); color: var(--amber); }

@media (max-width: 1060px) { .cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cards, .cards--4 { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Split + lists ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split--top { align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: minmax(0, 1fr); } }

.feature-list { display: grid; gap: 1.5rem; margin: 2.2rem 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.feature-list .icon-badge { width: 46px; height: 46px; border-radius: 13px; }
.feature-list .icon-badge .i { width: 22px; height: 22px; }
.feature-list h3 { margin: 0.15rem 0 0.25rem; font-size: 1.05rem; }
.feature-list p { margin: 0; font-size: 0.95rem; color: var(--muted); }

.panel-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
}
.panel-dark::before { right: -520px; bottom: -560px; }
.panel-dark h3 { font-size: 1.35rem; }
.panel-dark > p { color: rgba(255, 255, 255, 0.65); }

.checklist { display: grid; gap: 0.85rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; }
.tick {
  display: grid;
  place-items: center;
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(244, 122, 32, 0.16);
  color: var(--amber);
}
.tick .i { width: 14px; height: 14px; stroke-width: 3; }
.checklist--light .tick { background: #ffeedd; color: var(--ember); }
.checklist--light li { font-size: 0.97rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.step { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
}
.step p { margin: 0; color: var(--muted); }
@media (max-width: 860px) { .steps { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}
.chip .i { width: 14px; height: 14px; color: var(--flame); }
.on-dark .chip { background: rgba(255, 255, 255, 0.04); border-color: var(--line-d); color: rgba(255, 255, 255, 0.86); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2.4rem, 6vw, 4.5rem);
  border-radius: 32px;
  background: var(--ink);
  color: #fff;
}
.cta-band::before { right: -380px; bottom: -600px; }
.cta-band h2 { margin-bottom: 0.6rem; }
.cta-band p { max-width: 54ch; margin: 0; color: rgba(255, 255, 255, 0.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
@media (max-width: 860px) { .cta-band { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
  background: var(--ink);
  color: #fff;
}
.page-hero::before { right: -300px; bottom: -600px; }
.page-hero h1 { max-width: 20ch; font-size: clamp(2.2rem, 4.8vw, 3.5rem); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: rgba(255, 255, 255, 0.3); }
.breadcrumb a:hover { color: #fff; }
.jump { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.2rem; }
.jump a {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-d);
  border-radius: 999px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  transition: border-color 0.2s, color 0.2s;
}
.jump a:hover { border-color: var(--amber); color: #fff; }

/* ---------- Service details ---------- */
.service-list { display: grid; gap: 1.25rem; }
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.service-detail h2 { margin-top: 1.3rem; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.service-detail p { color: var(--muted); }
.includes { padding: 1.7rem; border-radius: 20px; background: var(--paper); }
.includes h3 {
  margin-bottom: 0.2rem;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 860px) { .service-detail { grid-template-columns: minmax(0, 1fr); } }

.problems { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.problem { padding: 1.5rem; border: 1px solid var(--line-d); border-radius: 18px; background: rgba(255, 255, 255, 0.035); }
.problem h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.problem p { margin: 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.62); }
@media (max-width: 980px) { .problems { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .problems { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Alert ---------- */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid #f6d3b4;
  border-radius: 18px;
  background: #fff6ee;
  color: #6b3410;
}
.alert .i { width: 24px; height: 24px; margin-top: 2px; color: var(--ember); }
.alert strong { display: block; margin-bottom: 0.2rem; font-family: var(--font-head); color: #4a230a; }
.alert p { margin: 0; font-size: 0.94rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 860px; margin-inline: auto; }
.faq details {
  padding: 0 1.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq details[open] { border-color: #f1c7a1; box-shadow: var(--shadow); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--flame-text);
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 0.25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding-bottom: 1.35rem; color: var(--muted); }

/* ---------- About ---------- */
.timeline { display: grid; margin: 0; padding: 0; list-style: none; counter-reset: t; }
.timeline li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 1.2rem; padding-bottom: 1.9rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  counter-increment: t;
  content: counter(t);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(244, 122, 32, 0.4);
  border-radius: 50%;
  background: rgba(244, 122, 32, 0.12);
  color: var(--amber);
  font-family: var(--font-head);
  font-weight: 700;
}
.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22.5px;
  top: 52px;
  bottom: 6px;
  width: 1px;
  background: var(--line-d);
}
.timeline h3 { margin: 0.55rem 0 0.3rem; font-size: 1.05rem; }
.timeline p { margin: 0; color: rgba(255, 255, 255, 0.65); }

.map-wrap {
  overflow: hidden;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #e9e6e1;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05); }

.quote-block {
  margin: 2rem 0 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--flame);
  border-radius: 0 16px 16px 0;
  background: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- Booking ---------- */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 980px) { .booking { grid-template-columns: minmax(0, 1fr); } }

.form-card {
  padding: clamp(1.4rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-step {
  min-width: 0;
  margin: 0 0 2.1rem;
  padding: 0 0 2.1rem;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.form-step:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.form-step legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
}
.step-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  font-size: 0.82rem;
}

.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.option { position: relative; display: block; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 100%;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.option-card:hover { border-color: #e6c3a2; }
.option input:checked + .option-card {
  border-color: var(--flame);
  background: #fff8f1;
  box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.16);
}
.option input:focus-visible + .option-card { outline: 2px solid var(--flame); outline-offset: 2px; }
.option-card .icon-badge { width: 42px; height: 42px; border-radius: 12px; }
.option-card .icon-badge .i { width: 22px; height: 22px; }
.option-card strong { display: block; font-family: var(--font-head); font-size: 0.97rem; line-height: 1.3; }
.option-card small { display: block; font-size: 0.83rem; line-height: 1.4; color: var(--muted); }

.time-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.6rem; }
.time-grid .option-card { flex-direction: column; justify-content: center; gap: 0.1rem; padding: 0.85rem 0.6rem; text-align: center; }
@media (max-width: 640px) {
  .option-grid { grid-template-columns: minmax(0, 1fr); }
  .time-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.subhead + .subhead, .date-strip-wrap + .subhead { margin-top: 1.5rem; }
.strip-nav { display: flex; gap: 0.4rem; }
.strip-nav button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.strip-nav button:hover { border-color: var(--text); }
.strip-nav .i { width: 16px; height: 16px; }

.date-strip {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.date-btn {
  flex: 0 0 74px;
  padding: 0.7rem 0.3rem;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  line-height: 1.25;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}
.date-btn:hover { border-color: #e6c3a2; }
.date-btn .dow { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.date-btn .day { display: block; margin: 0.15rem 0; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; }
.date-btn .mon { display: block; font-size: 0.76rem; color: var(--muted); }
.date-btn[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.date-btn[aria-pressed="true"] .dow, .date-btn[aria-pressed="true"] .mon { color: var(--amber); }

.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.fields--3 { grid-template-columns: 2fr 1.2fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label, .field .field-label { font-size: 0.9rem; font-weight: 600; }
.opt { font-weight: 400; color: var(--muted); }
.input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input::placeholder { color: #9aa0a7; }
.input:hover { border-color: var(--line-strong); }
.input:focus { outline: none; border-color: var(--flame); box-shadow: 0 0 0 4px rgba(244, 122, 32, 0.16); }
select.input {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b616a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
}
textarea.input { min-height: 128px; resize: vertical; }
.radio-inline { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.radio-inline .option-card { padding: 0.6rem 1.1rem; border-radius: 999px; font-weight: 500; font-size: 0.94rem; }

.has-error .input, .has-error .option-card, .has-error .date-btn { border-color: #d6452f; }
.error-msg { margin: 0.35rem 0 0; font-size: 0.83rem; font-weight: 500; color: #b8321d; }
@media (max-width: 640px) { .fields, .fields--3 { grid-template-columns: minmax(0, 1fr); } }

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 2.2rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}
.form-note { max-width: 44ch; margin: 0; font-size: 0.86rem; color: var(--muted); }
.form-error { margin: 1.2rem 0 0; }
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(19, 21, 24, 0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.success { padding: clamp(0.5rem, 2vw, 1rem) 0; text-align: center; }
.success-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--grad);
  color: var(--ink);
  box-shadow: 0 16px 36px -14px rgba(244, 122, 32, 0.8);
}
.success-icon .i { width: 34px; height: 34px; stroke-width: 2.6; }
.success h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.success .lead { margin-inline: auto; }
.summary {
  display: grid;
  gap: 0;
  max-width: 440px;
  margin: 1.8rem auto;
  padding: 0.4rem 1.3rem;
  border-radius: 18px;
  background: var(--paper);
  text-align: left;
}
.summary div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; font-size: 0.94rem; }
.summary div + div { border-top: 1px solid var(--line); }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; font-weight: 600; text-align: right; }

.aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 1rem; }
@media (max-width: 980px) { .aside { position: static; } }
.contact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.9rem;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
}
.contact-card::before { right: -560px; bottom: -600px; }
.contact-card h2 { font-size: 1.3rem; }
.contact-card > p { font-size: 0.94rem; color: rgba(255, 255, 255, 0.65); }
.contact-line { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 0; border-top: 1px solid var(--line-d); }
.contact-line .icon-badge { width: 44px; height: 44px; border-radius: 13px; }
.contact-line .icon-badge .i { width: 21px; height: 21px; }
.contact-line small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.contact-line a, .contact-line span { font-weight: 600; overflow-wrap: anywhere; }
.contact-line a:hover { color: var(--amber); }

/* ---------- Footer ---------- */
.site-footer {
  padding-top: clamp(3.5rem, 7vw, 5rem);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p { max-width: 34ch; margin: 1.2rem 0 0; }
.site-footer h3 {
  margin-bottom: 1.1rem;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer ul { display: grid; gap: 0.65rem; margin: 0; padding: 0; list-style: none; }
.site-footer a { transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; overflow-wrap: anywhere; }
.footer-contact .i { width: 17px; height: 17px; margin-top: 0.2rem; color: var(--amber); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-d);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; } }

/* ---------- Mobile action bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 0.6rem;
    padding: 0.7rem 16px calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(19, 21, 24, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-d);
  }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
}

/* ---------- Simple pages (404 / thank you) ---------- */
.simple-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding-block: 4rem;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.simple-page .lead { margin-inline: auto; }
.simple-page img { width: 96px; margin: 0 auto 1.6rem; }
.simple-page .cta-actions { justify-content: center; margin-top: 2rem; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s !important; }
.reveal-d2 { transition-delay: 0.16s !important; }
.reveal-d3 { transition-delay: 0.24s !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Service area: counties & cities ---------- */
.county-heading { margin: clamp(3rem, 6vw, 4.5rem) 0 1.4rem; font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.county-grid { columns: 3 300px; column-gap: 1rem; }
.county {
  display: block;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  break-inside: avoid;
}
.county h3 { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 0.2rem; font-size: 1.08rem; }
.county h3 .i { width: 18px; height: 18px; color: var(--flame); }
.county-count { margin: 0 0 1rem; font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.county-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; list-style: none; }
.county-list li {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.86rem;
  line-height: 1.5;
}
.area-note { margin: 1rem 0 0; font-size: 0.95rem; color: var(--muted); }
.area-note a { font-weight: 600; color: var(--flame-text); }
