/* ============================================================
   Lynchburg Residential Cleaning — "The Hill City Standard"
   v3 — light, modern, rounded · violet + lavender
   ============================================================ */

:root {
  --ink: #171233;           /* deep indigo (text) */
  --pine: #5335e8;          /* deep violet panel */
  --pine-2: #7250f7;        /* raised violet */
  --moss: #8f6bff;
  --ivory: #ffffff;
  --paper: #f7f5fd;         /* page background */
  --paper-2: #edeafa;       /* tinted section */
  --card: #ffffff;
  --brass: #7a5cfa;
  --brass-2: #d3c8ff;
  --brass-dim: #5636d8;
  --text: #221c44;
  --muted: #625d86;
  --text-on-dark: #f5f2ff;
  --muted-on-dark: #d6cdf6;
  --line: rgba(34, 28, 68, 0.1);
  --line-dark: rgba(255, 255, 255, 0.22);
  --radius-xl: 32px;
  --radius: 20px;
  --radius-sm: 12px;
  --wrap: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-lg: 0 30px 70px -24px rgba(43, 25, 110, 0.3);
  --shadow-sm: 0 12px 34px -16px rgba(43, 25, 110, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  /* Cormorant Garamond defaults to old-style (lowered) figures; force full-height numerals */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "onum" 0;
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--brass); color: #ffffff; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.serif { font-family: var(--serif); font-weight: 600; }

h1 em, h2 em, .section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brass-dim);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before { content: "✦"; font-size: 11px; color: var(--brass); }
.eyebrow.center { justify-content: center; }

.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 20px; }
.lede { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }

.section { padding: 104px 0; position: relative; }
.panel-light { background: var(--paper-2); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.btn-brass {
  background: linear-gradient(135deg, #8a63ff, #6b47f5 55%, #5531e6);
  color: #ffffff;
  box-shadow: 0 14px 30px -12px rgba(107, 71, 245, 0.55);
}
.btn-brass:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(107, 71, 245, 0.7); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-dim); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { transform: translateY(-2px); background: var(--pine-2); }
.btn-lg { padding: 18px 38px; font-size: 16px; }

/* Primary buttons inside violet surfaces flip to white (à la reference) */
:is(.hero, .page-hero, .cta-band, .side-card, .checklist-visual) .btn-brass {
  background: #ffffff;
  color: var(--brass-dim);
  box-shadow: 0 16px 34px -16px rgba(20, 12, 60, 0.5);
}
:is(.hero, .page-hero, .cta-band, .side-card, .checklist-visual) .btn-brass:hover {
  box-shadow: 0 22px 44px -16px rgba(20, 12, 60, 0.6);
}

/* Ghost buttons inside dark surfaces */
:is(.hero, .page-hero, .cta-band, .side-card, .checklist-visual) .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}
:is(.hero, .page-hero, .cta-band, .side-card, .checklist-visual) .btn-ghost:hover {
  border-color: var(--brass-2);
  color: var(--brass-2);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(247, 245, 253, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(43, 25, 110, 0.25);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 50px; height: 50px; flex: none; object-fit: contain; }
.brand-seal {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brass-2);
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.25), transparent 60%), var(--pine);
  box-shadow: inset 0 0 0 3px var(--pine), inset 0 0 0 4px var(--line-dark);
}
.brand-text { line-height: 1.2; }
.brand-name {
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
  white-space: nowrap;
}
.brand-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-dim);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--brass);
  transition: right 0.35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--brass-dim); }
