/* Styles for the "See your site live" demo funnel. Two namespaces:
   .fsb-*  = the funnel chrome (overlay, steps, browser frame, CTAs)
   .sb-*   = the generated sample site (accent driven by --ac/--ac2/--soft set inline per industry)
   Matches the marketing landing's design system (Outfit, indigo→violet gradient, --radius scale). */

.fsb-ov {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(8px);
  font-family: "Outfit", system-ui, sans-serif;
  animation: fsb-fade 0.2s ease;
}
@keyframes fsb-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fsb-modal {
  position: relative;
  width: min(980px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(11, 18, 32, 0.35);
  animation: fsb-rise 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes fsb-rise {
  from {
    transform: translateY(14px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.fsb-x {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(11, 18, 32, 0.06);
  color: #3a475c;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.fsb-x:hover {
  background: rgba(11, 18, 32, 0.12);
}
.fsb-inner {
  padding: 40px 36px;
}

/* steps */
.fsb-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 26px;
}
.fsb-dots span {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background: #e7ecf4;
  transition: background 0.25s;
}
.fsb-dots span.on {
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
}
.fsb-dots span.done {
  background: #c7ccf7;
}
.fsb-step {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.fsb-count {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
}
.fsb-step h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0b1220;
  margin: 10px 0 6px;
}
.fsb-hint {
  color: #6b7891;
  font-size: 15px;
  margin: 0 0 22px;
}
.fsb-input {
  width: 100%;
  font-family: inherit;
  font-size: 18px;
  color: #0b1220;
  text-align: center;
  background: #f6f8fc;
  border: 2px solid #e7ecf4;
  border-radius: 14px;
  padding: 15px 18px;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.fsb-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14);
  background: #fff;
}
.fsb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 16px;
}
.fsb-chip {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #3a475c;
  background: #fff;
  border: 1px solid #e7ecf4;
  border-radius: 99px;
  padding: 9px 15px;
  cursor: pointer;
  transition:
    transform 0.1s,
    border-color 0.15s,
    color 0.15s;
}
.fsb-chip:hover {
  border-color: #4f46e5;
  color: #4f46e5;
  transform: translateY(-1px);
}
.fsb-err {
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
  margin-top: 12px;
}
.fsb-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.fsb-back {
  font-family: inherit;
  background: none;
  border: none;
  color: #6b7891;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
}
.fsb-back:hover {
  color: #0b1220;
}
.fsb-next {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 14px 26px;
  cursor: pointer;
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.32);
  transition:
    filter 0.15s,
    transform 0.1s;
}
.fsb-next:hover {
  filter: brightness(1.07);
}
.fsb-next:active {
  transform: translateY(1px);
}

/* building beat */
.fsb-building {
  text-align: center;
  padding: 40px 10px;
}
.fsb-building h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 22px 0 6px;
}
.fsb-spin {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border: 4px solid #e7ecf4;
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: fsb-spin 0.8s linear infinite;
}
@keyframes fsb-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fsb-spin {
    animation: none;
  }
  .fsb-ov,
  .fsb-modal {
    animation: none;
  }
}

/* result: ribbon + browser frame + CTAs */
.fsb-result {
  animation: fsb-fade 0.3s ease;
}
.fsb-ribbon {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #4f46e5;
  background: #eef0fe;
  border: 1px solid #dfe1fb;
  border-radius: 12px;
  padding: 11px 16px;
  margin-bottom: 18px;
}
.fsb-frame {
  border: 1px solid #e7ecf4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 27, 52, 0.14);
  background: #fff;
}
.fsb-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #f6f8fc;
  border-bottom: 1px solid #e7ecf4;
}
.fsb-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.fsb-dot.r {
  background: #ff5f57;
}
.fsb-dot.y {
  background: #febc2e;
}
.fsb-dot.g {
  background: #28c840;
}
.fsb-addr {
  margin-left: 12px;
  font-size: 12.5px;
  color: #6b7891;
  font-weight: 500;
}
.fsb-screen {
  max-height: 62vh;
  overflow: auto;
}
.fsb-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}
.fsb-get {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 13px;
  padding: 14px 26px;
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.32);
}
.fsb-get:hover {
  filter: brightness(1.07);
}
.fsb-again {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #3a475c;
  background: #fff;
  border: 1px solid #e7ecf4;
  border-radius: 13px;
  padding: 13px 20px;
  cursor: pointer;
}
.fsb-again:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}
.fsb-full {
  font-size: 14px;
  font-weight: 600;
  color: #6b7891;
  text-decoration: none;
}
.fsb-full:hover {
  color: #0b1220;
}
.fsb-legal {
  text-align: center;
  color: #98a1b3;
  font-size: 12.5px;
  margin: 16px auto 0;
  max-width: 520px;
}

/* ── the generated sample site (accent from --ac / --ac2 / --soft, set inline per industry) ───────── */
.sb-site {
  font-family: "Outfit", system-ui, sans-serif;
  color: #0b1220;
  background: #fff;
}
.sb-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid #eef1f6;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.sb-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
}
.sb-logo-img {
  height: 34px;
  max-width: 150px;
  object-fit: contain;
  border-radius: 6px;
}
.sb-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.sb-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}
.sb-nav span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7891;
}
.sb-nav span.on {
  color: var(--ac);
  font-weight: 700;
}
.sb-book {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  background: var(--ac);
  cursor: default;
}
.sb-nav + .sb-book {
  margin-left: 4px;
}
.sb-hero {
  background: linear-gradient(180deg, var(--soft), #fff);
  padding: 46px 26px 40px;
  text-align: center;
}
.sb-hero-in {
  max-width: 620px;
  margin: 0 auto;
}
.sb-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ac);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 99px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.sb-hero h1 {
  font-size: clamp(26px, 5.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  /* Break BETWEEN words only — never inside one — and even out the resulting lines. */
  hyphens: none;
  overflow-wrap: break-word; /* last resort for a single unbroken 30-character word */
  word-break: normal;
  text-wrap: balance;
}
/* Every headline the generator writes, so no business name is ever split mid-word. */
.sb-name,
.sb-secttl,
.sb-split h3,
.sb-band h2 {
  hyphens: none;
  word-break: normal;
  text-wrap: balance;
}
.sb-hero p {
  font-size: 17px;
  color: #3a475c;
  margin: 0 auto 22px;
  max-width: 520px;
  line-height: 1.5;
}
.sb-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.sb-cta .sb-book {
  font-size: 15px;
  padding: 12px 24px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.sb-ghost {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ac);
  background: #fff;
  border: 1.5px solid var(--ac);
  border-radius: 10px;
  padding: 12px 22px;
  cursor: default;
}
.sb-body {
  padding: 34px 26px 8px;
  max-width: 860px;
  margin: 0 auto;
}
.sb-secttl {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ac);
  text-align: center;
  margin-bottom: 18px;
}
.sb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sb-card {
  border: 1px solid #eef1f6;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(20, 27, 52, 0.05);
}
.sb-thumb {
  height: 78px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--soft), var(--ac2));
  opacity: 0.85;
}
.sb-card b {
  font-size: 14px;
  font-weight: 700;
}
.sb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.sb-price {
  font-weight: 800;
  color: var(--ac);
  font-size: 14px;
}
.sb-add {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--ac);
  font-weight: 800;
}
.sb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /* Same content box as every other section block (.sb-body/.sb-menu/.sb-steps/.sb-faq). Without
     this the "Why <business>" column hugged the viewport edge while its neighbours were inset. */
  max-width: 860px;
  margin: 30px auto 6px;
  padding: 0 26px;
}
.sb-split h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.sb-why ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sb-why li {
  position: relative;
  padding-left: 26px;
  color: #3a475c;
  font-size: 15px;
}
.sb-why li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ac);
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.sb-hours {
  font-weight: 600;
  color: #0b1220;
  margin: 0 0 4px;
}
.sb-loc {
  color: #6b7891;
  margin: 0 0 12px;
}
.sb-map {
  height: 96px;
  border-radius: 12px;
  background: linear-gradient(120deg, #eef1f6, var(--soft));
  border: 1px solid #eef1f6;
}
.sb-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 30px 0 6px;
  padding: 16px;
  background: var(--soft);
  border-radius: 14px;
}
.sb-stars {
  color: var(--ac);
  font-size: 18px;
  letter-spacing: 2px;
}
.sb-rvnote {
  color: #6b7891;
  font-size: 13.5px;
  font-style: italic;
}
.sb-foot {
  text-align: center;
  padding: 20px;
  color: #98a1b3;
  font-size: 13px;
  border-top: 1px solid #eef1f6;
  margin-top: 20px;
}
.sb-foot b {
  color: #4f46e5;
}

