:root {
  --ink: #2a2941;
  --ink-soft: #5c5a7a;
  --mint: #32edbb;
  --amber: #fec34e;
  --lavender: #a694fe;
  --violet: #4840ff;
  --paper: #f0edff;
  --white: #ffffff;
  --success: #0b8f6c;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display: "Outfit", Inter, sans-serif;
  --max: 1120px;
  --touch: 44px;
  --radius: 24px;
  --shadow: 5px 5px 0 var(--ink);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); scroll-padding-top: 96px; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  padding-bottom: 72px;
}
::selection { background: var(--amber); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

/* WCAG: skip link + screen reader */
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: 999px; font-weight: 800;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}
.btn:focus-visible, .slot-btn:focus-visible, .preset:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

@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;
  }
}

.atmosphere {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px 380px at 8% -8%, rgba(50, 237, 187, 0.35), transparent 58%),
    radial-gradient(680px 360px at 96% 4%, rgba(166, 148, 254, 0.42), transparent 55%),
    radial-gradient(640px 420px at 50% 100%, rgba(254, 195, 78, 0.28), transparent 50%);
}
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(42, 41, 65, 0.1) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}
.wrap { position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800; letter-spacing: -0.04em; font-size: 18px;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 10px;
  border: 2.5px solid var(--ink); background: var(--mint);
  display: grid; place-items: center;
  box-shadow: 2px 2px 0 var(--ink); font-size: 16px;
}
.nav-links { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.nav-links a {
  min-height: var(--touch); display: inline-flex; align-items: center;
  padding: 0.45rem 0.9rem; border: 3px solid transparent; border-radius: 999px;
}
.nav-links a:hover { color: var(--ink); background: var(--paper); border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--touch);
  border: 3px solid var(--ink); border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--display); font-weight: 800; font-size: 14px;
  background: var(--white); color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 3px 3px 0 var(--ink); }
.btn-primary { background: var(--mint); }
.btn-amber { background: var(--amber); }
.btn-ghost { background: var(--white); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 5px 5px 0 var(--amber); }
.btn-lg { padding: 14px 22px; font-size: 15px; min-height: 52px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.brand-hero {
  font-family: var(--display); font-weight: 800; font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -0.04em; margin: 0 0 8px; color: var(--ink);
}
.hero { padding: 48px 0 36px; text-align: center; }
.hero h1 {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.04em;
  font-size: clamp(32px, 5.5vw, 56px); line-height: 1.08;
  margin: 0 auto 14px; max-width: 920px;
}
.hero h1 em { font-style: normal; color: var(--violet); }
.lead { max-width: 560px; margin: 0 auto 22px; color: var(--ink-soft); font-size: 18px; line-height: 1.55; font-weight: 500; }
.section-lead { margin-left: 0; margin-right: 0; margin-bottom: 24px; }

.trust-row {
  list-style: none; padding: 0; margin: 22px auto 0;
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--ink-soft);
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 8px;
}
.trust-row li::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--mint); border: 2px solid var(--ink); box-shadow: 1px 1px 0 var(--ink);
}