.btn-header { padding: 12px 24px; font-size: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); border-radius: 2px; }
.nav-open .nav-toggle span { background: var(--ivory); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-open .nav-toggle { position: relative; z-index: 101; }

/* ---------- Hero (rounded inset card) ---------- */

.hero {
  margin: 92px 20px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  padding: 110px 0 90px;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1000px 560px at 80% -10%, rgba(143, 107, 255, 0.85), transparent 62%),
    radial-gradient(800px 620px at -8% 108%, rgba(122, 92, 250, 0.22), transparent 58%),
    linear-gradient(160deg, #4526d9 0%, var(--pine) 55%, #7b5aff 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: 0.45; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* soft floating orbs, à la bubbles */
.hero-rings {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero-rings::before, .hero-rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero-rings::before {
  width: 420px; height: 420px;
  right: -90px; top: -120px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 60%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-rings::after {
  width: 300px; height: 300px;
  right: 160px; bottom: -140px;
  background: radial-gradient(circle at 35% 30%, rgba(143, 107, 255, 0.5), transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Masked person cutout, standing on the hero card's bottom edge */
.hero-figure {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: min(43%, 640px);
  z-index: 0;
  pointer-events: none;
}
.hero-figure::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -18%;
  transform: translateX(-50%);
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 55%, transparent 70%);
}
.hero-figure img {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(16, 8, 60, 0.45));
}

.figure-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px -10px rgba(20, 12, 60, 0.5);
  backdrop-filter: blur(6px);
}
.figure-tag::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 2px;
}

.hero-content { position: relative; z-index: 1; }
@media (min-width: 1101px) {
  .hero-content { padding-right: 46%; }
}
@media (max-width: 1100px) {
  .hero-figure { display: none; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
}
.hero-eyebrow .spark { color: var(--brass-2); }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  color: var(--ivory);
  max-width: 17ch;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 em { color: var(--brass-2); font-weight: 500; }

.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted-on-dark);
  max-width: 56ch;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--ivory); font-weight: 600; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Review strip: avatars + stars */
.hero-reviews {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.avatar-row { display: flex; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pine);
  margin-right: -12px;
  display: grid; place-items: center;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(145deg, var(--brass-2), var(--brass));
}
.avatar:nth-child(2) { background: linear-gradient(145deg, #efeaff, #c4b5ff); }
.avatar:nth-child(3) { background: linear-gradient(145deg, var(--brass), var(--brass-dim)); color: var(--ivory); }
.avatar:nth-child(4) { background: linear-gradient(145deg, #8f6bff, var(--moss)); color: var(--ivory); }
.hero-reviews-text { line-height: 1.35; }
.hero-reviews-text .stars { color: #f5c04a; letter-spacing: 3px; font-size: 15px; }
.hero-reviews-text .stars b { color: var(--ivory); font-weight: 800; letter-spacing: 0; margin-left: 6px; }
.hero-reviews-text small { display: block; color: var(--muted-on-dark); font-size: 13.5px; }

/* legacy trust row (interior use) */
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 20px; font-weight: 800; color: var(--brass-2); line-height: 1; }
.trust-item span { font-size: 12.5px; color: var(--muted-on-dark); }
.trust-sep { width: 1px; height: 34px; background: rgba(255, 255, 255, 0.18); }

/* ---------- City marquee ---------- */

.marquee {
  overflow: hidden;
  padding: 26px 0 6px;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 34s linear infinite;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(34, 28, 68, 0.35);
  align-items: center;
}
.marquee-track i { color: var(--brass); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section header row (title + action) ---------- */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.section-head .btn { flex: none; }

/* ---------- Stats band ---------- */

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.stat-big { padding: 8px 28px 0 0; border-left: none; }
.stat-big + .stat-big { border-left: 1px solid var(--line); padding-left: 28px; }
.stat-big strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-big strong i { font-style: normal; color: var(--brass); }
.stat-big h3 { font-size: 16.5px; margin-bottom: 8px; }
.stat-big p { font-size: 14.5px; color: var(--muted); }

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(122, 92, 250, 0.45); }
.service-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dim);
  background: rgba(122, 92, 250, 0.12);
  border-radius: 999px;
  padding: 7px 14px;
}
.service-card h3 { font-size: 23px; }
.service-card p { font-size: 15px; color: var(--muted); flex: 1; }
.service-link {
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass-dim); display: inline-flex; align-items: center; gap: 8px;
}
.service-link::after { content: "→"; transition: transform 0.3s var(--ease); }
.service-card:hover .service-link::after { transform: translateX(5px); }

/* ---------- Pillars (icon-chip cards) ---------- */

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.pillar {
  border-radius: var(--radius);
  padding: 38px 30px;
  background: linear-gradient(165deg, var(--pine-2), var(--pine));
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  right: -80px; bottom: -100px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.14), transparent 70%);
  pointer-events: none;
}
.pillar-glyph {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-size: 24px;
  color: var(--pine);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
.pillar h3 { font-size: 22px; color: var(--ivory); margin-bottom: 10px; }
.pillar p { font-size: 14.5px; color: var(--muted-on-dark); }

/* ---------- Checklist ---------- */

.checklist-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; margin-top: 20px; }
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 26px; margin-top: 30px; }
.check-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.check-item::before {
  content: "✦";
  color: var(--brass);
  font-size: 12px;
  margin-top: 4px;
  flex: none;
}
.checklist-visual {
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--pine-2), var(--pine));
  padding: 46px 40px;
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
}
.checklist-visual .check-item { color: var(--muted-on-dark); border-color: rgba(122, 92, 250, 0.12); }
.checklist-visual::after {
  content: "LRC";
  position: absolute;
  right: -30px; bottom: -60px;
  font-family: var(--serif);
  font-size: 220px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
}
.big-stat { padding: 22px 0; border-bottom: 1px solid rgba(122, 92, 250, 0.16); position: relative; }
.big-stat:last-child { border-bottom: none; }
.big-stat strong {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brass-2);
  display: block;
  line-height: 1.1;
}
.big-stat > span { font-size: 14px; color: var(--muted-on-dark); }