/* ── design refresh: bolder hero, trust bar, richer cards + CTAs ─────────────────────────────── */
.sb-hero {
  padding: 58px 26px 46px;
  background: radial-gradient(760px 320px at 50% -12%, var(--soft), #fff 72%);
}
.sb-hero h1 {
  font-size: clamp(32px, 6.5vw, 56px);
  margin-bottom: 10px;
}
.sb-hero .sb-kicker {
  font-size: clamp(18px, 2.7vw, 24px);
  font-weight: 700;
  color: var(--ac);
  letter-spacing: -0.01em;
  max-width: 580px;
  margin: 0 auto 8px;
}
.sb-hero .sb-sub {
  font-size: 16.5px;
  color: #3a475c;
  max-width: 500px;
  margin: 0 auto 26px;
  line-height: 1.55;
}
.sb-book {
  transition:
    filter 0.15s,
    transform 0.1s;
}
.sb-book.lg {
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}
/* trust bar — the credibility signals that lift conversion */
.sb-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 15px 22px;
  background: var(--soft);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.sb-trust-b {
  font-size: 13.5px;
  font-weight: 600;
  color: #0b1220;
  white-space: nowrap;
}
/* offering cards: flush image, tidy body, a pill CTA */
.sb-card {
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.sb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(20, 27, 52, 0.1);
}
.sb-thumb {
  height: 104px;
  margin-bottom: 0;
  border-radius: 0;
  opacity: 1;
  background: linear-gradient(140deg, var(--soft), var(--ac2));
}
.sb-card-b {
  padding: 12px 13px 14px;
}
.sb-add {
  width: auto;
  height: auto;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
/* CTAs inside the lower sections */
.sb-why > .sb-book,
.sb-visit .sb-call {
  margin-top: 16px;
}
.sb-call {
  width: 100%;
}
.sb-visit .sb-map {
  margin-top: 14px;
}

@media (max-width: 720px) {
  .fsb-inner {
    padding: 30px 20px;
  }
  .sb-nav {
    display: none;
  }
  .sb-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sb-split {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════════════════════
   HERO SCENE + MOTION — the per-industry scroll-assembled signature animation (lib/scenes.js) plus
   reveal-on-scroll and card-tilt plumbing. demo-site.js drives layer transforms; CSS owns the props
   (plate, barbell, steam…), the FINALE keyframes (the slam + burst), and reduced-motion stills.
   ═══════════════════════════════════════════════════════════════════════════════════════════════ */
.sb-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .sb-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    text-align: left;
  }
  .sb-hero-grid .sb-hero-in {
    margin: 0;
  }
  .sb-hero-grid .sb-cta {
    justify-content: flex-start;
  }
  .sb-hero-grid .sb-hero-in p {
    margin-left: 0;
  }
}
.sb-scene {
  position: relative;
  height: 300px;
  min-width: 260px;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}
.sb-scene .ly {
  position: absolute;
  left: 50%;
  top: 50%;
  will-change: transform, opacity;
  line-height: 1;
  filter: drop-shadow(0 10px 16px rgba(15, 21, 38, 0.18));
}
/* CSS-drawn props */
.sb-scene .plate {
  width: 190px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 38%, #fff, #e7e2d8 68%, #cfc8ba);
  box-shadow: 0 14px 22px rgba(15, 21, 38, 0.16);
}
.sb-scene .steam {
  width: 10px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(120, 120, 120, 0.35)
  );
  animation: steamRise 2.6s ease-in-out infinite;
}
.sb-scene .steam.s2 {
  animation-delay: 1.2s;
  height: 38px;
}
@keyframes steamRise {
  0% {
    transform: translate(-50%, -50%) translateY(6px) scaleY(0.7);
    opacity: 0;
  }
  40% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) translateY(-26px) scaleY(1.15);
    opacity: 0;
  }
}
.sb-scene .shine {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 58%
  );
  mix-blend-mode: screen;
}
.sb-scene .bar {
  width: 240px;
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #b9c2cf, #6b7686 60%, #99a3b2);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.35);
}
.sb-scene .pl {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #3a4352, #12161e 72%);
  border: 4px solid #232b38;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.4);
}
.sb-scene .pl.sm {
  width: 38px;
  height: 38px;
  border-width: 3px;
}
.sb-scene .dust {
  width: 56px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(160, 160, 160, 0.55),
    transparent 70%
  );
}
.sb-scene .open {
  width: 96px;
  height: 40px;
  border-radius: 9px;
  background: #16a34a;
  color: #fff;
  font:
    800 17px/40px "Outfit",
    sans-serif;
  text-align: center;
  letter-spacing: 0.14em;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}