.trades {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 28px auto 0;
}
.trade {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 40px;
  padding: 8px 14px; border-radius: 999px;
  border: 3px solid var(--ink); background: var(--white);
  font-weight: 800; font-size: 13px;
  box-shadow: 3px 3px 0 var(--ink);
}
.trade:nth-child(1) { background: var(--mint); }
.trade:nth-child(2) { background: var(--lavender); }
.trade:nth-child(3) { background: var(--amber); }
.trade:nth-child(4) { background: #fff; }
.trade:nth-child(5) { background: #d8d4ff; }
.trade:nth-child(6) { background: #fff7d6; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.hero .lead { max-width: 680px; }
.hero-hook {
  margin: 22px auto 0;
  max-width: 520px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
}
.hero-demo { padding-top: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.hero-demo .phone { transform: none; }
.demo-cap {
  margin: 0;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
}
.audience {
  margin: 14px 0 0;
  text-align: center;
  font-weight: 800;
  color: var(--ink);
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 8px auto 0;
}
.compare-col {
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 22px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}
.compare-col.before { background: #f4f3f8; }
.compare-col.after { background: #e8fff7; }
.compare-col ul { margin: 0; padding: 0; list-style: none; }
.compare-col li {
  font-weight: 700;
  padding: 8px 0;
  border-top: 2px solid rgba(42,41,65,.12);
}
.compare-col li:first-of-type { border-top: 0; }
.spine {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.spine li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 2px 2px 0 var(--ink);
}
.steps-4 { grid-template-columns: repeat(4, 1fr); }
.step:nth-child(4) { background: var(--amber); }

.lost-grid, .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 20px;
}
.lost-card, .stat-card {
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  margin: 0;
}
.lost-card b, .stat-card b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 4px 0 2px;
}
.lost-card p, .stat-card p {
  margin: 0;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 14px;
}
.lost-card:nth-child(1) { background: #fff8e8; }
.lost-card:nth-child(2) { background: #f3efff; }
.lost-card:nth-child(3) { background: #e8fff7; }
.wa-bubble {
  max-width: 540px;
  margin: 0 0 18px;
  padding: 16px 18px;
  background: #d9fdd3;
  border: 3px solid var(--ink);
  border-radius: 22px 22px 22px 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 700;
  line-height: 1.45;
}
.problem-quotes {
  max-width: 540px;
  margin: 8px auto 0;
  display: grid;
  gap: 10px;
}
.problem-quotes p {
  margin: 0;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  border-radius: 20px 20px 20px 8px;
  background: var(--white);
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
}
.problem-quotes p:nth-child(even) { background: #fff8e8; }
.dash-panel {
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}
.dash-panel h3 { font-family: var(--display); margin: 18px 0 10px; }
.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-weight: 700;
}
.dash-table th, .dash-table td {
  border: 2.5px solid var(--ink);
  padding: 10px 12px;
  text-align: left;
}
.dash-table th { background: var(--paper); font-family: var(--display); }
.dash-table td:nth-child(2), .dash-table td:nth-child(3),
.dash-table th:nth-child(2), .dash-table th:nth-child(3) { text-align: right; }
.dash-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.report-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}
.seo-links a { text-decoration: underline; text-underline-offset: 3px; }
.seo-hero { padding-top: 40px; text-align: left; }
.seo-hero h1 { text-align: left; margin-left: 0; max-width: 900px; font-size: clamp(28px, 5vw, 48px); }
.seo-hero .lead { margin-left: 0; max-width: 680px; }
.seo-figure {
  margin: 24px 0 8px;
  max-width: 720px;
}
.hero .seo-figure { margin: 28px auto 0; }
.seo-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  background: #fff;
}
.seo-prose { max-width: 720px; }
.seo-prose p {
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 16px;
}
.seo-prose h2 { margin-top: 12px; }
.seo-note {
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: #fff8e8;
  font-weight: 700;
  line-height: 1.45;
}
.crumbs { font-weight: 800; font-size: 13px; color: var(--ink-soft); margin: 0 0 16px; }
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.define {
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}
.define p { margin: 0; color: var(--ink); font-weight: 600; line-height: 1.6; }
.seo-prose .define p { color: var(--ink); margin: 0; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.blog-card {
  display: block;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 20px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}
.blog-card h3 { font-family: var(--display); font-size: 20px; margin: 0 0 8px; letter-spacing: -0.03em; }
.blog-card p { margin: 0; font-weight: 600; color: var(--ink-soft); }
.article-meta { font-weight: 700; font-size: 13px; color: var(--ink-soft); margin: 0 0 18px; }
.know-block { margin: 0 0 48px; }
.know-block h2 { font-size: clamp(22px, 3.4vw, 30px); }
.blog-card .mini-label { margin: 0 0 10px; }
.local-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin: 20px 0 28px; }
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
}

section { padding: 64px 0; }
.kicker {
  color: var(--violet); font-family: var(--display); font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 10px;
}
h2 {
  font-family: var(--display); font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.1; margin: 0 0 12px;
}
.center { text-align: center; }
.center .lead, .center h2, .center .kicker { margin-left: auto; margin-right: auto; }

.section-head {
  display: flex; justify-content: space-between; gap: 20px; align-items: end;
  flex-wrap: wrap; margin-bottom: 8px;
}
.search-field { width: min(320px, 100%); }
.search-field input {
  width: 100%; min-height: var(--touch);
  padding: 11px 14px; border: 3px solid var(--ink); border-radius: 14px;
  background: var(--white); font-weight: 600; font-family: inherit;
}

/* Steps: progressive disclosure / recognition */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.step {
  border: 3px solid var(--ink); border-radius: var(--radius); padding: 22px;
  background: var(--white); box-shadow: 6px 6px 0 var(--ink);
}
.step:nth-child(2) { background: #fff8e8; }
.step:nth-child(3) { background: #f3efff; }
.step-num {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid var(--ink); background: var(--mint);
  font-family: var(--display); font-weight: 800; margin-bottom: 12px;
  box-shadow: 2px 2px 0 var(--ink);
}
.step h3 { font-family: var(--display); margin: 0 0 8px; font-size: 20px; }
.step p { margin: 0; color: var(--ink-soft); font-weight: 600; }
.steps.steps-4 { grid-template-columns: repeat(4, 1fr); }

.benefit-list { list-style: none; padding: 0; margin: 20px 0 0; }
.benefit-list li {
  padding: 14px 0; border-top: 3px solid rgba(42, 41, 65, 0.12);
  color: var(--ink-soft); font-weight: 600;
}
.benefit-list strong { display: block; color: var(--ink); font-family: var(--display); font-size: 17px; margin-bottom: 4px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 280px; height: 600px; border-radius: 38px; padding: 10px;
  background: var(--ink); box-shadow: 10px 12px 0 var(--lavender);
  transform: rotate(2deg);
}
.phone-screen {
  height: 100%; border-radius: 30px; background: var(--paper);
  overflow: hidden; display: flex; flex-direction: column;
}
.notch { width: 108px; height: 18px; background: var(--ink); border-radius: 0 0 14px 14px; margin: 0 auto; }
.ph-top { padding: 10px 16px 6px; font-weight: 800; display: flex; justify-content: space-between; }
.ph-body { padding: 8px 14px 16px; flex: 1; }
.day {
  background: var(--white); border: 3px solid var(--ink); border-radius: 16px;
  padding: 12px; margin-bottom: 10px; box-shadow: 3px 3px 0 var(--ink);
}
.day b { display: block; font-family: var(--display); font-size: 22px; }
.slot {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 9px 0; border-top: 2px solid rgba(42,41,65,.12);
  font-size: 12px; font-weight: 700;
}
.tag { padding: 2px 8px; border-radius: 999px; border: 2px solid var(--ink); font-size: 11px; }
.ok { background: var(--mint); }
.warn { background: var(--amber); }

.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.quotes-compact { grid-template-columns: repeat(2, 1fr); }
.quote {
  border: 3px solid var(--ink); border-radius: 22px; padding: 20px;
  background: var(--white); box-shadow: var(--shadow); margin: 0;
}
.quote:nth-child(even) { background: #faf9ff; }
.quote p { margin: 0 0 12px; font-weight: 600; line-height: 1.5; }
.quote footer, .quote cite { color: var(--ink-soft); font-weight: 800; font-style: normal; font-size: 14px; }

.faq { display: grid; gap: 10px; margin-top: 20px; max-width: 720px; }
.faq-item {
  border: 3px solid var(--ink); border-radius: 18px; background: var(--white);
  box-shadow: 4px 4px 0 var(--ink); padding: 0 18px;
}
.faq-item summary {
  cursor: pointer; font-weight: 800; font-family: var(--display);
  min-height: var(--touch); display: flex; align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; margin-left: auto; font-size: 22px; line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 16px; color: var(--ink-soft); font-weight: 600; }

.cta-band {
  text-align: center; border: 3px solid var(--ink); border-radius: 32px;
  padding: 48px 24px; background: var(--mint); box-shadow: 8px 8px 0 var(--ink);
}
.cta-band .lead { color: var(--ink); max-width: 520px; margin-left: auto; margin-right: auto; }

footer { padding: 40px 0 28px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.foot { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 3px solid var(--ink); }
.foot nav { display: flex; flex-wrap: wrap; gap: 16px; font-weight: 800; }
.foot nav a { min-height: var(--touch); display: inline-flex; align-items: center; }
.copy { padding-top: 18px; }

.legal { max-width: 720px; padding: 64px 0 80px; }
.legal p { color: var(--ink-soft); line-height: 1.65; font-weight: 500; }

.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border-top: 3px solid var(--ink);
  transition: transform 0.22s ease;
}
.mobile-cta.is-away { transform: translateY(110%); pointer-events: none; }
.mobile-cta .btn { width: 100%; }

.salon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.salon-card {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
  transition: transform 0.15s ease;
}
.salon-card:hover { transform: translate(-2px, -2px); }
.salon-photo {
  display: block;
  height: 180px;
  background: #ddd center/cover no-repeat;
  position: relative;
}
.salon-photo.tall { height: 220px; border-radius: 18px; border: 3px solid var(--ink); margin: 12px 0 22px; }
.salon-badge {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--mint); border: 2.5px solid var(--ink);
  border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 800;
}
.salon-body { padding: 16px; }
.salon-body h3 { margin: 0 0 6px; font-family: var(--display); }
.salon-body p { margin: 0 0 14px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.row-btns { display: flex; flex-wrap: wrap; gap: 8px; }

.privacy-pills { margin: 0 0 18px; }
.client-preview {
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  margin: 8px auto 0;
}
.client-preview-cover {
  height: 150px;
  background: #ddd center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}
.client-preview-cover span {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
}
.client-preview-body { padding: 16px 16px 18px; }
.client-preview-q {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 14px;
}
.client-preview-chips, .client-preview-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.client-preview-chips span, .client-preview-slots span {
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
  background: var(--paper);
}
.client-preview-chips span.on, .client-preview-slots span.on {
  background: var(--mint);
}

.salon-hero {
  min-height: 280px; border: 3px solid var(--ink); border-radius: 28px;
  background: #ccc center/cover no-repeat; box-shadow: 8px 8px 0 var(--ink);
  display: flex; align-items: flex-end; margin-bottom: 28px;
}
.salon-hero-card {
  margin: 18px; background: var(--white); border: 3px solid var(--ink);
  border-radius: 20px; padding: 18px 20px; box-shadow: 4px 4px 0 var(--ink);
}
.salon-hero-card h1 { margin: 8px 0 6px; font-size: clamp(24px, 4vw, 32px); font-family: var(--display); }
.salon-hero-card p { margin: 0; color: var(--ink-soft); font-weight: 600; }
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-top: 2px solid rgba(42,41,65,.12); font-weight: 700; }
.book-box, .cfg-form, .book-sheet {
  border: 3px solid var(--ink); border-radius: var(--radius); padding: 22px;
  background: var(--white); box-shadow: 6px 6px 0 var(--ink);
}
.book-box.sticky-book { position: sticky; top: 88px; }
.book-steps {
  display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 16px;
  font-size: 12px; font-weight: 800; color: var(--ink-soft);
}
.book-steps span {
  padding: 6px 10px; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper);
}
.book-steps span.on { background: var(--mint); color: var(--ink); }
.book-box label, .cfg-form label, .auth-card label, .book-sheet label {
  display: block; font-weight: 800; font-size: 13px; margin: 12px 0;
}
.field-hint { display: block; margin-top: 4px; font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.book-box input, .cfg-form input, .cfg-form textarea, .cfg-form select, .auth-card input, .book-sheet input {
  width: 100%; margin-top: 6px; min-height: var(--touch); padding: 11px 12px;
  border: 3px solid var(--ink); border-radius: 12px; background: var(--paper); font-weight: 600;
  font-family: inherit;
}
.book-box input:focus, .cfg-form input:focus, .cfg-form textarea:focus, .cfg-form select:focus, .auth-card input:focus, .book-sheet input:focus {
  background: var(--white);
}
.svc-list { display: grid; gap: 8px; margin-bottom: 8px; }
.svc {
  display: flex; gap: 10px; align-items: center; padding: 12px;
  border: 2.5px solid var(--ink); border-radius: 14px; font-weight: 600;
  cursor: pointer; min-height: var(--touch);
}
.svc:has(input:checked) { background: #e8fff7; border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.mini-label { font-weight: 800; font-size: 13px; margin: 12px 0 8px; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.slot-btn {
  border: 2.5px solid var(--ink); border-radius: 12px; background: var(--paper);
  min-height: var(--touch); min-width: 64px;
  padding: 8px 12px; font-weight: 800; font-size: 13px;
}
.slot-btn.on { background: var(--mint); }
.slot-btn.taken { opacity: 0.35; text-decoration: line-through; }
.ok-msg {
  color: var(--success); font-weight: 800;
  margin-top: 12px; padding: 12px; border-radius: 14px;
  background: #e8fff7; border: 2px solid var(--success);
}
.muted { color: var(--ink-soft); font-weight: 600; }
.cfg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.cfg-grid .full { grid-column: 1 / -1; }
.cfg-section {
  margin-top: 28px; padding-top: 22px;
  border-top: 3px solid rgba(42,41,65,.12);
}
.cfg-section h3 { margin: 0 0 6px; }
.hours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0 24px; }
.svc-row { display: grid; grid-template-columns: 1fr 90px 90px 44px; gap: 8px; margin-bottom: 8px; }
.cfg-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
h3 { font-family: var(--display); }

.auth-wrap { min-height: 70vh; display: grid; place-items: center; padding: 40px 0 80px; }
.auth-card {
  width: min(460px, 100%);
  border: 3px solid var(--ink); border-radius: 28px; padding: 28px;
  background: var(--white); box-shadow: 8px 8px 0 var(--ink);
}
.auth-card h1 { font-family: var(--display); font-size: 28px; margin: 0 0 10px; line-height: 1.15; }
.auth-trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px;
  font-size: 12px; font-weight: 800; color: var(--ink-soft);
}
.auth-trust span {
  padding: 6px 10px; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper);
}
.btn-google {
  background: #fff;
  color: var(--ink);
  font-family: Inter, sans-serif;
  font-weight: 700;
}
.btn-google .google-g { flex-shrink: 0; }
.auth-or {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 16px 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.auth-or::before, .auth-or::after {
  content: "";
  height: 2px;
  background: var(--ink);
  opacity: 0.18;
}

.panel-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; }
.empty-card {
  border: 3px dashed var(--ink); border-radius: var(--radius); padding: 32px;
  background: rgba(255,255,255,.7); text-align: center;
}
.empty-card h3 { margin-top: 0; }
.photo-presets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 10px 0; width: 100%; }
.preset {
  height: 140px; width: 100%; border: 3px solid var(--ink); border-radius: 18px;
  background: #ddd center/cover no-repeat; cursor: pointer; position: relative; overflow: hidden;
  padding: 0;
}
.preset:hover, .preset:focus-visible, .preset.on { box-shadow: 3px 3px 0 var(--ink); }
.preset.on { outline: 3px solid var(--mint); outline-offset: 2px; }
.preset span {
  position: absolute; left: 8px; bottom: 8px;
  background: var(--white); border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 10px; font-size: 12px; font-weight: 800;
}
.share-box { margin-top: 18px; padding: 14px; border: 3px solid var(--ink); border-radius: 18px; background: #fff8dc; }
.share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.share-row input { flex: 1; min-width: 180px; }
.check-line { display: flex !important; align-items: center; gap: 10px; font-weight: 700; min-height: var(--touch); }
.check-line input { width: auto !important; margin: 0; min-height: 20px; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-user { font-size: 12px; font-weight: 700; color: var(--ink-soft); max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
.booking-list { display: grid; gap: 10px; }
.booking-item {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  border: 3px solid var(--ink); border-radius: 18px; padding: 14px 16px; background: var(--white);
}
.booking-item p { margin: 4px 0 0; }
.booking-when { font-weight: 800; white-space: nowrap; display: grid; gap: 8px; justify-items: end; text-align: right; }
.booking-when .tag { justify-self: end; }

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 80;
  transform: translate(-50%, 120%);
  background: var(--ink); color: #fff; font-weight: 800;
  padding: 12px 18px; border-radius: 999px; box-shadow: var(--shadow);
  border: 3px solid var(--ink); max-width: min(90vw, 420px);
  text-align: center; pointer-events: none; opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.agenda-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.agenda-filters .btn.on { background: var(--mint); }
.trade { cursor: pointer; }
button.trade { font: inherit; }

.wizard-wrap { max-width: 560px; padding: 36px 0 80px; }
.wiz-dots {
  display: flex; gap: 8px; margin: 0 0 22px;
}
.wiz-dots button {
  width: 12px; height: 12px; padding: 0; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--paper); min-width: 12px; min-height: 12px;
}
.wiz-dots button.on { background: var(--mint); }
.wiz-dots button.done { background: var(--ink); }
.day-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.day-pill {
  min-height: var(--touch); min-width: 52px;
  border: 2.5px solid var(--ink); border-radius: 14px;
  background: var(--paper); font-weight: 800; font-size: 13px; padding: 8px 12px;
}
.day-pill.on { background: var(--mint); }
.time-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cfg-form.wizard { padding: 22px; overflow: visible; }
.wiz-step[hidden], #wizBack[hidden], #wizNav[hidden] { display: none !important; }
.wizard .cfg-preview { display: none; }
.svc-row.simple {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.svc-row.simple input {
  width: auto;
  min-width: 0;
  margin-top: 0;
}
.svc-row.simple input[data-k="name"] { flex: 1; }
.price-field {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin: 0 !important;
  font-weight: 800;
  flex: none;
  white-space: nowrap;
}
.price-field input {
  width: 84px !important;
  margin-top: 0 !important;
}
.icon-del {
  flex: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.menu-btn {
  display: none;
  place-items: center;
  flex: none;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  overflow: hidden;
  line-height: 0;
}
.menu-btn svg {
  display: block;
  width: 16px;
  height: 12px;
  flex: none;
}

.wa-flow {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.wa-flow li {
  border: 3px solid var(--ink); border-radius: 20px; padding: 18px;
  background: var(--white); box-shadow: 4px 4px 0 var(--ink);
  font-weight: 600; color: var(--ink-soft);
}
.wa-flow li b { display: block; color: var(--ink); font-family: var(--display); font-size: 16px; margin-bottom: 6px; }
.wa-flow li:nth-child(1) { background: var(--mint); color: var(--ink); }
.wa-flow li:nth-child(2) { background: #fff8e8; }
.wa-flow li:nth-child(3) { background: #f3efff; }
.wa-flow li:nth-child(4) { background: var(--amber); color: var(--ink); }

.proof-grid, .price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px;
}
.price-grid { grid-template-columns: 1fr 1fr; max-width: 760px; }
.proof-card, .price-card {
  border: 3px solid var(--ink); border-radius: 22px; padding: 22px;
  background: var(--white); box-shadow: var(--shadow); margin: 0;
}
.proof-card h3, .price-card h3 { margin: 0 0 8px; font-family: var(--display); }
.proof-card p { margin: 0; color: var(--ink-soft); font-weight: 600; line-height: 1.45; }
.price-card ul { padding: 0 0 0 18px; margin: 0 0 18px; font-weight: 600; color: var(--ink-soft); }
.price-card.featured { background: #e8fff7; }
.price-card.soon { background: #f4f3f8; }
.pro-row { margin-top: 12px; display: grid; gap: 8px; }
.pro-pill {
  display: inline-block; font-weight: 800; font-size: 13px;
  background: var(--mint); color: var(--ink); border-radius: 999px; padding: 6px 12px;
}
.pro-box { margin-top: 28px; }
.pro-cta, .pro-panel {
  background: #fff; border: 3px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px;
}
.pro-cta h3, .pro-panel h3 { font-family: var(--display); margin: 8px 0; }
.price-tag { font-family: var(--display); font-size: 32px; font-weight: 800; margin: 0 0 12px; }
.price-tag span { font-size: 16px; color: var(--ink-soft); }

.shop-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px;
}
.shop-chip {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 40px; padding: 6px 12px;
  border: 2.5px solid var(--ink); border-radius: 999px;
  background: var(--white); font-weight: 800; font-size: 13px;
}
.shop-chip.ig { background: #f3efff; }
.shop-chip.maps { background: #e8fff7; }
.shop-chip.wa { background: var(--mint); }
.pix-box {
  margin-top: 16px; padding: 14px; border: 3px solid var(--ink);
  border-radius: 16px; background: #fff8dc;
}
.rebook-banner {
  margin-bottom: 18px; padding: 16px 18px;
  border: 3px solid var(--ink); border-radius: 18px;
  background: var(--mint); box-shadow: 4px 4px 0 var(--ink);
}
.agenda-wrap { max-width: 640px; padding: 36px 0 80px; }
.agenda-day {
  font-family: var(--display);
  font-size: 15px;
  margin: 22px 0 10px;
}
.agenda-day:first-child { margin-top: 0; }
.cut-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.cut-card.is-off { opacity: 0.5; }
.cut-when {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  padding-top: 2px;
}
.cut-body strong { display: block; font-size: 16px; }
.cut-body p { margin: 2px 0; font-weight: 600; }
.sheet {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(42, 41, 65, 0.45);
  display: grid; place-items: end center;
  padding: 12px;
}
.sheet[hidden] { display: none !important; }
.sheet-card {
  width: min(480px, 100%);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 24px 24px 18px 18px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 20px 18px 22px;
  max-height: min(88vh, 640px);
  overflow: auto;
}
.sheet-card .slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

body.is-book { padding-bottom: 28px; }
.book-nav { width: min(480px, calc(100% - 24px)); }
.book-wrap { width: min(480px, calc(100% - 24px)); padding: 18px 0 48px; }
.book-page { display: grid; gap: 0; min-width: 0; max-width: 100%; }
.book-sheet,
#bookFlow,
.book-step {
  min-width: 0;
  max-width: 100%;
}
.book-cover {
  height: 240px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background-color: #1a1930;
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  overflow: hidden;
}
.book-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-cover::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(42, 41, 65, 0.55) 100%);
}
.book-cover h1 {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  margin: 0; color: #fff;
  font-family: var(--display); font-size: clamp(26px, 7vw, 34px);
  letter-spacing: -0.04em; line-height: 1.1;
}
.book-cover-links {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: flex; gap: 6px;
}
.book-cover-links a {
  min-height: 34px;
  padding: 6px 10px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  box-shadow: 2px 2px 0 var(--ink);
}
.book-rebook {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--violet);
  font-weight: 800;
  font-size: 14px;
  text-align: left;
}
.book-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book-step .book-q,
.book-step .book-rebook { margin: 0; }
.book-sheet .book-step label { margin: 0; }
.book-step[hidden],
#bookBack[hidden],
#bookNext[hidden],
#bookGo[hidden],
#bookFlow[hidden],
#bookStepNav[hidden],
#bookDone[hidden] { display: none !important; }
.book-sheet {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding: 20px 18px 16px;
}
.book-step-nav {
  display: flex;
  gap: 8px;
  margin-top: 0;
  padding-top: 10px;
  border-top: 2px solid rgba(42, 41, 65, 0.12);
}
.book-step-nav .btn { flex: 1; min-width: 0; }
.rebook-line {
  width: 100%;
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--mint);
  font-weight: 800;
  text-align: left;
  box-shadow: 4px 4px 0 var(--ink);
}
.book-q {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
  margin: 22px 0 10px;
}
.book-sheet .book-step .book-q { margin: 0; }
.book-sheet .book-q:first-child { margin-top: 0; }
.svc-cards { display: grid; gap: 8px; }
.book-sheet .svc-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name price" "meta price";
  align-items: center;
  column-gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  cursor: pointer;
  position: relative;
}
.book-sheet .svc-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  width: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  appearance: none;
}
.svc-card .svc-name { grid-area: name; font-weight: 800; font-size: 16px; }
.svc-card .svc-meta { grid-area: meta; font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.svc-card .svc-price {
  grid-area: price;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
}
.svc-card:has(input:checked) {
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--ink);
}
.day-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 10px;
  margin: 0 -4px;
  min-width: 0;
  max-width: 100%;
  scrollbar-width: none;
}
.day-strip::-webkit-scrollbar { display: none; }
.day-chip {
  flex: none;
  min-width: 72px;
  min-height: 64px;
  padding: 10px 12px;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
}
.day-chip small { display: block; margin-top: 4px; font-size: 11px; font-weight: 700; color: var(--ink-soft); }
.day-chip.on { background: var(--mint); }
.book-page .slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 0;
}
.book-page .slot-btn { width: 100%; min-width: 0; border-radius: 14px; }
#bookDone .ok-msg { margin-top: 0; font-size: 18px; }

.story-wrap { padding-top: 8px; padding-bottom: 24px; }
.story-flow {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.story-flow li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 2.5px solid var(--ink); border-radius: 999px;
  background: var(--white);
  font-family: var(--display); font-weight: 800; font-size: 13px;
  box-shadow: 2px 2px 0 var(--ink);
}
.story-flow li:nth-child(1) { background: var(--mint); }
.story-flow li:nth-child(2) { background: #fff8e8; }
.story-flow li:nth-child(3) { background: #f3efff; }
.story-flow li:nth-child(4) { background: #d8d4ff; }
.story-flow li:nth-child(5) { background: var(--amber); }
.story-flow li:nth-child(6) { background: #e8fff7; }

.soon-chip {
  display: inline-block; margin-left: 6px; vertical-align: middle;
  padding: 2px 8px; border: 2px solid var(--ink); border-radius: 999px;
  background: #fff8e8; font-size: 10px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
}

.panel {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; align-items: stretch;
}
.panel-agenda, .panel-stats, .client-card, .return-box, .mail-card, .retain-card {
  border: 3px solid var(--ink); border-radius: 24px;
  background: var(--white); box-shadow: 6px 6px 0 var(--ink);
}
.panel-agenda { padding: 8px 18px 14px; }
.panel-agenda .slot { font-size: 14px; padding: 11px 0; }
.panel-head {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 12px 0 4px; font-weight: 800;
}
.panel-head span { color: var(--ink-soft); font-size: 13px; }
.panel-stats { padding: 18px; background: #e8fff7; }
.compact-stats { grid-template-columns: 1fr 1fr; margin: 0; list-style: none; padding: 0; }
.panel-sub { font-family: var(--display); margin: 0 0 12px; font-size: 18px; }

.chip-row {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip-row li {
  padding: 8px 14px; border: 2.5px solid var(--ink); border-radius: 999px;
  background: var(--white); font-weight: 800; font-size: 13px;
  box-shadow: 2px 2px 0 var(--ink);
}

.funnel {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid; gap: 10px;
}
.funnel li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 16px; border: 3px solid var(--ink); border-radius: 18px;
  background: var(--white); box-shadow: 4px 4px 0 var(--ink);
}
.funnel li b { font-family: var(--display); }
.funnel li span { font-weight: 700; color: var(--ink-soft); font-size: 14px; }
.funnel li:nth-child(1) { background: #f3efff; }
.funnel li:nth-child(5) { background: var(--mint); }

.wa-msgs { display: grid; gap: 8px; max-width: 640px; }
.wa-msgs .wa-bubble { margin: 0; }
.wa-msgs .mini-label { margin-top: 8px; }

.client-split { align-items: stretch; }
.client-card, .return-box { padding: 22px; }
.client-card h3 { font-family: var(--display); margin: 0 0 10px; }
.client-card ul, .return-list, .svc-rank {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.client-card li, .svc-rank li {
  padding: 8px 0; border-top: 2px solid rgba(42,41,65,.12);
  font-weight: 700;
}
.client-card li:first-child, .svc-rank li:first-child { border-top: 0; }
.client-card .btn { pointer-events: none; }

.return-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-top: 2px solid rgba(42,41,65,.12);
  font-weight: 800;
}
.return-list li:first-child { border-top: 0; }
.return-box { background: #fff8e8; }

.metric-grid {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.bars { display: grid; gap: 12px; }
.bar-row {
  display: grid; grid-template-columns: 72px 1fr 40px; gap: 10px; align-items: center;
  font-weight: 800;
}
.bar {
  display: block; height: 12px; border: 2px solid var(--ink); border-radius: 99px;
  background: var(--paper); overflow: hidden;
}
.bar::after {
  content: ""; display: block; width: var(--w, 50%); height: 100%; background: var(--mint);
}
.svc-rank { margin: 0; }

.mail-card, .retain-card { padding: 22px; max-width: 640px; }
.mail-card { background: #f3efff; margin-top: 18px; }
.mail-card h3 { font-family: var(--display); margin: 0 0 8px; }
.mail-card p { margin: 0; font-weight: 600; color: var(--ink-soft); }
.retain-card { background: #e8fff7; }
.retain-card p { margin: 0 0 6px; font-weight: 700; }
.retain-ok { color: var(--success); font-weight: 800 !important; margin: 10px 0 16px !important; }
.retain-card .btn { pointer-events: none; }

.compare-wide { max-width: 860px; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.faq-wide { max-width: none; }
@media (min-width: 981px) {
  .faq-wide { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .split, .steps, .quotes, .salon-grid, .book-grid, .cfg-grid, .hours-grid, .wa-flow, .proof-grid, .price-grid, .steps-4, .compare, .panel, .who-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .quotes-compact, .salon-grid, .lost-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
  .photo-presets { grid-template-columns: 1fr 1fr; }
  .booking-item { flex-direction: column; align-items: flex-start; }
  .phone { transform: none; }
  .nav { justify-content: flex-start; }
  .nav .brand { margin-right: auto; }
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    z-index: 70;
    background: var(--white); border: 3px solid var(--ink); border-radius: 18px;
    padding: 16px; box-shadow: var(--shadow);
  }
  .mobile-cta { display: block; }
  .book-box.sticky-book { position: static; }
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
  body.is-book { padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  .nav > a.btn-primary { display: none; }
  .nav-user { display: none; }
}
@media (max-width: 560px) {
  .quotes-compact, .salon-grid, .lost-grid, .stat-grid { grid-template-columns: 1fr; }
  .compact-stats, .metric-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr 1fr; }
  .svc-row button { grid-column: 1 / -1; }
  .svc-row.simple { display: flex; flex-wrap: wrap; }
  .svc-row.simple input[data-k="name"] { flex: 1 1 100%; }
  .svc-row.simple button { grid-column: auto; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 720px) {
  :root { --shadow: 3px 3px 0 var(--ink); --radius: 20px; }
  .wrap { width: calc(100% - 28px); }
  .nav {
    width: calc(100% - 20px);
    margin-top: max(8px, env(safe-area-inset-top, 0px));
    padding: 6px 8px 6px 12px;
    gap: 8px;
    flex-wrap: nowrap;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .nav > a.btn-ghost,
  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 13px;
    box-shadow: 2px 2px 0 var(--ink);
    min-height: 40px;
  }
  .brand { font-size: 16px; }
  .brand-mark { width: 28px; height: 28px; font-size: 14px; }
  .btn { box-shadow: 3px 3px 0 var(--ink); padding: 11px 14px; }
  .btn-lg { min-height: 48px; }
  input, select, textarea { font-size: 16px !important; }

  .hero { padding: 28px 0 12px; }
  .hero h1 { font-size: clamp(28px, 8.4vw, 36px); }
  .lead { font-size: 16px; margin-bottom: 16px; }
  section { padding: 36px 0; }
  .phone { width: min(240px, 72vw); height: 470px; }
  .cta-band { padding: 28px 16px; border-radius: 24px; box-shadow: 5px 5px 0 var(--ink); }
  .foot { flex-direction: column; gap: 12px; }
  .legal { padding: 36px 0 64px; }
  .auth-wrap { padding: 24px 0 48px; min-height: 0; }
  .auth-card { padding: 22px 18px; border-radius: 24px; box-shadow: 5px 5px 0 var(--ink); }
  .auth-card h1 { font-size: 24px; }

  .wizard-wrap, .agenda-wrap { padding: 20px 0 72px; }
  .cfg-form.wizard { padding: 16px; }
  #wizNav.cfg-actions {
    position: sticky;
    bottom: 0;
    z-index: 8;
    margin: 16px -16px -16px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--white);
    border-top: 3px solid var(--ink);
    flex-wrap: nowrap;
  }
  #wizNav .btn { flex: 1; }
  #wizNext { min-width: 0; }
  .panel-head { margin-bottom: 18px; }
  .panel-head .btn { width: 100%; }
  #panelHello {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .agenda-filters .btn { flex: 1; min-width: 0; padding: 10px 8px; font-size: 13px; }
  .cut-card { grid-template-columns: 58px 1fr; padding: 12px; gap: 10px; }
  .cut-card .row-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
  .cut-card .row-btns .btn { width: 100%; min-width: 0; padding: 10px 8px; font-size: 13px; }
  .cut-card .row-btns .btn-primary { grid-column: 1 / -1; }
  .share-row { flex-direction: column; }
  .share-row input, .share-row .btn, .share-box .row-btns .btn { width: 100%; min-width: 0; }

  body.is-book {
    min-height: 100dvh;
    padding: 0 0 calc(16px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }
  .book-wrap,
  .book-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .nav.book-nav {
    position: absolute;
    top: max(10px, env(safe-area-inset-top, 0px));
    left: 10px;
    width: auto;
    max-width: 42%;
    margin: 0;
    padding: 5px 10px 5px 6px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
  }
  .book-cover {
    height: 140px;
    width: 100%;
    border-radius: 0 0 22px 22px;
    border-width: 0 0 3px;
    box-shadow: none;
    overflow: hidden;
  }
  .book-cover h1 {
    font-size: 22px;
    left: 16px;
    right: 16px;
    bottom: 12px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  }
  .book-cover img { object-position: center 30%; }
  .book-cover-links {
    top: max(10px, env(safe-area-inset-top, 0px));
    right: 10px;
    left: auto;
    max-width: 48%;
    gap: 4px;
  }
  .book-cover-links a {
    min-height: 32px;
    padding: 4px 8px;
    font-size: 11px;
    box-shadow: 1px 1px 0 var(--ink);
  }
  .book-sheet {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    box-sizing: border-box;
    margin: 12px auto 16px;
    padding: 12px;
    border-radius: 22px;
    box-shadow: 3px 3px 0 var(--ink);
    gap: 8px;
    overflow: hidden;
  }
  .book-step { gap: 8px; min-width: 0; }
  .book-step-nav {
    margin-top: 0;
    padding-top: 8px;
    gap: 6px;
  }
  .book-step-nav .btn {
    padding: 10px 8px;
    font-size: 14px;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .book-q { font-size: 16px; margin: 0; }
  .book-sheet .svc-card { padding: 11px 12px; border-radius: 14px; }
  .svc-card .svc-name { font-size: 15px; }
  .svc-card .svc-price { font-size: 16px; }
  .svc-cards { gap: 6px; }
  .day-strip { padding: 0; margin: 0; }
  .day-chip {
    min-width: 56px;
    min-height: 48px;
    font-size: 13px;
    white-space: nowrap;
    padding: 8px 10px;
  }
  .book-page .slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    min-width: 0;
  }
  .book-page .slot-btn {
    min-width: 0;
    min-height: 42px;
    font-size: 14px;
    padding: 8px 4px;
  }
  .book-sheet .book-step input { margin-top: 4px; }
}

@media (hover: none) {
  .btn:hover, .salon-card:hover { transform: none; box-shadow: 3px 3px 0 var(--ink); }
}