/* ---------- Reviews ---------- */

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-stars { color: #f0b429; letter-spacing: 4px; font-size: 15px; }
.review-card blockquote {
  font-family: var(--serif);
  font-size: 19.5px;
  font-style: italic;
  color: #2b2452;
  line-height: 1.5;
  flex: 1;
}
.review-meta { font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: 0.05em; text-transform: uppercase; }
.review-meta span { display: block; font-weight: 500; color: var(--muted); text-transform: none; letter-spacing: 0; margin-top: 2px; }

/* ---------- Service areas ---------- */

.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.area-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
}
.area-card::after {
  content: "→";
  position: absolute; top: 26px; right: 26px;
  color: var(--brass-dim);
  font-size: 19px;
  transition: transform 0.3s var(--ease);
}
.area-card:hover { transform: translateY(-5px); border-color: rgba(122, 92, 250, 0.5); box-shadow: var(--shadow-lg); }
.area-card:hover::after { transform: translateX(5px); }
.area-card h3 { font-size: 22px; margin-bottom: 8px; }
.area-card .area-zip {
  font-size: 11px; letter-spacing: 0.18em; color: var(--brass-dim); text-transform: uppercase; font-weight: 800;
  display: inline-block; margin-bottom: 12px;
  background: rgba(122, 92, 250, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
}
.area-card p { font-size: 14.5px; color: var(--muted); }
.areas-note { margin-top: 34px; text-align: center; font-size: 15px; color: var(--muted); }
.areas-note strong { color: var(--brass-dim); font-weight: 700; }

/* ---------- FAQ ---------- */

/* FAQ: Q&A list + photo panel (reference layout) */
.lede-link {
  color: var(--brass-dim);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.lede-link:hover { color: var(--brass); }
.faq-photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  margin-top: 60px;
  align-items: stretch;
}
.faq-qa {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 38px;
}
.qa-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  display: grid; place-items: center;
  font-size: 19px;
  font-weight: 700;
  color: var(--brass-dim);
  box-shadow: 0 6px 16px -8px rgba(43, 25, 110, 0.18);
}
.faq-qa h3 { font-size: 19px; margin: 10px 0 8px; }
.faq-qa p { font-size: 15.5px; color: var(--muted); max-width: 54ch; }
.faq-photo {
  border-radius: var(--radius);
  background:
    radial-gradient(560px 420px at 70% 20%, rgba(122, 92, 250, 0.14), transparent 65%),
    var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  padding: 48px 40px;
  min-height: 420px;
}
.faq-photo img { max-width: min(360px, 80%); height: auto; }

.faq-split {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 64px;
  align-items: start;
}
.faq-side { position: sticky; top: 110px; }
.side-q-card {
  margin-top: 34px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 30px 28px;
}
.side-q-card h3 { font-size: 19px; margin-bottom: 8px; }
.side-q-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.side-q-card .btn { width: 100%; }

.faq-list { max-width: 820px; margin: 0 auto; }
.section > .wrap > .faq-list { margin-top: 54px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: rgba(122, 92, 250, 0.5); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 20px 22px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--brass-dim); }
.faq-q .faq-icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(122, 92, 250, 0.5);
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--brass-dim);
  transition: transform 0.35s var(--ease), background 0.35s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(122, 92, 250, 0.15); }
.faq-item.open .faq-q { background: rgba(122, 92, 250, 0.07); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 18px 22px 24px; font-size: 15px; color: var(--muted); max-width: 68ch; }

/* ---------- CTA band (rounded inset card) ---------- */