.sb-scene .open::after {
  content: "OPEN";
}
/* FINALE — the hero piece slams home with an overshoot; bursts pop; props react. */
.sb-scene.finale .hit {
  animation: sceneSlam 0.55s cubic-bezier(0.22, 1.4, 0.36, 1) both;
}
.sb-scene.finale .burst {
  animation: burstPop 0.7s cubic-bezier(0.18, 1.25, 0.4, 1) 0.18s both;
}
.sb-scene.finale .shine {
  animation: shineSweep 0.9s ease-out 0.1s both;
}
.sb-scene.finale .dust {
  animation: dustPuff 0.6s ease-out 0.12s both;
}
.sb-scene.finale.still .hit,
.sb-scene.finale.still .burst,
.sb-scene.finale.still .dust {
  animation: none;
  opacity: 1;
}
@keyframes sceneSlam {
  0% {
    margin-top: -70px;
  }
  55% {
    margin-top: 10px;
  }
  75% {
    margin-top: -6px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes burstPop {
  0% {
    opacity: 0;
    scale: 0.3;
  }
  60% {
    opacity: 1;
    scale: 1.25;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes shineSweep {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(-90px);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(90px);
  }
}
@keyframes dustPuff {
  0% {
    opacity: 0;
    scale: 0.4;
  }
  30% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    scale: 1.8;
  }
}
/* Reveal-on-scroll + card tilt plumbing (added by demo-site.js) */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.sb-card {
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease;
  transform-style: preserve-3d;
}
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sb-scene .steam {
    animation: none;
    opacity: 0.5;
  }
}
@media (max-width: 799px) {
  .sb-scene {
    height: 230px;
    margin-top: -6px;
  }
  .sb-scene .ly {
    zoom: 0.82;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════════════════════
   DEPTH SECTIONS — ticker, photo cards, grouped menu, gallery, numbered steps, FAQ, closing band.
   Base styles here; the industry identities below re-flavor them (leaders, corners, dark surfaces).
   ═══════════════════════════════════════════════════════════════════════════════════════════════ */
.sb-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--soft);
}
.sb-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  padding: 11px 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ac);
  animation: sbTicker 26s linear infinite;
  will-change: transform;
}
.sb-ticker-track i {
  font-style: normal;
  opacity: 0.45;
}
@keyframes sbTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.33%);
  }
}
.sb-thumb {
  overflow: hidden;
  position: relative;
}
.sb-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sb-card:hover .sb-thumb img {
  transform: scale(1.07);
}
.sb-menu {
  max-width: 860px;
  margin: 30px auto 6px;
  padding: 0 26px;
}
.sb-menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 42px;
}
.sb-menu-g h4 {
  font-size: 15px;
  margin: 14px 0 8px;
  color: var(--ac);
  letter-spacing: 0.04em;
}
.sb-mi {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
}
.sb-mi-n {
  font-weight: 600;
  font-size: 14.5px;
}
.sb-mi-n em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 2px;
}
.sb-mi-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}
.sb-mi-p {
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.sb-gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 26px; /* had the width but not the inset — same edge-hugging on narrow screens */
  max-width: 980px;
  margin: 30px auto 8px;
  padding: 0 26px;
}
.sb-gal-ph {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--soft);
}
.sb-gal-ph.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}
.sb-gal-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sb-gal-ph:hover img {
  transform: scale(1.05);
}
.sb-steps {
  max-width: 900px;
  margin: 34px auto 4px;
  padding: 0 26px;
}
.sb-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sb-step {
  position: relative;
  padding: 18px 4px 4px;
}
.sb-step-n {
  display: block;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: var(--ac);
  opacity: 0.22;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.sb-step b {
  font-size: 15.5px;
}
.sb-step p {
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
}
.sb-faq {
  max-width: 720px;
  margin: 30px auto 8px;
  padding: 0 26px;
}
.sb-qa {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sb-qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 2px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  list-style: none;
}
.sb-qa summary::-webkit-details-marker {
  display: none;
}
.sb-qa-x {
  font-size: 20px;
  font-weight: 400;
  color: var(--ac);
  transition: transform 0.25s;
}
.sb-qa[open] .sb-qa-x {
  transform: rotate(45deg);
}
.sb-qa p {
  margin: 0 0 15px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}
.sb-band {
  text-align: center;
  padding: 56px 26px 60px;
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  color: #fff;
}
.sb-band h2 {
  font-size: clamp(24px, 4.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.sb-band .sb-book {
  background: #fff;
  color: var(--ac);
}
@media (max-width: 720px) {
  .sb-menu-cols,
  .sb-steps-row {
    grid-template-columns: 1fr;
  }
  .sb-gal {
    grid-template-columns: 1fr 1fr;
  }
  .sb-gal-ph.wide {
    grid-column: span 2;
  }
}

/* ── Hero VARIANTS (each industry declares one — center / split / full) ─────────────────────────── */
.sb-hero.hv-center .sb-hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}
.sb-hero.hv-center .sb-hero-in {
  margin: 0 auto;
}
.sb-hero.hv-center .sb-cta {
  justify-content: center;
}
.sb-hero.hv-center .sb-scene {
  height: 250px;
  margin-top: -10px;
}
.sb-hero.hv-full {
  padding: 84px 26px 74px;
}
.sb-hero.hv-full .sb-hero-grid {
  max-width: 1080px;
}
.sb-hero.hv-full h1 {
  font-size: clamp(44px, 8.6vw, 88px);
  line-height: 0.98;
}
.sb-hero.hv-full .sb-scene {
  height: 340px;
}
/* ── Industry-specific sections ─────────────────────────────────────────────────────────────────── */
.sb-team {
  max-width: 860px;
  margin: 34px auto 6px;
  padding: 0 26px;
}
.sb-team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.sb-team-av {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 10px;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
}
.sb-team-av.av0 {
  background: linear-gradient(135deg, var(--ac), var(--ac2));
}
.sb-team-av.av1 {
  background: linear-gradient(135deg, var(--ac2), var(--ac));
}
.sb-team-av.av2 {
  background: var(--ac);
}
.sb-team-m b {
  font-size: 15.5px;
}
.sb-team-m p {
  margin: 3px 0 0;
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.55);
}
.sb-sched {
  max-width: 940px;
  margin: 30px auto 6px;
  padding: 0 26px;
}
.sb-sched-wrap {
  overflow-x: auto;
  border-radius: 14px;
}
.sb-sched table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
.sb-sched th {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 8px;
  text-align: center;
  opacity: 0.7;
}
.sb-sched td {
  padding: 7px 6px;
  text-align: center;
  border-top: 1px solid rgba(127, 127, 127, 0.15);
}
.sb-sched-t {
  font-weight: 800;
  font-size: 12.5px;
  white-space: nowrap;
  opacity: 0.7;
}
.sb-sched-c {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--soft);
  color: var(--ac);
  white-space: nowrap;
}
.sb-shop {
  max-width: 980px;
  margin: 30px auto 8px;
  padding: 0 26px;
}
.sb-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 18px;
}
.sb-shop-ph {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--soft);
  margin-bottom: 10px;
}
.sb-shop-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sb-shop-it:hover .sb-shop-ph img {
  transform: scale(1.06);
}
.sb-shop-it b {
  display: block;
  font-size: 14px;
}
.sb-shop-it span {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.55);
  font-variant-numeric: tabular-nums;
}
.sb-ba {
  max-width: 900px;
  margin: 30px auto 6px;
  padding: 0 26px;
}
.sb-ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sb-ba-ph {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
}
.sb-ba-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sb-ba-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: #16202e;
  color: #fff;
}
.sb-ba-ph:last-child .sb-ba-tag {
  background: var(--ac);
}
/* ── Rich footer (common industry pages: About us, Careers, …) ──────────────────────────────────── */
.sb-footer {
  border-top: 1px solid rgba(127, 127, 127, 0.18);
  margin-top: 26px;
}
.sb-footer-in {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 26px 8px;
}
.sb-footer-brand {
  max-width: 320px;
}
.sb-footer-brand b {
  font-size: 16px;
}
.sb-footer-brand p {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  opacity: 0.6;
}
.sb-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px 28px;
}
.sb-fl {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.75;
  cursor: default;
}
.sb-fl:hover {
  opacity: 1;
  color: var(--ac);
}
@media (max-width: 720px) {
  .sb-team-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .sb-shop-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sb-ba-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════════════════════
   INDUSTRY IDENTITIES — each template is a genuinely different site, not a palette-swapped clone:
   its own typography, surfaces and shapes (scoped .sb-site.ind-*). These are the DEFAULT "Signature"
   design per category; the explicit look-* classes (below, later in the cascade) still override.
   ═══════════════════════════════════════════════════════════════════════════════════════════════ */
/* ☕ CAFE — warm paper, cozy chunky serif, hand-baked menu-board feel. */
.sb-site.ind-cafe {
  background: #faf3e7;
  color: #3d2c1e;
  font-family: "Outfit", sans-serif;
}
.sb-site.ind-cafe .sb-top {
  background: rgba(250, 243, 231, 0.94);
  border-bottom: 1px dashed #d9c9ae;
}
.sb-site.ind-cafe .sb-name,
.sb-site.ind-cafe .sb-hero h1,
.sb-site.ind-cafe .sb-secttl,
.sb-site.ind-cafe .sb-split h3 {
  font-family: "Fraunces", Georgia, serif;
}
.sb-site.ind-cafe .sb-hero {
  background:
    radial-gradient(1100px 420px at 70% -10%, #f3e2c4, transparent), #faf3e7;
}
.sb-site.ind-cafe .sb-hero h1 {
  font-weight: 900;
  letter-spacing: -0.01em;
}
.sb-site.ind-cafe .sb-eyebrow {
  background: #fff8ec;
  border: 1px dashed #d9c9ae;
  color: #8a5a22;
}
.sb-site.ind-cafe .sb-card {
  background: #fffaf0;
  border: 1px solid #ecdcc0;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(120, 82, 30, 0.1);
}
.sb-site.ind-cafe .sb-thumb {
  border-radius: 12px 12px 4px 4px;
}
.sb-site.ind-cafe .sb-book {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(180, 83, 9, 0.3);
}
.sb-site.ind-cafe .sb-hero p {
  color: #6d5843;
}
/* 💇 SALON — high-fashion elegance: airy white + blush, fine italic serif, hairline rules. */
.sb-site.ind-salon {
  background: #fffbfc;
  color: #2c2126;
}
.sb-site.ind-salon .sb-name,
.sb-site.ind-salon .sb-hero h1,
.sb-site.ind-salon .sb-secttl,
.sb-site.ind-salon .sb-split h3,
.sb-site.ind-salon .sb-card b {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.sb-site.ind-salon .sb-hero h1 {
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 6.4vw, 58px);
  letter-spacing: 0.01em;
}
.sb-site.ind-salon .sb-hero {
  background: linear-gradient(180deg, #fdf0f5, #fffbfc);
}
.sb-site.ind-salon .sb-eyebrow {
  background: transparent;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  padding: 4px 2px;
}
.sb-site.ind-salon .sb-card {
  border: 1px solid #f3dfe8;
  border-radius: 4px;
  box-shadow: none;
}
.sb-site.ind-salon .sb-card:hover {
  box-shadow: 0 16px 36px rgba(219, 39, 119, 0.12);
}
.sb-site.ind-salon .sb-thumb {
  border-radius: 100px 100px 4px 4px;
}
.sb-site.ind-salon .sb-book,
.sb-site.ind-salon .sb-ghost {
  border-radius: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12.5px;
}
/* 🩺 CLINIC — calm, airy, ultra-rounded; soft clinical light. */
.sb-site.ind-clinic {
  background: #f7fdfe;
  color: #123a44;
}
.sb-site.ind-clinic .sb-hero {
  background: linear-gradient(180deg, #e8fafd, #f7fdfe);
}
.sb-site.ind-clinic .sb-hero h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sb-site.ind-clinic .sb-card {
  border-radius: 22px;
  border: 1px solid #d9f2f7;
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.08);
}
.sb-site.ind-clinic .sb-thumb {
  border-radius: 18px;
}
.sb-site.ind-clinic .sb-book,
.sb-site.ind-clinic .sb-ghost,
.sb-site.ind-clinic .sb-eyebrow {
  border-radius: 999px;
}
.sb-site.ind-clinic .sb-trust {
  background: #eefcff;
}
/* 🔧 TRADES — industrial: slate steel, condensed caps, safety-stripe underline, hard corners. */
.sb-site.ind-trades {
  background: #f4f6f9;
  color: #16202e;
}
.sb-site.ind-trades .sb-top {
  background: #16202e;
  color: #fff;
  border-bottom: none;
}
.sb-site.ind-trades .sb-top .sb-name {
  color: #fff;
}
.sb-site.ind-trades .sb-nav span {
  color: #9fb0c7;
}
.sb-site.ind-trades .sb-nav span.on {
  color: #fbbf24;
}
.sb-site.ind-trades .sb-name,
.sb-site.ind-trades .sb-hero h1,
.sb-site.ind-trades .sb-secttl,
.sb-site.ind-trades .sb-split h3 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sb-site.ind-trades .sb-hero {
  background: linear-gradient(180deg, #e8edf4, #f4f6f9);
}
.sb-site.ind-trades .sb-hero h1 {
  font-size: clamp(34px, 6.6vw, 56px);
}
.sb-site.ind-trades .sb-hero h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 8px;
  margin: 12px auto 0;
  background: repeating-linear-gradient(
    -45deg,
    #fbbf24 0 10px,
    #16202e 10px 20px
  );
}
.sb-site.ind-trades .sb-hero-grid .sb-hero-in h1::after {
  margin-left: 0;
}
.sb-site.ind-trades .sb-eyebrow,
.sb-site.ind-trades .sb-book,
.sb-site.ind-trades .sb-ghost,
.sb-site.ind-trades .sb-card,
.sb-site.ind-trades .sb-thumb {
  border-radius: 0;
}
.sb-site.ind-trades .sb-card {
  border: 2px solid #d3dbe6;
  box-shadow: 4px 4px 0 rgba(22, 32, 46, 0.12);
}
/* 🛍️ RETAIL — editorial lookbook: ivory, big italic serif, thin rules, uppercase spaced nav. */
.sb-site.ind-retail {
  background: #fcfbf7;
  color: #191714;
}
.sb-site.ind-retail .sb-name,
.sb-site.ind-retail .sb-hero h1,
.sb-site.ind-retail .sb-secttl,
.sb-site.ind-retail .sb-split h3 {
  font-family: "Fraunces", Georgia, serif;
}
.sb-site.ind-retail .sb-hero {
  background: #fcfbf7;
  border-bottom: 1px solid #191714;
}
.sb-site.ind-retail .sb-hero h1 {
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 6.6vw, 60px);
}
.sb-site.ind-retail .sb-nav span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
}
.sb-site.ind-retail .sb-eyebrow {
  border-radius: 0;
  background: #191714;
  color: #fcfbf7;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10.5px;
}
.sb-site.ind-retail .sb-card,
.sb-site.ind-retail .sb-thumb,
.sb-site.ind-retail .sb-book,
.sb-site.ind-retail .sb-ghost {
  border-radius: 0;
}
.sb-site.ind-retail .sb-card {
  border: 1px solid #e4e0d5;
  box-shadow: none;
}
.sb-site.ind-retail .sb-card:hover {
  box-shadow: 0 18px 40px rgba(25, 23, 20, 0.12);
}
/* 🏋️ FITNESS — dark energy: near-black gym, neon accent, big condensed italics. */
.sb-site.ind-fitness {
  background: #0d1110;
  color: #e8f5ee;
}
.sb-site.ind-fitness .sb-top {
  background: rgba(13, 17, 16, 0.92);
  border-bottom: 1px solid #1e2a25;
}
.sb-site.ind-fitness .sb-top .sb-name {
  color: #fff;
}
.sb-site.ind-fitness .sb-nav span {
  color: #7d968a;
}
.sb-site.ind-fitness .sb-name,
.sb-site.ind-fitness .sb-hero h1,
.sb-site.ind-fitness .sb-secttl,
.sb-site.ind-fitness .sb-split h3 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-style: italic;
}
.sb-site.ind-fitness .sb-hero {
  background:
    radial-gradient(
      900px 400px at 30% -20%,
      rgba(52, 211, 153, 0.16),
      transparent
    ),
    #0d1110;
}
.sb-site.ind-fitness .sb-hero h1 {
  color: #fff;
  font-size: clamp(38px, 7vw, 62px);
}
.sb-site.ind-fitness .sb-hero p {
  color: #a8c2b6;
}
.sb-site.ind-fitness .sb-eyebrow {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.4);
  color: #34d399;
}
.sb-site.ind-fitness .sb-card {
  background: #131a17;
  border: 1px solid #223129;
  border-radius: 14px;
  box-shadow: none;
}
.sb-site.ind-fitness .sb-card b,
.sb-site.ind-fitness .sb-split h3 {
  color: #fff;
}
.sb-site.ind-fitness .sb-secttl {
  color: #34d399;
}
.sb-site.ind-fitness .sb-why li,
.sb-site.ind-fitness .sb-hours,
.sb-site.ind-fitness .sb-loc {
  color: #a8c2b6;
}
.sb-site.ind-fitness .sb-trust {
  background: #101614;
}
.sb-site.ind-fitness .sb-trust-b {
  color: #a8c2b6;
}
.sb-site.ind-fitness .sb-reviews {
  background: #101614;
}
.sb-site.ind-fitness .sb-foot {
  background: #0a0d0c;
  color: #7d968a;
}
.sb-site.ind-fitness .sb-ghost {
  background: transparent;
  color: #34d399;
}
/* ✨ GENERIC — clean neutral slate (deliberately NOT the FlipsideUS indigo). */
.sb-site.ind-generic {
  background: #f8fafb;
  color: #17222b;
}
.sb-site.ind-generic .sb-hero {
  background: linear-gradient(180deg, #eef3f6, #f8fafb);
}
.sb-site.ind-generic .sb-card {
  border-radius: 14px;
  border: 1px solid #e2eaef;
}
/* Depth-section flavoring per identity */
.sb-site.ind-cafe .sb-mi-dots {
  border-bottom-style: dashed;
  border-color: #cbb08a;
}
.sb-site.ind-cafe .sb-gal-ph {
  border-radius: 16px 16px 4px 4px;
}
.sb-site.ind-cafe .sb-menu-g h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
}
.sb-site.ind-salon .sb-gal-ph {
  border-radius: 0;
}
.sb-site.ind-salon .sb-gal-ph:first-child {
  border-radius: 200px 200px 0 0;
}
.sb-site.ind-salon .sb-menu-g h4 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 21px;
}
.sb-site.ind-salon .sb-mi-dots {
  border-bottom: 1px solid #ecd6e1;
}
.sb-site.ind-salon .sb-ticker {
  border-block-color: #f3dfe8;
  background: #fdf0f5;
}
.sb-site.ind-clinic .sb-gal-ph {
  border-radius: 22px;
}
.sb-site.ind-clinic .sb-step-n {
  opacity: 0.3;
}
.sb-site.ind-trades .sb-gal-ph,
.sb-site.ind-trades .sb-band .sb-book {
  border-radius: 0;
}
.sb-site.ind-trades .sb-menu-g h4,
.sb-site.ind-trades .sb-step b {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
.sb-site.ind-trades .sb-ticker {
  background: #16202e;
  border: none;
}
.sb-site.ind-trades .sb-ticker-track {
  color: #fbbf24;
}
.sb-site.ind-retail .sb-gal-ph {
  border-radius: 0;
}
.sb-site.ind-retail .sb-menu-g h4 {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 20px;
}
.sb-site.ind-retail .sb-ticker {
  background: #191714;
  border: none;
}
.sb-site.ind-retail .sb-ticker-track {
  color: #fcfbf7;
}
.sb-site.ind-fitness .sb-ticker {
  background: #101614;
  border-block-color: #1e2a25;
}
.sb-site.ind-fitness .sb-ticker-track {
  color: #34d399;
}
.sb-site.ind-fitness .sb-menu-g h4,
.sb-site.ind-fitness .sb-step b {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.sb-site.ind-fitness .sb-mi-n {
  color: #e8f5ee;
}
.sb-site.ind-fitness .sb-mi-n em {
  color: #7d968a;
}
.sb-site.ind-fitness .sb-mi-p {
  color: #34d399;
}
.sb-site.ind-fitness .sb-mi-dots {
  border-color: #2c3d35;
}
.sb-site.ind-fitness .sb-step p {
  color: #a8c2b6;
}
.sb-site.ind-fitness .sb-step-n {
  opacity: 0.4;
}
.sb-site.ind-fitness .sb-qa {
  border-color: #223129;
}
.sb-site.ind-fitness .sb-qa summary {
  color: #e8f5ee;
}
.sb-site.ind-fitness .sb-qa p {
  color: #a8c2b6;
}
.sb-site.ind-fitness .sb-gal-ph {
  border-radius: 12px;
}
.sb-site.ind-fitness .sb-band {
  background: linear-gradient(135deg, #065f46, #34d399);
}
.sb-site.ind-fitness .sb-sched th {
  color: #7d968a;
}
.sb-site.ind-fitness .sb-sched td {
  border-top-color: #1e2a25;
}
.sb-site.ind-fitness .sb-sched-t {
  color: #7d968a;
}
.sb-site.ind-fitness .sb-sched-c {
  background: #17241f;
  color: #34d399;
}
.sb-site.ind-fitness .sb-footer {
  border-top-color: #1e2a25;
}
.sb-site.ind-fitness .sb-fl {
  color: #a8c2b6;
}
.sb-site.ind-retail .sb-shop-ph {
  border-radius: 0;
}
.sb-site.ind-retail .sb-shop-it b {
  font-family: "Fraunces", serif;
}
.sb-site.ind-retail .sb-footer {
  border-top: 1px solid #191714;
}
.sb-site.ind-salon .sb-team-av {
  border-radius: 200px 200px 8px 8px;
}
.sb-site.ind-trades .sb-sched-c,
.sb-site.ind-trades .sb-team-av {
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════════════════════
   DESIGN LOOKS — a prospect flips the generated sample-site between these on demo-site.html. Each is
   a pure reskin of the SAME .sb-site markup (see sitebuilder DESIGN_LOOKS), scoped to `.sb-site.look-*`
   so switching is an instant class swap. The industry accent (--ac/--ac2/--soft) carries through every
   look; what changes is the typography, hero treatment, card + button shape. Base .sb-site = Signature.
   ═══════════════════════════════════════════════════════════════════════════════════════════════ */

/* 🎬 Cinematic — elegant serif, tall dramatic hero, pill buttons, hairline cards (wedding/venue feel). */
.sb-site.look-cinematic .sb-name,
.sb-site.look-cinematic .sb-hero h1,
.sb-site.look-cinematic .sb-secttl,
.sb-site.look-cinematic .sb-split h3,
.sb-site.look-cinematic .sb-card b {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}
.sb-site.look-cinematic .sb-hero {
  background: linear-gradient(180deg, var(--soft), #fff);
  padding: 78px 26px 60px;
}
.sb-site.look-cinematic .sb-hero h1 {
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 800;
}
.sb-site.look-cinematic .sb-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  background: transparent;
  border-color: transparent;
}
.sb-site.look-cinematic .sb-book,
.sb-site.look-cinematic .sb-ghost {
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.sb-site.look-cinematic .sb-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  box-shadow: none;
}
.sb-site.look-cinematic .sb-secttl {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ac);
}

/* ✨ Aurora Glass — vivid gradient hero with white text, frosted translucent cards. */
.sb-site.look-aurora .sb-hero {
  background: linear-gradient(135deg, var(--ac), var(--ac2));
  color: #fff;
  padding: 60px 26px 54px;
}
.sb-site.look-aurora .sb-hero h1,
.sb-site.look-aurora .sb-hero p {
  color: #fff;
}
.sb-site.look-aurora .sb-eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}
.sb-site.look-aurora .sb-cta .sb-book {
  background: #fff;
  color: var(--ac);
}
.sb-site.look-aurora .sb-hero .sb-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}
.sb-site.look-aurora .sb-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 30px rgba(20, 27, 52, 0.08);
}
.sb-site.look-aurora .sb-book,
.sb-site.look-aurora .sb-ghost {
  border-radius: 12px;
}

/* 📰 Editorial — serif, hairline rules, LEFT-aligned hero, square corners (newspaper feel). */
.sb-site.look-editorial {
  font-family: Georgia, "Times New Roman", serif;
}
.sb-site.look-editorial .sb-hero {
  background: #fff;
  text-align: left;
  border-bottom: 2px solid #0b1220;
  padding: 40px 26px 34px;
}
.sb-site.look-editorial .sb-hero-in {
  margin: 0;
}
.sb-site.look-editorial .sb-cta {
  justify-content: flex-start;
}
.sb-site.look-editorial .sb-hero h1 {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.sb-site.look-editorial .sb-hero p {
  margin-left: 0;
}
.sb-site.look-editorial .sb-eyebrow {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-color: #0b1220;
}
.sb-site.look-editorial .sb-book,
.sb-site.look-editorial .sb-ghost,
.sb-site.look-editorial .sb-card,
.sb-site.look-editorial .sb-thumb {
  border-radius: 0;
}
.sb-site.look-editorial .sb-card {
  border: 1px solid #d7ddea;
  box-shadow: none;
}

/* 🍱 Soft Bento — big rounded surfaces, pastel soft fills, playful + friendly. */
.sb-site.look-bento .sb-hero {
  margin: 16px;
  border-radius: 26px;
  background: var(--soft);
  padding: 44px 26px;
}
.sb-site.look-bento .sb-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 26px rgba(20, 27, 52, 0.07);
}
.sb-site.look-bento .sb-thumb {
  border-radius: 16px;
}
.sb-site.look-bento .sb-book,
.sb-site.look-bento .sb-ghost {
  border-radius: 999px;
}
.sb-site.look-bento .sb-eyebrow {
  border-radius: 999px;
  background: #fff;
}