.cta-band {
  margin: 0 20px 90px;
  border-radius: var(--radius-xl);
  padding: 96px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(700px 380px at 50% 130%, rgba(122, 92, 250, 0.28), transparent 65%),
    radial-gradient(500px 300px at 88% -20%, rgba(143, 107, 255, 0.8), transparent 65%),
    linear-gradient(160deg, #4526d9, var(--pine) 60%, #7b5aff);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: var(--ivory);
  max-width: 22ch;
  margin: 0 auto 16px;
  letter-spacing: -0.03em;
}
.cta-band h2 em { color: var(--brass-2); font-weight: 500; }
.cta-band p { color: var(--muted-on-dark); max-width: 54ch; margin: 0 auto 38px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone-line { margin-top: 26px; font-size: 15px; color: var(--muted-on-dark); }
.cta-phone-line a { color: var(--brass-2); font-weight: 800; }

/* ---------- Page hero (interior, rounded inset card) ---------- */

.page-hero {
  margin: 92px 20px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  padding: 90px 0 76px;
  box-shadow: var(--shadow-lg);
}
.page-hero .hero-bg { z-index: -2; }
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  color: var(--ivory);
  max-width: 22ch;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.page-hero h1 em { color: var(--brass-2); font-weight: 500; }
.page-hero .lede { font-size: 1.1rem; color: var(--muted-on-dark); }
.page-hero .lede a { color: var(--brass-2); font-weight: 700; }
.page-hero .eyebrow { color: var(--brass-2); }
.breadcrumbs {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-on-dark);
  margin-bottom: 26px;
}
.breadcrumbs a { color: var(--brass-2); font-weight: 600; }
.breadcrumbs span.sep { color: var(--brass-dim); }

/* Dark-surface section titles/eyebrows inside hero/page-hero keep light text */
:is(.hero, .page-hero) .section-title { color: var(--ivory); }

/* ---------- Prose / location content ---------- */

.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin: 46px 0 16px; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.3rem; margin: 34px 0 12px; }
.prose p { margin-bottom: 18px; font-size: 16.5px; color: var(--muted); }
.prose p strong { color: var(--ink); }
.prose ul { margin: 0 0 22px; }
.prose ul li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 16px;
  color: var(--muted);
}
.prose ul li strong { color: var(--ink); }
.prose ul li::before {
  content: "✦";
  position: absolute; left: 2px; top: 9px;
  color: var(--brass);
  font-size: 12px;
}
.prose a { color: var(--brass-dim); font-weight: 700; border-bottom: 1px solid rgba(122, 92, 250, 0.4); }
.prose a:hover { color: var(--brass); }

.content-split { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.side-card {
  position: sticky; top: 110px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--pine-2), var(--pine));
  padding: 36px 30px;
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
}
.side-card h3 { color: var(--ivory); font-size: 23px; margin-bottom: 10px; }
.side-card p { color: var(--muted-on-dark) !important; font-size: 14.5px; margin-bottom: 22px; }
.side-card .btn { width: 100%; margin-bottom: 12px; }
.side-links { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(122, 92, 250, 0.18); }
.side-links strong { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 12px; }
.side-links a { display: block; padding: 7px 0; font-size: 14.5px; color: var(--muted-on-dark); border-bottom: none !important; }
.side-links a:hover { color: var(--brass-2); }

/* ---------- Forms ---------- */

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(122, 92, 250, 0.18);
}
.form-note { grid-column: 1 / -1; font-size: 13px; color: var(--muted); }