/* 🔲 Bold — neo-brutalist: heavy weights, hard borders, offset shadows, square corners. */
.sb-site.look-bold {
  font-weight: 500;
}
.sb-site.look-bold .sb-name,
.sb-site.look-bold .sb-hero h1,
.sb-site.look-bold .sb-secttl,
.sb-site.look-bold .sb-split h3 {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.sb-site.look-bold .sb-hero {
  background: var(--soft);
  border-bottom: 3px solid #0b1220;
}
.sb-site.look-bold .sb-eyebrow {
  border: 2px solid #0b1220;
  border-radius: 0;
  background: #fff;
  font-weight: 800;
}
.sb-site.look-bold .sb-book {
  border-radius: 0;
  border: 2px solid #0b1220;
  box-shadow: 4px 4px 0 #0b1220;
}
.sb-site.look-bold .sb-ghost {
  border-radius: 0;
  border: 2px solid #0b1220;
  color: #0b1220;
  box-shadow: 4px 4px 0 #0b1220;
}
.sb-site.look-bold .sb-card {
  border-radius: 0;
  border: 2px solid #0b1220;
  box-shadow: 5px 5px 0 rgba(11, 18, 32, 0.9);
}
.sb-site.look-bold .sb-thumb {
  border-radius: 0;
  border-bottom: 2px solid #0b1220;
}

/* The switcher bar (demo-site.html) — a scrollable row of look buttons above the framed sample. */
.ds-looks {
  max-width: 1000px;
  margin: 18px auto 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ds-looks-lbl {
  font-size: 12.5px;
  font-weight: 700;
  color: #6b7891;
  letter-spacing: 0.02em;
  margin-right: 4px;
}
.ds-look {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #2e3a52;
  background: #fff;
  border: 1.5px solid #dfe4ee;
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    transform 0.05s;
}
.ds-look:hover {
  border-color: #a9b3c8;
}
.ds-look:active {
  transform: translateY(1px);
}
.ds-look.on {
  color: #fff;
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  border-color: transparent;
}
.ds-look .em {
  margin-right: 5px;
}
@media (max-width: 680px) {
  .ds-looks-lbl {
    width: 100%;
    margin-bottom: 2px;
  }
}

/* Hero BACKGROUND media (None/Photo/Video toggle on demo-site.html) — a layer behind the hero content
   with a dark overlay so the name/tagline stay legible. Injected by demo-site.js; works over any look. */
.sb-hero.has-media {
  position: relative;
}
.sb-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sb-hero-media img,
.sb-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sb-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 17, 28, 0.32),
    rgba(12, 17, 28, 0.66)
  );
}
.sb-hero.has-media .sb-hero-in {
  position: relative;
  z-index: 1;
}
.sb-hero.has-media h1,
.sb-hero.has-media .sb-kicker,
.sb-hero.has-media .sb-sub {
  color: #fff !important;
}
.sb-hero.has-media .sb-eyebrow {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
}
.sb-hero.has-media .sb-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

/* Divider + label between the two banner groups (looks | background) on demo-site.html. */
.ds-sep {
  width: 1px;
  height: 20px;
  background: #dfe4ee;
  flex: 0 0 auto;
  margin: 0 4px;
}

/* ── Sub-pages (careers / about / contact / info) — same shell, real-site feel ─────────────────── */
.sb-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px 26px 44px;
  min-height: 46vh;
}
.sb-page h2 {
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}
.sb-page p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
  opacity: 0.85;
}
.sb-page-lead {
  font-size: 16px !important;
  opacity: 0.7 !important;
}
.sb-crumb {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ac);
  cursor: pointer;
  margin-bottom: 6px;
}
.sb-crumb:hover {
  text-decoration: underline;
}
.sb-home {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.sb-nav span {
  cursor: pointer;
}
.sb-fl {
  cursor: pointer;
}
.sb-jobs {
  display: grid;
  gap: 14px;
  margin: 20px 0 26px;
}
.sb-job {
  border: 1px solid rgba(127, 127, 127, 0.25);
  border-radius: 14px;
  padding: 18px 20px;
}
.sb-job-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.sb-job-h b {
  font-size: 16.5px;
}
.sb-job-t {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ac);
}
.sb-job p {
  margin: 8px 0 14px;
  font-size: 14px;
}
.sb-apply {
  border: 2px solid var(--ac);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 10px;
}
.sb-apply h3 {
  margin: 0 0 4px;
}
.sb-apply input,
.sb-apply textarea,
.sb-contact-form input,
.sb-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14.5px;
  padding: 11px 13px;
  border: 1px solid rgba(127, 127, 127, 0.35);
  border-radius: 10px;
  background: transparent;
  color: inherit;
}
.sb-apply-note {
  font-size: 12.5px !important;
  opacity: 0.65 !important;
  margin: 2px 0 0 !important;
}
.sb-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 18px;
}
.sb-contact-card {
  border: 1px solid rgba(127, 127, 127, 0.25);
  border-radius: 16px;
  padding: 18px 20px;
}
.sb-contact-form {
  display: grid;
  gap: 10px;
  align-content: start;
}
.sb-contact-form h3 {
  margin: 0;
}
.sb-about-ph {
  border-radius: 16px;
  overflow: hidden;
  margin: 6px 0 18px;
  aspect-ratio: 5/2.4;
  background: var(--soft);
}
.sb-about-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sb-about-list {
  margin: 4px 0 22px;
  padding: 0 0 0 2px;
  list-style: none;
  display: grid;
  gap: 8px;
}
.sb-about-list li {
  font-weight: 600;
  font-size: 14px;
}
.sb-about-list li::before {
  content: "✓ ";
  color: var(--ac);
  font-weight: 900;
}
.sb-form-done {
  text-align: center;
  padding: 10px 4px;
}
.sb-form-done p {
  margin-top: 8px;
}
.sb-site.ind-fitness .sb-job,
.sb-site.ind-fitness .sb-contact-card {
  border-color: #223129;
  background: #131a17;
}
.sb-site.ind-trades .sb-job,
.sb-site.ind-trades .sb-apply,
.sb-site.ind-trades .sb-contact-card,
.sb-site.ind-trades .sb-about-ph {
  border-radius: 0;
}
.sb-site.ind-retail .sb-job,
.sb-site.ind-retail .sb-apply,
.sb-site.ind-retail .sb-about-ph {
  border-radius: 0;
}
@media (max-width: 680px) {
  .sb-contact {
    grid-template-columns: 1fr;
  }
}

/* ═══ Signature FX chrome (per-industry eye-catchers + universal conversion, demo-site.js mountFx) ═══ */
/* Kinetic headline: letters rise in one by one */
.kchar {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em) rotate(3deg);
  animation: kcharIn 0.5s cubic-bezier(0.2, 0.9, 0.25, 1.2) both;
}
@keyframes kcharIn {
  to {
    opacity: 1;
    transform: none;
  }
}
/* Open-now pill in the shared header */
.sb-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #15803d;
  background: #e7f4ec;
  border-radius: 100px;
  padding: 4px 10px;
  margin-left: 10px;
  white-space: nowrap;
}
.sb-open i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: openPulse 2.2s ease-in-out infinite;
}
@keyframes openPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
  }
}
.sb-site.ind-fitness .sb-open {
  background: rgba(52, 211, 153, 0.14);
  color: #34d399;
}
/* Sticky CTA bar (appears when the hero scrolls away) */
.ds-cta-bar {
  position: fixed;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
  z-index: 70;
  transition: bottom 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ds-cta-bar.show {
  bottom: 18px;
}
.ds-cta-bar button {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  box-shadow: 0 14px 34px rgba(31, 27, 74, 0.4);
}
.ds-cta-bar button:hover {
  filter: brightness(1.08);
}
/* Confetti burst */
.ds-confetti {
  position: fixed;
  z-index: 300;
  pointer-events: none;
}
.ds-confetti i {
  position: absolute;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiFly 1.1s cubic-bezier(0.16, 0.8, 0.4, 1) both;
}
@keyframes confettiFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translate(var(--cx), calc(var(--cy) + 120px)) rotate(var(--cr));
  }
}
/* ☕ Latte fill line (page edge) */
.ds-fill {
  position: fixed;
  right: 14px;
  top: 16vh;
  height: 62vh;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.ds-fill .cup {
  font-size: 26px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s;
}
.ds-fill .track {
  flex: 1;
  width: 8px;
  border-radius: 10px;
  background: rgba(120, 80, 30, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}
.ds-fill .fill {
  width: 100%;
  background: linear-gradient(180deg, #d7a86e, #8a5a22);
  border-radius: 10px;
  transition: height 0.15s linear;
}
.ds-fill.full .cup {
  animation: cupPop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1);
}
@keyframes cupPop {
  40% {
    transform: scale(1.6) rotate(-8deg);
  }
}
/* 💇 Scissor cursor + snip pulse */
.sb-site.ind-salon .sb-menu.snippable {
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26'><text y='20' font-size='19'>✂️</text></svg>")
      13 13,
    pointer;
}
.ds-snip {
  position: fixed;
  z-index: 300;
  font-size: 26px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: snipPulse 0.65s ease-out both;
}
@keyframes snipPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.6) rotate(-20deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7) rotate(15deg);
    opacity: 0;
  }
}
/* 🦷 Whitening tooth */
.ds-tooth {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 60;
  pointer-events: none;
}
.ds-tooth span {
  font-size: 40px;
  display: inline-block;
  filter: brightness(0.72) saturate(0.7);
  transition: filter 0.15s linear;
}
.ds-tooth em {
  position: absolute;
  right: -8px;
  top: -6px;
  font-style: normal;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.3s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.ds-tooth.bright em {
  opacity: 1;
  transform: scale(1);
}
/* 🔧 Spirit level */
.ds-level {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  pointer-events: none;
  text-align: center;
}
.ds-level .glass {
  width: 120px;
  height: 14px;
  border-radius: 10px;
  background: rgba(22, 32, 46, 0.85);
  border: 2px solid #fbbf24;
  position: relative;
  overflow: hidden;
}
.ds-level .glass::before,
.ds-level .glass::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: #fbbf24;
  opacity: 0.7;
}
.ds-level .glass::before {
  left: 44px;
}
.ds-level .glass::after {
  right: 44px;
}
.ds-level .bubble {
  position: absolute;
  left: 50%;
  top: 2px;
  width: 22px;
  height: 8px;
  margin-left: -11px;
  border-radius: 10px;
  background: radial-gradient(ellipse at 40% 35%, #d9f99d, #65a30d);
  transition: transform 0.18s ease-out;
}
.ds-level span {
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #fbbf24;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.ds-level.true-level .glass {
  box-shadow: 0 0 10px rgba(101, 163, 13, 0.5);
}
/* 🏋️ Rep counter */
.ds-reps {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 60;
  pointer-events: none;
}
.ds-reps b {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #34d399;
  background: rgba(13, 17, 16, 0.92);
  border: 1px solid #223129;
  border-radius: 10px;
  padding: 8px 14px;
}
.ds-reps.pr b {
  color: #0d1110;
  background: #34d399;
  animation: prSlam 0.5s cubic-bezier(0.2, 1.5, 0.4, 1);
}
@keyframes prSlam {
  30% {
    transform: scale(1.45) rotate(-4deg);
  }
}
/* 🛍️ Scarcity tag + lookbook corner-peel */
.sb-scarce {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #191714;
  color: #fcfbf7;
  padding: 5px 10px;
}
.sb-shop-it.in .sb-scarce {
  animation: scarceWiggle 0.7s ease-in-out 0.5s 2;
}
@keyframes scarceWiggle {
  0%,
  100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(4deg);
  }
}
.sb-shop-ph::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  background: linear-gradient(
    315deg,
    var(--soft) 48%,
    rgba(0, 0, 0, 0.12) 50%,
    transparent 52%
  );
  transition:
    width 0.3s,
    height 0.3s;
}
.sb-shop-it:hover .sb-shop-ph::after {
  width: 44px;
  height: 44px;
}
/* ✨ Star roll (generic reviews) */
.sb-stars .num {
  font-weight: 900;
  font-size: 18px;
  margin-right: 8px;
  font-variant-numeric: tabular-nums;
}
.sb-stars .st {
  opacity: 0.25;
  transition:
    opacity 0.2s,
    transform 0.2s;
  display: inline-block;
}
.sb-stars .st.lit {
  opacity: 1;
  transform: scale(1.15);
}
@media (max-width: 700px) {
  .ds-fill,
  .ds-level {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .kchar {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .ds-cta-bar {
    transition: none;
  }
}

/* ═══ Wave-2 FX: feature theater (toasts, cart bubble, slots, insurance check, quote slider, spots) ═══ */
/* Activity toast (sample-labeled) */
.ds-toast {
  position: fixed;
  left: 16px;
  bottom: 76px;
  z-index: 65;
  max-width: 300px;
  background: #fff;
  color: #16202e;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: "Outfit", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(16, 21, 38, 0.22);
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  pointer-events: none;
}
.ds-toast.show {
  opacity: 1;
  transform: none;
}
.ds-toast em {
  display: block;
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #98a1b3;
  margin-top: 3px;
}
/* ☕ cart bubble + flying dot */
.ds-cart {
  position: fixed;
  left: 16px;
  bottom: 18px;
  z-index: 66;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3d2c1e;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(61, 44, 30, 0.4);
  transition: transform 0.2s;
}
.ds-cart .ct {
  background: #f59e0b;
  color: #3d2c1e;
  border-radius: 100px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 12.5px;
}
.ds-cart .tot {
  font-size: 13.5px;
  opacity: 0.85;
}
.ds-cart.bump {
  transform: scale(1.12);
}
.ds-fly {
  position: fixed;
  z-index: 300;
  color: #b45309;
  font-size: 18px;
  pointer-events: none;
  transition:
    transform 0.55s cubic-bezier(0.3, 0.1, 0.3, 1),
    opacity 0.55s;
  transform: translate(0, 0);
}
.sb-mi.orderable {
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}
.sb-mi.orderable:hover {
  background: rgba(180, 83, 9, 0.07);
}
/* 💇 booking slot chips */
.sb-slots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: inherit;
}
.sb-slots .lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--ac);
  letter-spacing: 0.04em;
}
.sb-slots .slot {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--ac);
  background: #fff;
  border: 1.5px solid var(--ac);
  border-radius: 999px;
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.15s;
}
.sb-slots .slot:hover {
  background: var(--soft);
  transform: translateY(-1px);
}
.sb-slots .slot.held {
  background: var(--ac);
  color: #fff;
}
/* 🦷 insurance quick-check */
.sb-inscheck {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  position: relative;
}
.sb-inscheck input {
  flex: 1;
  min-width: 190px;
  font-family: inherit;
  font-size: 13.5px;
  padding: 10px 13px;
  border: 1px solid #bfe7ef;
  border-radius: 999px;
  background: #fff;
}
.sb-inscheck button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--ac);
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
}
.sb-inscheck .res {
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  min-height: 18px;
}
.sb-inscheck .res.checking {
  color: var(--muted, #6b7891);
  background: linear-gradient(90deg, #9ab6bd 25%, #d9f2f7 50%, #9ab6bd 75%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: insShimmer 0.9s linear infinite;
}
.sb-inscheck .res.ok {
  color: #15803d;
}
@keyframes insShimmer {
  to {
    background-position: -200% 0;
  }
}
.sb-inscheck em {
  position: absolute;
  right: 2px;
  top: -14px;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}
/* 🔧 instant-quote slider */
.sb-quotez {
  max-width: 420px;
  margin: 26px auto 4px;
  border: 2px solid #16202e;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 5px 5px 0 rgba(22, 32, 46, 0.9);
}
.sb-quotez .qz-t {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  position: relative;
}
.sb-quotez .qz-t em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #98a1b3;
  margin-left: 8px;
  vertical-align: middle;
}
.sb-quotez .qz-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 12px 0 4px;
  font-size: 13.5px;
  font-weight: 600;
}
.sb-quotez .qz-n {
  font-size: 18px;
  font-weight: 900;
  color: var(--ac);
}
.sb-quotez input[type="range"] {
  width: 100%;
  accent-color: var(--ac);
}
.sb-quotez .qz-price {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 8px 0 4px;
  transition: transform 0.15s;
}
.sb-quotez .qz-price.tick {
  transform: scale(1.06);
}
.sb-quotez .qz-note {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
/* 🏋️ class-capacity spots */
.sb-sched-c {
  position: relative;
}
.sb-sched-c .spots {
  display: block;
  margin-top: 4px;
}
.sb-sched-c .spots i {
  display: block;
  height: 3px;
  border-radius: 4px;
  background: #34d399;
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sb-sched-c .spots b {
  font-size: 9px;
  font-weight: 800;
  opacity: 0.75;
}
.sb-sched-c .spots.filled b {
  color: #fbbf24;
}
@media (max-width: 700px) {
  .ds-toast {
    bottom: 84px;
    max-width: 240px;
  }
  .ds-cart {
    bottom: 74px;
  }
}

/* 🥂 BOUTIQUE look — champagne neutrals + serif calm (the "de-medicalized" award-circuit play). */
.sb-site.look-boutique {
  background: #f7f1e8;
  color: #2c2620;
}
.sb-site.look-boutique .sb-top {
  background: rgba(247, 241, 232, 0.94);
  border-bottom: 1px solid #e4d9c8;
}
.sb-site.look-boutique .sb-name,
.sb-site.look-boutique .sb-hero h1,
.sb-site.look-boutique .sb-secttl,
.sb-site.look-boutique .sb-split h3,
.sb-site.look-boutique .sb-card b,
.sb-site.look-boutique .sb-menu-g h4,
.sb-site.look-boutique .sb-page h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.01em;
}
.sb-site.look-boutique .sb-hero {
  background: linear-gradient(180deg, #f1e7d8, #f7f1e8);
  border-bottom: none;
}
.sb-site.look-boutique .sb-hero h1 {
  font-weight: 600;
  font-size: clamp(36px, 6.4vw, 60px);
  color: #2c2620;
}
.sb-site.look-boutique .sb-hero p {
  color: #6e6252;
}
.sb-site.look-boutique .sb-eyebrow {
  background: transparent;
  border: 1px solid #c9b896;
  color: #8a7a5c;
  border-radius: 999px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10.5px;
}
.sb-site.look-boutique .sb-book {
  background: #2c2620;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.sb-site.look-boutique .sb-ghost {
  color: #2c2620;
  border-color: #2c2620;
  background: transparent;
  border-radius: 2px;
}
.sb-site.look-boutique .sb-card {
  background: #fffdf9;
  border: 1px solid #e9dfcf;
  border-radius: 3px;
  box-shadow: none;
}
.sb-site.look-boutique .sb-card:hover {
  box-shadow: 0 18px 40px rgba(122, 103, 74, 0.14);
}
.sb-site.look-boutique .sb-thumb,
.sb-site.look-boutique .sb-gal-ph {
  border-radius: 3px;
}
.sb-site.look-boutique .sb-ticker {
  background: #efe5d4;
  border-block-color: #e4d9c8;
}
.sb-site.look-boutique .sb-ticker-track {
  color: #8a7a5c;
}
.sb-site.look-boutique .sb-band {
  background: #2c2620;
}
.sb-site.look-boutique .sb-band .sb-book {
  background: #f7f1e8;
  color: #2c2620;
}

/* ═══ Wave-3 FX: ghost word, magnetic CTAs, typed sign-off, emoji rain, BA slider, 3D gift card ═══ */
.sb-hero {
  position: relative;
  overflow: hidden;
}
.sb-ghostword {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-size: clamp(120px, 26vw, 300px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(127, 127, 127, 0.1);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: ghostDrift 16s ease-in-out infinite alternate;
}
@keyframes ghostDrift {
  from {
    transform: translate(-54%, -52%) rotate(-1.5deg);
  }
  to {
    transform: translate(-46%, -48%) rotate(1.5deg);
  }
}
.sb-hero-grid,
.sb-hero .sb-hero-in {
  position: relative;
  z-index: 1;
}
.sb-site.ind-fitness .sb-ghostword {
  -webkit-text-stroke-color: rgba(52, 211, 153, 0.12);
}
.sb-book.lg {
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.sb-typed {
  margin-top: 8px;
  font-size: 12px;
  color: inherit;
  opacity: 0.75;
  font-style: italic;
}
.sb-typed i {
  font-style: normal;
  animation: caretBlink 0.8s step-start infinite;
}
.sb-typed i.done {
  animation: none;
  opacity: 0;
}
@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}
.ds-rain {
  position: fixed;
  top: -40px;
  z-index: 300;
  pointer-events: none;
  animation: rainFall 2.2s linear both;
}
@keyframes rainFall {
  to {
    transform: translateY(110vh) rotate(200deg);
  }
}
/* Before/After drag slider */
.sb-ba-row.ba-slider {
  display: block;
}
.ba-stage {
  position: relative;
  aspect-ratio: 2/1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--soft);
}
.ba-stage .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-topwrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
}
.ba-stage .sb-ba-tag.after {
  left: auto;
  right: 12px;
  background: var(--ac);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.ba-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 800;
  color: #16202e;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.ba-stage input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
/* 3D gift card */
.gcard-wrap {
  perspective: 900px;
  margin: 18px 0 22px;
}
.gcard {
  position: relative;
  width: min(340px, 92%);
  aspect-ratio: 1.6;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.gcard.flipped {
  transform: rotateY(180deg);
}
.gc-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(130deg, var(--ac), var(--ac2) 70%, var(--ac));
  box-shadow: 0 20px 44px rgba(16, 21, 38, 0.3);
}
.gc-back {
  transform: rotateY(180deg);
  background: linear-gradient(130deg, #1c2331, #2c3a52);
  font-size: 13.5px;
  gap: 6px;
  justify-content: center;
}
.gc-biz {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.gc-amt {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.gc-lbl {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.3em;
  opacity: 0.8;
}
.gc-code {
  font-family: monospace;
  letter-spacing: 0.3em;
  opacity: 0.8;
}
.gc-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 58%
  );
  animation: gcShine 3.4s ease-in-out infinite;
}
@keyframes gcShine {
  0%,
  60% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}
.gc-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.gc-chip {
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: var(--ac);
  background: transparent;
  border: 1.5px solid var(--ac);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
}
.gc-chip.on {
  background: var(--ac);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .sb-ghostword,
  .gc-shine {
    animation: none;
  }
}

/* ═══ Wave-4 FX: velocity skew, spa mist, speed ring, blueprint hover, chalk dust, coffee ring ═══ */
.sb-secttl {
  transform: skewY(var(--skew, 0deg));
  transition: transform 0.12s ease-out;
  will-change: transform;
}
/* 💇 spa mist */
.sb-mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
  z-index: 0;
}
.sb-mist.m1 {
  width: 380px;
  height: 300px;
  left: -80px;
  top: 30%;
  background: rgba(244, 114, 182, 0.16);
}
.sb-mist.m2 {
  width: 300px;
  height: 260px;
  right: -60px;
  top: 8%;
  background: rgba(219, 39, 119, 0.1);
}
/* speed ring (footer) */
.sb-speed {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sb-speed svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}
.sb-speed circle {
  fill: none;
  stroke-width: 4;
}
.sb-speed .bg {
  stroke: rgba(127, 127, 127, 0.2);
}
.sb-speed .arc {
  stroke: #16a34a;
  stroke-linecap: round;
}
.sb-speed b {
  font-size: 16px;
  font-weight: 900;
  color: #16a34a;
  min-width: 30px;
}
.sb-speed span {
  font-size: 11.5px;
  font-weight: 700;
  opacity: 0.6;
  max-width: 90px;
  line-height: 1.3;
}
/* 🔧 blueprint hover: trades gallery photos flip to line-art blue */
.sb-site.ind-trades .sb-gal-ph img {
  transition:
    filter 0.35s,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sb-site.ind-trades .sb-gal-ph:hover img {
  filter: invert(0.92) sepia(0.6) hue-rotate(170deg) saturate(3) brightness(0.9);
}
.sb-site.ind-trades .sb-gal-ph::after {
  content: "BLUEPRINT VIEW";
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #fff;
  background: #16202e;
  padding: 4px 8px;
  opacity: 0;
  transition: opacity 0.25s;
}
.sb-site.ind-trades .sb-gal-ph:hover::after {
  opacity: 1;
}
/* 🏋️ chalk dust on schedule chips */
.sb-site.ind-fitness .sb-sched-c {
  transition: transform 0.15s;
}
.sb-site.ind-fitness .sb-sched-c:hover {
  transform: translateY(-2px);
}
.sb-site.ind-fitness .sb-sched td {
  position: relative;
}
.sb-site.ind-fitness .sb-sched-c:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 40px;
  height: 12px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(232, 245, 238, 0.5),
    transparent 70%
  );
  animation: chalkPuff 0.5s ease-out both;
  pointer-events: none;
}
@keyframes chalkPuff {
  0% {
    opacity: 0;
    scale: 0.4;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    scale: 1.6;
  }
}
/* ☕ coffee-ring watermark behind the menu */
.sb-site.ind-cafe .sb-menu {
  position: relative;
}
.sb-site.ind-cafe .sb-menu::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 14px solid rgba(138, 90, 34, 0.07);
  transform: rotate(-12deg) scaleY(0.92);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .sb-secttl {
    transform: none;
  }
  .sb-mist {
    display: none;
  }
}