/* ---------- Quote builder (booknow) ---------- */

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 44px;
  align-items: start;
}
.q-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px 30px;
  margin-bottom: 22px;
}
.q-title { font-size: 21px; margin-bottom: 6px; }
.q-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.q-title + .q-grid-2 { margin-top: 18px; }
.q-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.q-grid-2 .full { grid-column: 1 / -1; }
.q-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  cursor: pointer;
}
.q-check input { width: 17px; height: 17px; accent-color: var(--brass); }
.q-legal { font-size: 13px; color: var(--muted); margin: 6px 0 16px; }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.extra-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 18px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.extra-card:hover { border-color: var(--brass); transform: translateY(-2px); }
.extra-card.selected {
  border-color: var(--brass);
  background: rgba(122, 92, 250, 0.08);
  box-shadow: 0 8px 20px -12px rgba(122, 92, 250, 0.5);
}
.extra-icon { font-size: 26px; line-height: 1; }
.extra-label { font-size: 12.5px; font-weight: 700; color: var(--text); line-height: 1.35; }
.extra-price {
  font-size: 11.5px; font-weight: 800; color: var(--brass-dim);
  background: rgba(122, 92, 250, 0.1);
  padding: 3px 10px; border-radius: 999px;
}
.extra-card.selected .extra-price { background: var(--brass); color: #fff; }

.freq-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.freq-btn {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: 16px 10px;
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  display: flex; flex-direction: column; gap: 3px; align-items: center;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.freq-btn span { font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.freq-btn:hover { border-color: var(--brass); }
.freq-btn.active {
  background: linear-gradient(135deg, #8a63ff, #6b47f5 55%, #5531e6);
  border-color: transparent;
  color: #fff;
}
.freq-btn.active span { color: rgba(255, 255, 255, 0.85); }

.summary-card {
  position: sticky; top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.summary-head {
  background: linear-gradient(135deg, #7250f7, #5335e8);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 18px;
}
.summary-body { padding: 24px 24px 26px; }
.sum-line {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  padding: 7px 0;
}
.sum-line.sub { font-weight: 500; color: var(--muted); padding-left: 14px; font-size: 13.5px; }
.sum-line.discount { color: #1e8a4a; }
.summary-meta {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--muted); font-weight: 600;
}
.summary-total {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary-total span { font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.summary-total strong { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; color: var(--brass-dim); }
.summary-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.summary-note:first-of-type { color: #1e8a4a; font-weight: 700; }

@media (max-width: 1024px) {
  .quote-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; order: -1; }
  .extras-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .q-grid-2 { grid-template-columns: 1fr; }
  .extras-grid, .freq-row { grid-template-columns: 1fr 1fr; }
  .q-section { padding: 24px 20px; }
}

/* ---------- Footer (light, with hours + mega wordmark) ---------- */

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
  font-size: 14.5px;
  overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { color: var(--muted); margin: 18px 0 22px; max-width: 34ch; }
.footer-col strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-dim);
  margin-bottom: 18px;
}
.footer-col a { display: block; padding: 6px 0; color: var(--muted); transition: color 0.25s; font-weight: 500; }
.footer-col a:hover { color: var(--ink); }
.footer-contact div { padding: 5px 0; color: var(--muted); }
.footer-contact a { display: inline; padding: 0; color: var(--ink); font-weight: 700; }

.footer-hours { width: 100%; border-collapse: collapse; }
.footer-hours td { padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.footer-hours td:last-child { text-align: right; color: var(--ink); font-weight: 700; white-space: nowrap; }
.footer-hours tr:last-child td { border-bottom: none; }

.footer-mega {
  font-weight: 800;
  font-size: clamp(3.6rem, 12.5vw, 11rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-align: center;
  color: var(--ink);
  user-select: none;
  margin: 10px 0 -0.14em;
  white-space: nowrap;
}
.footer-mega em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--brass); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom .hill { color: var(--brass-dim); font-weight: 700; }

/* ---------- Reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav {
    /* the header's backdrop-filter makes it the containing block for
       fixed descendants, so size the overlay explicitly to the viewport */
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(23, 18, 51, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    z-index: 99;
  }
  .nav a { font-size: 24px; font-weight: 700; color: var(--ivory); }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--brass-2); }
  .nav-open .nav { opacity: 1; pointer-events: auto; }
}

@media (max-width: 1024px) {
  .services-grid, .pillars, .reviews-grid, .areas-grid { grid-template-columns: 1fr 1fr; }
  .checklist-grid, .content-split, .faq-split, .faq-photo-grid { grid-template-columns: 1fr; }
  .faq-photo { min-height: 320px; order: -1; }
  .side-card, .faq-side { position: static; }
  .faq-split { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr; gap: 0; }
  .stat-big { padding: 22px 0; border-left: none !important; border-top: 1px solid var(--line); }
  .stat-big:first-child { border-top: none; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero, .page-hero, .cta-band { margin-left: 12px; margin-right: 12px; }
  .hero { padding: 84px 0 64px; min-height: auto; }
  .page-hero { padding: 70px 0 58px; }
  .services-grid, .pillars, .reviews-grid, .areas-grid { grid-template-columns: 1fr; }
  .check-cols { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .header-phone { display: none; }
  .btn-header { display: none; }
  .brand-name { font-size: 15px; }
  .brand-tag { font-size: 8.5px; letter-spacing: 0.24em; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.16em; padding: 8px 16px; }
  .footer-mega { white-space: normal; }
}

/* ---------- Chat widget ---------- */

.chat-launcher {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 200;
  display: flex; align-items: center; gap: 12px;
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.chat-launcher.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
.chat-launcher .cl-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a63ff, #6b47f5 55%, #5531e6);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -10px rgba(107, 71, 245, 0.65);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.chat-launcher:hover .cl-btn { transform: translateY(-3px) scale(1.04); }
.chat-launcher .cl-dot {
  position: absolute; top: 3px; right: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #35d073;
  border: 2px solid #fff;
}
.chat-launcher .cl-label {
  background: var(--card);
  color: var(--ink);
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  order: -1;
}

.chat-panel {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 201;
  width: min(370px, calc(100vw - 32px));
  max-height: min(600px, calc(100dvh - 44px));
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 30px 80px -20px rgba(23, 18, 51, 0.5);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.chat-panel.open { opacity: 1; pointer-events: auto; transform: none; }

.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #7250f7, #5335e8);
  color: #fff;
}
.chat-h-avatar {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 3px;
}
.chat-h-meta { flex: 1; line-height: 1.25; }
.chat-h-meta strong { display: block; font-size: 14.5px; font-weight: 800; }
.chat-h-meta span { font-size: 12px; opacity: 0.85; }
.chat-close { color: #fff; font-size: 15px; padding: 6px 8px; opacity: 0.85; }
.chat-close:hover { opacity: 1; }

.chat-progress { height: 3px; background: rgba(83, 53, 232, 0.14); }
.chat-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #8a63ff, #5531e6); transition: width 0.4s var(--ease); }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 9px;
  min-height: 220px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--card);
  color: var(--text);
  border-bottom-left-radius: 5px;
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}
.chat-msg.user {
  background: linear-gradient(135deg, #8a63ff, #6b47f5);
  color: #fff;
  border-bottom-right-radius: 5px;
  align-self: flex-end;
}
.chat-msg.summary {
  background: var(--card);
  align-self: stretch;
  max-width: none;
  box-shadow: var(--shadow-sm);
}
.chat-msg.summary b { color: var(--brass-dim); font-size: 13px; }
.chat-msg.summary dl { display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; margin-top: 8px; }
.chat-msg.summary dt { font-weight: 800; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.chat-msg.summary dd { font-size: 13.5px; color: var(--text); word-break: break-word; }

.chat-typing {
  align-self: flex-start;
  background: var(--card);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
  padding: 12px 14px;
  display: flex; gap: 4px;
  box-shadow: var(--shadow-sm);
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  animation: chat-bounce 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-bounce { 0%, 60%, 100% { transform: none; opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-quick {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 14px 10px;
  max-height: 168px;
  overflow-y: auto;
  flex: none;
}
.chat-quick button {
  border: 1.5px solid rgba(122, 92, 250, 0.4);
  color: var(--brass-dim);
  background: var(--card);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.chat-quick button:hover { background: var(--brass); border-color: var(--brass); color: #fff; }

.chat-actions { display: flex; flex-direction: column; gap: 8px; align-self: stretch; }
.chat-action {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(122, 92, 250, 0.4);
  color: var(--brass-dim);
  background: var(--card);
}
.chat-action.primary {
  background: linear-gradient(135deg, #8a63ff, #6b47f5 55%, #5531e6);
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(107, 71, 245, 0.6);
}

.chat-input-row {
  display: flex; align-items: flex-end; gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: var(--card);
}
.chat-input {
  flex: 1;
  border: none;
  resize: none;
  font: inherit;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  max-height: 110px;
  padding: 8px 4px;
}
.chat-input:focus { outline: none; }
.chat-send {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a63ff, #5531e6);
  color: #fff;
  display: grid; place-items: center;
}
.chat-send:disabled { opacity: 0.4; }

.chat-fine {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  padding: 0 12px 10px;
  background: var(--card);
}
.chat-fine a { color: var(--brass-dim); font-weight: 700; }

@media (max-width: 480px) {
  .chat-launcher .cl-label { display: none; }
  .chat-panel { right: 16px; bottom: 16px; }
}

.chat-quote-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line);
}
.chat-quote-total span { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.chat-quote-total strong { font-size: 26px; font-weight: 800; color: var(--brass-dim); letter-spacing: -0.02em; }
.chat-quote-save { font-size: 12.5px; font-weight: 700; color: #1e8a4a; margin-top: 4px; }