/* ── Wave 5 FX (docs/DEMO-IDEAS.md ideas 2,6,8,13,27,36,38,39,40,41,43,44) ── */
/* 2: rotating kicker line */
.sb-kflip {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
}
.sb-kflip .kword {
  display: inline-block;
  min-width: 90px;
  text-align: left;
  color: var(--ac, inherit);
}
.sb-kflip .kword.swap {
  animation: kwordSwap 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes kwordSwap {
  0% {
    opacity: 0;
    transform: translateY(0.6em) rotateX(70deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/* 6: retail editorial drop-cap */
.sb-site.ind-retail .kchar.kdrop {
  font-size: 1.5em;
  line-height: 0.8;
  margin-right: 3px;
  color: var(--ac, inherit);
}
/* 8: café cursor steam */
.ds-steam {
  position: fixed;
  z-index: 60;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  filter: blur(2px);
  animation: steamRise 1.2s ease-out both;
}
@keyframes steamRise {
  0% {
    opacity: 0.7;
    transform: translate(-50%, 0) scale(0.7);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--sway, 12px)), -70px) scale(1.7);
  }
}
/* 40: café menu paper grain + coffee-ring watermark */
.sb-site.ind-cafe .sb-menu.paper {
  position: relative;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(120, 90, 60, 0.025) 0 1px,
      transparent 1px 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(120, 90, 60, 0.02) 0 1px,
      transparent 1px 4px
    );
}
.sb-site.ind-cafe .sb-menu.paper::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 14px;
  width: 92px;
  height: 78px;
  border: 9px solid rgba(124, 82, 46, 0.09);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
/* 41: salon iridescent section titles */
@supports (-webkit-background-clip: text) {
  .sb-site.ind-salon .sb-secttl.irid {
    background-image: linear-gradient(
      100deg,
      #b76e79,
      #d4a5b5,
      #9f8fd4,
      #7fc4c9,
      #b76e79
    );
    background-size: 300% 100%;
    background-position: var(--iridx, 50%) 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s ease-out;
  }
}
/* 13: clinic gallery view pill */
.ds-viewpill {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  padding: 7px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  color: #1c2733;
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(10, 20, 40, 0.22);
  transition:
    opacity 0.2s,
    transform 0.12s ease-out;
}
.ds-viewpill.show {
  opacity: 1;
}
/* 27: trades dispatch radar ping */
.sb-ping {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 9px 14px;
  border-radius: 100px;
  background: rgba(10, 18, 28, 0.55);
  color: #eef4fb;
  font-size: 13.5px;
  backdrop-filter: blur(4px);
}
.sb-ping .radar {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.sb-ping .radar b {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #4ade80;
}
.sb-ping .radar i {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(74, 222, 128, 0.7);
  border-radius: 50%;
  animation: pingRing 2.4s ease-out infinite;
}
.sb-ping .radar i + i {
  animation-delay: 1.2s;
}
@keyframes pingRing {
  0% {
    transform: scale(0.4);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.sb-ping .eta {
  color: #4ade80;
}
.sb-ping .eta.tick {
  animation: etaTick 0.3s ease;
}
@keyframes etaTick {
  50% {
    transform: translateY(-3px);
  }
}
.sb-ping em {
  font-style: normal;
  font-size: 10px;
  opacity: 0.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* 43: trades blueprint hover on gallery photos */
.sb-site.ind-trades .sb-gal-ph {
  position: relative;
}
.sb-site.ind-trades .sb-gal-ph img {
  transition: filter 0.35s ease;
}
.sb-site.ind-trades .sb-gal-ph:hover img {
  filter: invert(0.88) sepia(0.6) hue-rotate(170deg) saturate(2.6)
    contrast(1.05);
}
.sb-site.ind-trades .sb-gal-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(160, 210, 255, 0.16) 0 1px,
      transparent 1px 24px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(160, 210, 255, 0.16) 0 1px,
      transparent 1px 24px
    );
  transition: opacity 0.35s ease;
}
.sb-site.ind-trades .sb-gal-ph:hover::after {
  opacity: 1;
}
/* 36: fitness tear-off ticket */
.sb-ticket {
  display: flex;
  max-width: 560px;
  margin: 26px auto 0;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}
.sb-ticket .tk-main {
  flex: 1;
  padding: 18px 22px;
  background: linear-gradient(120deg, var(--ac, #e11d48), var(--ac2, #7c3aed));
  color: #fff;
  border-radius: 14px 0 0 14px;
}
.sb-ticket .tk-main b {
  display: block;
  font-size: 21px;
  letter-spacing: 0.04em;
}
.sb-ticket .tk-main span {
  font-size: 12.5px;
  opacity: 0.85;
}
.sb-ticket .tk-stub {
  flex: none;
  width: 78px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border-left: 2px dashed rgba(255, 255, 255, 0.65);
  border-radius: 0 14px 14px 0;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.7, 1),
    opacity 0.5s;
  font-family: inherit;
}
.sb-ticket .tk-stub:hover {
  background: rgba(0, 0, 0, 0.35);
}
.sb-ticket.torn .tk-stub {
  transform: translate(46px, 90px) rotate(24deg);
  opacity: 0;
  pointer-events: none;
}
/* 44: fitness chalk dust */
.ds-chalk {
  position: fixed;
  z-index: 70;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  filter: blur(0.5px);
  animation: chalkPuff 0.7s ease-out both;
}
@keyframes chalkPuff {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + var(--dx, 0px)),
        calc(-50% + var(--dy, -18px))
      )
      scale(1.4);
  }
}
/* 38: retail size pills + self-drawing check */
.sb-sizes {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.sb-sizes .sz {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1.5px solid rgba(25, 23, 20, 0.25);
  background: transparent;
  color: inherit;
  font-weight: 700;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}
.sb-sizes .sz.on {
  background: #191714;
  color: #fcfbf7;
  border-color: #191714;
}
.sb-sizes .sz svg {
  width: 12px;
  height: 12px;
}
.sb-sizes .sz.on svg path {
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  animation: szCheck 0.35s ease-out 0.05s forwards;
}
@keyframes szCheck {
  to {
    stroke-dashoffset: 0;
  }
}
/* 39: generic adjustable-estimate diagram */
.sb-estdia {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--soft, rgba(0, 0, 0, 0.04));
}
.sb-estdia .ed-t {
  font-weight: 800;
  margin-bottom: 16px;
}
.sb-estdia .ed-t em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-left: 8px;
}
.sb-estdia .ed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sb-estdia .ed-step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.25, 1);
}
.sb-estdia .ed-step span {
  display: block;
  font-size: 26px;
}
.sb-estdia .ed-step b {
  display: block;
  font-size: 14.5px;
  margin-top: 4px;
}
.sb-estdia .ed-step i {
  font-style: normal;
  font-size: 12px;
  opacity: 0.65;
}
.sb-estdia u {
  flex: none;
  width: 34px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease;
  text-decoration: none;
}
.sb-estdia.go .ed-step {
  opacity: 1;
  transform: none;
}
.sb-estdia.go .ed-step:nth-child(3) {
  transition-delay: 0.35s;
}
.sb-estdia.go .ed-step:nth-child(5) {
  transition-delay: 0.7s;
}
.sb-estdia.go u {
  opacity: 0.35;
  transform: none;
}
.sb-estdia.go u:first-of-type {
  transition-delay: 0.25s;
}
.sb-estdia.go u:last-of-type {
  transition-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .sb-kflip .kword.swap,
  .ds-steam,
  .ds-chalk,
  .sb-ping .radar i {
    animation: none;
  }
  .sb-estdia .ed-step,
  .sb-estdia u {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Brand font: when the business's own site declares a Google Font we load the same one and let it
   drive the headings. Scoped to .brand-font so it only applies once a real font was found, and the
   industry pairing stays the default. */
.sb-site.brand-font .sb-name,
.sb-site.brand-font .sb-hero h1,
.sb-site.brand-font .sb-secttl,
.sb-site.brand-font .sb-split h3,
.sb-site.brand-font .sb-band h2 {
  font-family: var(--font-brand), Georgia, serif;
}
