.bsp-web-page--webstore {
  --bsp-webstore-max: 1760px;
  --bsp-webstore-page-gutter: clamp(12px, 2.5vw, 32px);
  --bsp-webstore-header-offset: 64px;
  --bsp-web-product-sheet-topbar-space: 118px;
  --bsp-visual-viewport-bottom-inset: 0px;
  --bsp-keyboard-offset-bottom: max(env(keyboard-inset-height, 0px), var(--bsp-visual-viewport-bottom-inset, 0px));
  /* Define the display-font var the PUBLIC render otherwise lacks: styles.css defines
     --ordering-font-display only for the console/canvas, so public custom blocks fell
     back to system-ui and "lost" the design font (Randy 2026-06-16 parity audit). The
     fonts are a system-font stack (no @font-face), so defining it here gives builder +
     public the same resolution; a tenant web-theme font can still override inline. */
  --ordering-font-display: "Hubot Sans", "Mona Sans", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
  font-family: var(--ordering-font-display, system-ui, sans-serif);
  background: var(--ordering-bg, #f6f5f2);
  color: var(--ordering-text, #1f1713);
}

/* box-sizing reset for the SERVER-RENDERED storefront/CMS shell. The React app gets
   `box-sizing: border-box` globally from styles.css, but the SSR shell loads ONLY
   webstore-shell.css (= this file). Without this reset, CMS sections (width:100% +
   padding-inline: gutter) compute as content-box and overflow by the gutter on the
   RIGHT — the responsiveness break Randy hit once a CMS page became the host root
   (2026-06-23). Scoped to the webstore page so it never reaches other surfaces;
   idempotent in the React app (already border-box). */
.bsp-web-page--webstore,
.bsp-web-page--webstore *,
.bsp-web-page--webstore *::before,
.bsp-web-page--webstore *::after {
  box-sizing: border-box;
}

@media (max-width: 720px) {
  .bsp-web-page--webstore :is(
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]),
    select,
    textarea
  ) {
    font-size: 16px !important;
  }
}

.bsp-webstore-header {
  --bsp-webstore-header-gutter: var(--bsp-webstore-page-gutter);
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px var(--bsp-webstore-header-gutter);
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(31, 23, 19, 0.08);
  backdrop-filter: blur(16px);
}

.bsp-webstore-header__brand,
.bsp-webstore-header__nav,
.bsp-webstore-footer__links,
.bsp-webstore-header__language-toggle,
.bsp-webstore-header__language-option {
  display: flex;
  align-items: center;
}

.bsp-webstore-header__brand {
  min-width: 0;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.bsp-webstore-header__announcement {
  grid-column: 1 / -1;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 0 8px;
  color: var(--ordering-text, #1f1713);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}

.bsp-webstore-header__announcement a {
  color: var(--ordering-accent, #b45627);
  font-weight: 850;
  text-decoration: none;
}

.bsp-webstore-header__announcement a:hover {
  text-decoration: underline;
}

.bsp-webstore-header__mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--ordering-brand-mark, #eda632);
  color: var(--ordering-surface, #fff);
  font-family: var(--ordering-font-display, system-ui, sans-serif);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.bsp-webstore-header__mark--logo {
  width: auto;
  min-width: 42px;
  max-width: 176px;
  padding: 0;
  background: transparent;
  color: inherit;
}

.bsp-webstore-header__logo-image {
  width: auto;
  max-width: 176px;
  height: 42px;
  border-radius: 0;
  object-fit: contain;
}

.bsp-webstore-header__brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.bsp-webstore-header__brand-copy strong {
  overflow: hidden;
  font-family: var(--ordering-font-display, system-ui, sans-serif);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bsp-webstore-header__brand-copy small {
  overflow: hidden;
  color: var(--ordering-text-muted, #70645c);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bsp-webstore-header__nav {
  gap: 6px;
  justify-content: flex-end;
  min-width: 0;
}

.bsp-webstore-header__language {
  position: relative;
  justify-self: end;
}

.bsp-webstore-header__link,
.bsp-webstore-footer__links a,
.bsp-webstore-header__language-toggle,
.bsp-webstore-header__menu-toggle {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ordering-text, #1f1713);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
}

.bsp-webstore-header__link:hover,
.bsp-webstore-footer__links a:hover,
.bsp-webstore-header__language-toggle:hover,
.bsp-webstore-header__menu-toggle:hover {
  border-color: var(--ordering-line, rgba(49, 36, 28, 0.12));
  background: var(--ordering-surface-soft, #f8f6f2);
}

.bsp-webstore-header__menu-toggle {
  display: none;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border-color: var(--ordering-line, rgba(49, 36, 28, 0.12));
  background: transparent;
  cursor: pointer;
}

/* "Order" — an always-present, non-editable page link in the nav (accent-weighted
   so it reads as the primary action, but stays a plain text link on the same row). */
.bsp-webstore-header__link--order {
  color: var(--ordering-accent, #b45627);
  font-weight: 850;
}

/* Builder Button widget — Style trait toggles filled/outline. */
.bsp-wbtn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 800; text-decoration: none; font-family: inherit; border: 2px solid var(--ordering-accent, #b45627); cursor: pointer; }
.bsp-wbtn--filled { background: var(--ordering-accent, #b45627); color: var(--ordering-on-accent, #fff); }
.bsp-wbtn--outline { background: transparent; color: var(--ordering-accent, #b45627); }

/* Builder Counter widget — Value + Label traits. */
.bsp-counter { text-align: center; padding: 16px; font-family: inherit; }
.bsp-counter__value { font-size: 48px; font-weight: 850; line-height: 1; color: var(--ordering-accent, #b45627); }
.bsp-counter__label { color: var(--ordering-text-muted, #70645c); margin-top: 6px; }

/* Builder Progress Bar widget — Percent + Label traits. */
.bsp-progress { max-width: 480px; font-family: inherit; }
.bsp-progress__head { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.bsp-progress__track { height: 10px; border-radius: 999px; background: rgba(49,36,28,0.1); overflow: hidden; }
.bsp-progress__bar { height: 100%; border-radius: 999px; background: var(--ordering-accent, #b45627); }

/* Customer-facing web pages must NOT inherit the kiosk's global ambient glow
   (styles.css `body::before` — a fixed white-top-left + warm radial overlay). The
   web route sets body.bsp-web-surface; neutralize that decoration + the kiosk body
   gradient there so the tenant's own web design shows clean. */
body.bsp-web-surface::before,
body.bsp-web-surface::after { content: none !important; background: none !important; display: none !important; }
body.bsp-web-surface { background-image: none !important; }

/* Builder Alert widget — colour by type (Settings panel trait toggles the class). */
.bsp-alert { padding: 14px 18px; border-radius: 12px; max-width: 640px; font-family: inherit; border: 1px solid; }
.bsp-alert--info { background: var(--ordering-accent-soft, rgba(180,86,39,0.1)); border-color: var(--ordering-accent, #b45627); color: var(--ordering-text, #1f1713); }
.bsp-alert--success { background: rgba(46,125,50,0.12); border-color: #2e7d32; color: #1b4d1f; }
.bsp-alert--warning { background: rgba(217,164,65,0.18); border-color: #d9a441; color: #5a4410; }
.bsp-alert--danger { background: rgba(193,39,45,0.1); border-color: #c1272d; color: #7a1418; }

/* Builder Accordion / Read More widgets (native <details>, no JS). */
.bsp-accordion__item { border: 1px solid rgba(49,36,28,0.14); border-radius: 10px; background: var(--ordering-surface, #fff); overflow: hidden; }
.bsp-accordion__summary { cursor: pointer; padding: 14px 16px; font-weight: 750; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.bsp-accordion__summary::-webkit-details-marker { display: none; }
.bsp-accordion__summary::after { content: '+'; color: var(--ordering-accent, #b45627); font-size: 18px; line-height: 1; }
.bsp-accordion__item[open] .bsp-accordion__summary::after { content: '\2212'; }
.bsp-accordion__body { padding: 0 16px 14px; color: var(--ordering-text-muted, #70645c); }
.bsp-readmore__toggle { cursor: pointer; color: var(--ordering-accent, #b45627); font-weight: 700; list-style: none; }
.bsp-readmore__toggle::-webkit-details-marker { display: none; }
.bsp-readmore[open] .bsp-readmore__toggle { color: var(--ordering-text-muted, #70645c); }

/* Builder Image Carousel (CSS scroll-snap — swipe/scroll, no JS). */
.bsp-carousel { max-width: 1100px; margin: 0 auto; }
.bsp-carousel__track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px; }
.bsp-carousel__slide { flex: 0 0 72%; height: 280px; object-fit: cover; border-radius: 16px; scroll-snap-align: center; background: rgba(120,100,80,0.12); }

/* Builder Animated Headline (CSS rotating words, no JS). */
.bsp-anim-headline { font-family: inherit; font-size: 34px; font-weight: 850; text-align: center; }
.bsp-anim-headline__rotate { display: inline-grid; vertical-align: bottom; color: var(--ordering-accent, #b45627); }
.bsp-anim-headline__rotate > span { grid-area: 1 / 1; opacity: 0; animation: bspWordRotate 6s infinite; }
.bsp-anim-headline__rotate > span:nth-child(2) { animation-delay: 2s; }
.bsp-anim-headline__rotate > span:nth-child(3) { animation-delay: 4s; }
@keyframes bspWordRotate { 0%,4%{opacity:0;transform:translateY(8px)} 8%,28%{opacity:1;transform:none} 33%,100%{opacity:0;transform:translateY(-8px)} }

/* Builder Countdown widget — numbers ticked by render-time hydration. */
.bsp-countdown { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; font-family: inherit; }
.bsp-countdown__unit { background: var(--ordering-surface-soft, #f6f4ef); border: 1px solid rgba(49,36,28,0.1); border-radius: 12px; padding: 14px 18px; text-align: center; min-width: 68px; }
.bsp-countdown__num { display: block; font-size: 32px; font-weight: 850; line-height: 1; color: var(--ordering-accent, #b45627); }
.bsp-countdown__lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ordering-text-muted, #70645c); }

/* Builder Tabs widget — labels switched by render-time hydration. */
.bsp-tabs { max-width: 680px; margin: 0 auto; font-family: inherit; }
.bsp-tabs__labels { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid rgba(49,36,28,0.14); }
.bsp-tabs__label { background: transparent; border: 0; padding: 10px 16px; cursor: pointer; font-weight: 700; font-family: inherit; border-radius: 8px 8px 0 0; color: var(--ordering-text-muted, #70645c); }
.bsp-tabs__label.is-active { background: var(--ordering-accent-soft, rgba(180,86,39,0.1)); color: var(--ordering-accent, #b45627); }
.bsp-tabs__panel { display: none; padding: 16px 4px; }
.bsp-tabs__panel.is-active { display: block; }

/* Builder Flip Box widget — CSS-only hover flip (works in canvas + public). */
.bsp-flip-box { perspective: 1000px; }
.bsp-flip-box__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.bsp-flip-box:hover .bsp-flip-box__inner { transform: rotateY(180deg); }
.bsp-flip-box__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  font-family: inherit;
}
.bsp-flip-box__back { transform: rotateY(180deg); }

.bsp-webstore-header__language-toggle {
  gap: 8px;
  background: transparent;
  cursor: pointer;
}

.bsp-webstore-header__flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.bsp-webstore-header__language-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.bsp-webstore-header__language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 160px;
  gap: 4px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 14px;
  background: var(--ordering-surface, #fff);
  box-shadow: 0 16px 36px rgba(31, 23, 19, 0.14);
  list-style: none;
}

.bsp-webstore-header__language-option {
  width: 100%;
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.bsp-webstore-header__language-option:hover,
.bsp-webstore-header__language-option.is-active {
  background: var(--ordering-surface-soft, #f8f6f2);
}

.bsp-webstore-main {
  width: min(100vw - 24px, var(--bsp-webstore-max));
  margin: 0 auto;
  padding: 14px 0 24px;
}

.bsp-webstore-order {
  scroll-margin-top: 78px;
}

.bsp-webstore-order:focus {
  outline: 3px solid rgba(237, 166, 50, 0.34);
  outline-offset: 4px;
}

.bsp-webstore-footer {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.5fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px var(--bsp-webstore-page-gutter) 28px;
  border-top: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  color: var(--ordering-text-muted, #70645c);
}

.bsp-webstore-footer__brand {
  display: grid;
  gap: 4px;
}

.bsp-webstore-footer__brand strong {
  color: var(--ordering-text, #1f1713);
  font-family: var(--ordering-font-display, system-ui, sans-serif);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
}

.bsp-webstore-footer__brand span,
.bsp-webstore-footer__brand small,
.bsp-webstore-footer__details dd {
  font-size: 12px;
  font-weight: 700;
}

.bsp-webstore-footer__brand small {
  color: var(--ordering-text-muted, #70645c);
}

.bsp-webstore-footer__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.bsp-webstore-footer__details div {
  display: grid;
  gap: 3px;
}

.bsp-webstore-footer__details dt {
  color: var(--ordering-text, #1f1713);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bsp-webstore-footer__details dd {
  margin: 0;
}

.bsp-webstore-footer__links {
  gap: 6px;
  justify-content: flex-end;
}

.bsp-webstore-footer__social {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.bsp-webstore-footer__social a {
  color: var(--ordering-text, #1f1713);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.bsp-webstore-footer__social a:hover {
  color: var(--ordering-accent, #b45627);
}

/* ── Full management: header layout presets ─────────────────────────── */
/* Default `classic` = the existing left-logo + right-menu grid (unchanged). */

/* `centered` — logo over a centered menu row. */
.bsp-webstore-header--layout-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 6px;
  text-align: center;
}
.bsp-webstore-header--layout-centered .bsp-webstore-header__nav {
  justify-content: center;
}
.bsp-webstore-header--layout-centered .bsp-webstore-header__language {
  position: absolute;
  top: 10px;
  right: var(--bsp-webstore-header-gutter);
}

/* `split` — menu on the left, logo centered, language/CTA on the right. */
.bsp-webstore-header--layout-split {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
.bsp-webstore-header--layout-split .bsp-webstore-header__nav {
  order: 1;
  justify-content: flex-start;
}
.bsp-webstore-header--layout-split .bsp-webstore-header__brand {
  order: 2;
  justify-self: center;
}
.bsp-webstore-header--layout-split .bsp-webstore-header__language {
  order: 3;
}
.bsp-webstore-header--layout-split .bsp-webstore-header__menu-toggle {
  order: 4;
}

/* `minimal` — logo + language only; the inline menu hides on desktop and the
   hamburger toggle always shows (menu lives behind the drawer). */
.bsp-webstore-header--layout-minimal .bsp-webstore-header__nav {
  display: none;
}
.bsp-webstore-header--layout-minimal .bsp-webstore-header__menu-toggle {
  display: inline-flex;
}

/* ── Full management: header dropdown menus ─────────────────────────── */
.bsp-webstore-header__nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.bsp-webstore-header__link--parent {
  gap: 4px;
  background: transparent;
  cursor: pointer;
}

.bsp-webstore-header__caret {
  width: 0;
  height: 0;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.7;
}

.bsp-webstore-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  display: none;
  min-width: 180px;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 40px rgba(31, 23, 19, 0.16);
}

.bsp-webstore-header__nav-item--has-children:hover .bsp-webstore-header__submenu,
.bsp-webstore-header__nav-item--has-children:focus-within .bsp-webstore-header__submenu,
.bsp-webstore-header__nav-item.is-open .bsp-webstore-header__submenu {
  display: flex;
}

.bsp-webstore-header__sublink {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ordering-text, #1f1713);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bsp-webstore-header__sublink:hover,
.bsp-webstore-header__sublink:focus-visible {
  background: var(--ordering-accent-soft, rgba(180, 86, 39, 0.1));
  color: var(--ordering-accent, #b45627);
}

/* ── Full management: multi-column footer ───────────────────────────── */
.bsp-webstore-footer__columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 6px;
}

.bsp-webstore-footer__column {
  display: grid;
  align-items: start;
  justify-items: start;
  gap: 6px;
}

.bsp-webstore-footer__column-title {
  margin: 0;
  color: var(--ordering-text, #1f1713);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bsp-webstore-footer__column a {
  color: var(--ordering-text-muted, #70645c);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bsp-webstore-footer__column a:hover {
  color: var(--ordering-accent, #b45627);
}

.bsp-webstore-main--cms {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.bsp-webstore-main--order {
  padding-top: 8px;
}

.bsp-web-cms-page__header,
.bsp-web-cms-section {
  width: 100%;
  margin: 0;
  padding-inline: var(--bsp-webstore-page-gutter);
}

.bsp-web-cms-page__header {
  display: grid;
  gap: 10px;
  padding-block: clamp(10px, 2vw, 24px);
}

.bsp-web-cms-page__header h1,
.bsp-web-cms-section h2 {
  margin: 0;
  color: var(--ordering-text, #1f1713);
  letter-spacing: 0;
}

.bsp-web-cms-page__header p,
.bsp-web-cms-section p {
  max-width: 68ch;
  margin: 0;
  color: var(--ordering-muted, #6d625b);
  line-height: 1.65;
}

.bsp-web-cms-section__body {
  display: grid;
  gap: 10px;
  max-width: 68ch;
}

.bsp-web-cms-section__body ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ordering-muted, #6d625b);
  line-height: 1.65;
}

.bsp-web-cms-section {
  --bsp-web-cms-card-bg: var(--ordering-surface, #fff);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 32px) var(--bsp-webstore-page-gutter);
  border-top: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  background: var(--bsp-web-cms-section-bg, transparent);
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
}

.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] {
  padding: clamp(18px, 3vw, 32px) var(--bsp-webstore-page-gutter);
  border-radius: 8px;
}

/* ── Typography controls (Puck enrichment slice 1, 2026-06-23) ──────────────────
   Each control is a bounded enum emitted as a BEM modifier by BOTH renderers
   (cms-page-ssr sectionAttrs + ButterspudWebRouteSurface buildCmsSectionPresentationProps).
   THIS FILE is the single source for the real sizes/weights/leading — the renderers only
   ever emit the class name. No effect unless a class is present (so existing pages render
   byte-identically and the SSR snapshot stays green). */
.bsp-web-cms-section--type-sm h2 { font-size: 1.4rem; }
.bsp-web-cms-section--type-md h2 { font-size: 1.75rem; }
.bsp-web-cms-section--type-lg h2 { font-size: 2.2rem; }
.bsp-web-cms-section--type-xl h2 { font-size: 2.75rem; }
.bsp-web-cms-section--type-sm p,
.bsp-web-cms-section--type-sm .bsp-web-cms-section__subtitle { font-size: 0.92rem; }
.bsp-web-cms-section--type-lg p,
.bsp-web-cms-section--type-lg .bsp-web-cms-section__subtitle { font-size: 1.1rem; }
.bsp-web-cms-section--type-xl p,
.bsp-web-cms-section--type-xl .bsp-web-cms-section__subtitle { font-size: 1.22rem; }

/* spread the weights so each step is visibly distinct (a section heading defaults to ~700,
   so "Bold" needs to clearly exceed that — Randy 2026-06-24). */
.bsp-web-cms-section--weight-regular h2 { font-weight: 400; }
.bsp-web-cms-section--weight-medium h2 { font-weight: 550; }
.bsp-web-cms-section--weight-semibold h2 { font-weight: 700; }
.bsp-web-cms-section--weight-bold h2 { font-weight: 900; }

.bsp-web-cms-section--text-left { text-align: left; }
.bsp-web-cms-section--text-center { text-align: center; }
.bsp-web-cms-section--text-right { text-align: right; }
/* paragraphs have max-width: 68ch — center the block too so text-align:center reads right */
.bsp-web-cms-section--text-center p,
.bsp-web-cms-section--text-center .bsp-web-cms-section__body { margin-inline: auto; }

.bsp-web-cms-section--leading-tight p,
.bsp-web-cms-section--leading-tight .bsp-web-cms-section__body { line-height: 1.3; }
.bsp-web-cms-section--leading-normal p,
.bsp-web-cms-section--leading-normal .bsp-web-cms-section__body { line-height: 1.55; }
.bsp-web-cms-section--leading-relaxed p,
.bsp-web-cms-section--leading-relaxed .bsp-web-cms-section__body { line-height: 1.85; }

/* ── Style Control Registry values (Puck enrichment, 2026-06-24) ────────────────
   Single source for every registry control's VALUE (src/web-cms/style-control-registry.js
   defines the keys/enums; the renderers emit only the class name). Bounded semantic scale;
   no effect unless a class is present, so existing pages render byte-identically. */
/* Spacing */
.bsp-web-cms-section--pad-y-none { padding-block: 0; }
.bsp-web-cms-section--pad-y-sm { padding-block: 0.75rem; }
.bsp-web-cms-section--pad-y-md { padding-block: 1.5rem; }
.bsp-web-cms-section--pad-y-lg { padding-block: 2.75rem; }
.bsp-web-cms-section--pad-y-xl { padding-block: 4rem; }
.bsp-web-cms-section--pad-x-none { padding-inline: 0; }
.bsp-web-cms-section--pad-x-sm { padding-inline: 0.75rem; }
.bsp-web-cms-section--pad-x-md { padding-inline: 1.5rem; }
.bsp-web-cms-section--pad-x-lg { padding-inline: 3rem; }
.bsp-web-cms-section--gap-none { gap: 0; }
.bsp-web-cms-section--gap-sm { gap: 0.5rem; }
.bsp-web-cms-section--gap-md { gap: 1rem; }
.bsp-web-cms-section--gap-lg { gap: 1.75rem; }
.bsp-web-cms-section--mt-none { margin-block-start: 0; }
.bsp-web-cms-section--mt-sm { margin-block-start: 0.75rem; }
.bsp-web-cms-section--mt-md { margin-block-start: 1.5rem; }
.bsp-web-cms-section--mt-lg { margin-block-start: 3rem; }
.bsp-web-cms-section--mb-none { margin-block-end: 0; }
.bsp-web-cms-section--mb-sm { margin-block-end: 0.75rem; }
.bsp-web-cms-section--mb-md { margin-block-end: 1.5rem; }
.bsp-web-cms-section--mb-lg { margin-block-end: 3rem; }
/* Layout */
.bsp-web-cms-section--justify-start { justify-items: start; }
.bsp-web-cms-section--justify-center { justify-items: center; text-align: center; }
.bsp-web-cms-section--justify-end { justify-items: end; }
.bsp-web-cms-section--justify-between .bsp-web-cms-section__items { justify-content: space-between; }
.bsp-web-cms-section--justify-between > .bsp-web-cms-section__blocks { justify-content: space-between; }
.bsp-web-cms-section--align-items-start { align-items: start; }
.bsp-web-cms-section--align-items-center { align-items: center; }
.bsp-web-cms-section--align-items-end { align-items: end; }
.bsp-web-cms-section--align-items-stretch { align-items: stretch; }
.bsp-web-cms-section--cols-one .bsp-web-cms-section__items { grid-template-columns: 1fr; }
.bsp-web-cms-section--cols-two .bsp-web-cms-section__items { grid-template-columns: 1fr; }
.bsp-web-cms-section--cols-three .bsp-web-cms-section__items { grid-template-columns: 1fr; }
.bsp-web-cms-section--cols-four .bsp-web-cms-section__items { grid-template-columns: 1fr; }
/* Decoration */
.bsp-web-cms-section--radius-none { border-radius: 0; }
.bsp-web-cms-section--radius-sm { border-radius: 6px; }
.bsp-web-cms-section--radius-md { border-radius: 12px; }
.bsp-web-cms-section--radius-lg { border-radius: 20px; }
.bsp-web-cms-section--radius-pill { border-radius: 999px; }
.bsp-web-cms-section--shadow-none { box-shadow: none; }
.bsp-web-cms-section--shadow-sm { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); }
.bsp-web-cms-section--shadow-md { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); }
.bsp-web-cms-section--shadow-lg { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }
.bsp-web-cms-section--border-none { border: 0; }
.bsp-web-cms-section--border-thin { border: 1px solid var(--bsp-web-cms-section-border-color, var(--ordering-line, rgba(49, 36, 28, 0.18))); }
.bsp-web-cms-section--border-medium { border: 2px solid var(--bsp-web-cms-section-border-color, var(--ordering-line, rgba(49, 36, 28, 0.18))); }
.bsp-web-cms-section--border-thick { border: 4px solid var(--bsp-web-cms-section-border-color, var(--ordering-line, rgba(49, 36, 28, 0.18))); }

/* ── Layer-1 grammar expansion (GrapeJS-parity, bounded — Randy 2026-06-24) ──
   Single source for the new registry controls. Each is a BEM modifier; no effect unless set. */
/* Per-side spacing (longhands) */
.bsp-web-cms-section--pt-none { padding-block-start: 0; } .bsp-web-cms-section--pt-sm { padding-block-start: 0.75rem; } .bsp-web-cms-section--pt-md { padding-block-start: 1.5rem; } .bsp-web-cms-section--pt-lg { padding-block-start: 2.75rem; } .bsp-web-cms-section--pt-xl { padding-block-start: 4rem; }
.bsp-web-cms-section--pb-none { padding-block-end: 0; } .bsp-web-cms-section--pb-sm { padding-block-end: 0.75rem; } .bsp-web-cms-section--pb-md { padding-block-end: 1.5rem; } .bsp-web-cms-section--pb-lg { padding-block-end: 2.75rem; } .bsp-web-cms-section--pb-xl { padding-block-end: 4rem; }
.bsp-web-cms-section--pl-none { padding-inline-start: 0; } .bsp-web-cms-section--pl-sm { padding-inline-start: 0.75rem; } .bsp-web-cms-section--pl-md { padding-inline-start: 1.5rem; } .bsp-web-cms-section--pl-lg { padding-inline-start: 3rem; }
.bsp-web-cms-section--pr-none { padding-inline-end: 0; } .bsp-web-cms-section--pr-sm { padding-inline-end: 0.75rem; } .bsp-web-cms-section--pr-md { padding-inline-end: 1.5rem; } .bsp-web-cms-section--pr-lg { padding-inline-end: 3rem; }
.bsp-web-cms-section--ml-none { margin-inline-start: 0; } .bsp-web-cms-section--ml-sm { margin-inline-start: 0.75rem; } .bsp-web-cms-section--ml-md { margin-inline-start: 1.5rem; } .bsp-web-cms-section--ml-lg { margin-inline-start: 3rem; } .bsp-web-cms-section--ml-auto { margin-inline-start: auto; }
.bsp-web-cms-section--mr-none { margin-inline-end: 0; } .bsp-web-cms-section--mr-sm { margin-inline-end: 0.75rem; } .bsp-web-cms-section--mr-md { margin-inline-end: 1.5rem; } .bsp-web-cms-section--mr-lg { margin-inline-end: 3rem; } .bsp-web-cms-section--mr-auto { margin-inline-end: auto; }
/* Layout flow (the items track) + item sizing */
.bsp-web-cms-section--flow-stack .bsp-web-cms-section__items { display: grid; grid-template-columns: 1fr; }
.bsp-web-cms-section--flow-grid .bsp-web-cms-section__items { display: grid; }
.bsp-web-cms-section--flow-row .bsp-web-cms-section__items { display: grid; grid-template-columns: 1fr; gap: 16px; }
.bsp-web-cms-section--flow-row_wrap .bsp-web-cms-section__items { display: grid; grid-template-columns: 1fr; gap: 16px; }
.bsp-web-cms-section--grow-equal .bsp-web-cms-section__item { flex: 1 1 0; }
.bsp-web-cms-section--grow-content .bsp-web-cms-section__item { flex: 0 0 auto; }
.bsp-web-cms-section--grow-fill_first .bsp-web-cms-section__item:first-child { flex: 1 1 0; }
/* Container nesting blocks use the same bounded layout controls as item grids, but
   their children are sections, not .bsp-web-cms-section__item cards. SSR/React render
   those children through the same __blocks wrapper that Puck uses for its droppable
   slot surface. */
.bsp-web-cms-section--container,
.bsp-web-cms-section--row,
.bsp-web-cms-section--column,
.bsp-web-cms-section--grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  align-items: stretch;
}

.bsp-web-cms-section--container > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid > .bsp-web-cms-section__blocks {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  gap: inherit;
  align-items: inherit;
  justify-items: inherit;
}

.bsp-web-cms-section--container.bsp-web-cms-section--flow-stack,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-stack,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-stack,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-stack,
.bsp-web-cms-section--container.bsp-web-cms-section--flow-stack > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-stack > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-stack > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-stack > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--container.bsp-web-cms-section--flow-grid,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-grid,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-grid,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-grid,
.bsp-web-cms-section--container.bsp-web-cms-section--flow-grid > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-grid > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-grid > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-grid > .bsp-web-cms-section__blocks {
  display: grid;
}

.bsp-web-cms-section--container.bsp-web-cms-section--flow-row,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-row,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-row,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-row,
.bsp-web-cms-section--container.bsp-web-cms-section--flow-row_wrap,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-row_wrap,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-row_wrap,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-row_wrap,
.bsp-web-cms-section--container.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--container.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.bsp-web-cms-section--container.bsp-web-cms-section--cols-one,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-one,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-one,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-one,
.bsp-web-cms-section--container.bsp-web-cms-section--cols-one > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-one > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-one > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-one > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--container.bsp-web-cms-section--cols-two,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-two,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-two,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-two,
.bsp-web-cms-section--container.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--container.bsp-web-cms-section--cols-three,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-three,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-three,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-three,
.bsp-web-cms-section--container.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--container.bsp-web-cms-section--cols-four,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-four,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-four,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-four,
.bsp-web-cms-section--container.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--row.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--column.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks,
.bsp-web-cms-section--grid.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks {
  grid-template-columns: minmax(0, 1fr);
}

.bsp-web-cms-section--container.bsp-web-cms-section--grow-equal > .bsp-web-cms-section,
.bsp-web-cms-section--row.bsp-web-cms-section--grow-equal > .bsp-web-cms-section,
.bsp-web-cms-section--column.bsp-web-cms-section--grow-equal > .bsp-web-cms-section,
.bsp-web-cms-section--grid.bsp-web-cms-section--grow-equal > .bsp-web-cms-section,
.bsp-web-cms-section--container.bsp-web-cms-section--grow-equal > .bsp-web-cms-section__blocks > .bsp-web-cms-section,
.bsp-web-cms-section--row.bsp-web-cms-section--grow-equal > .bsp-web-cms-section__blocks > .bsp-web-cms-section,
.bsp-web-cms-section--column.bsp-web-cms-section--grow-equal > .bsp-web-cms-section__blocks > .bsp-web-cms-section,
.bsp-web-cms-section--grid.bsp-web-cms-section--grow-equal > .bsp-web-cms-section__blocks > .bsp-web-cms-section {
  flex: 1 1 0;
}
/* Sizing */
.bsp-web-cms-section--maxw-prose > * { max-width: 60ch; margin-inline: auto; width: 100%; }
.bsp-web-cms-section--maxw-sm > * { max-width: 720px; margin-inline: auto; width: 100%; }
.bsp-web-cms-section--maxw-md > * { max-width: 960px; margin-inline: auto; width: 100%; }
.bsp-web-cms-section--maxw-lg > * { max-width: 1200px; margin-inline: auto; width: 100%; }
.bsp-web-cms-section--minh-sm { min-height: 20vh; } .bsp-web-cms-section--minh-md { min-height: 40vh; } .bsp-web-cms-section--minh-lg { min-height: 60vh; } .bsp-web-cms-section--minh-screen { min-height: 100vh; }
.bsp-web-cms-section--ratio-square .bsp-web-cms-section__media { aspect-ratio: 1 / 1; }
.bsp-web-cms-section--ratio-video .bsp-web-cms-section__media { aspect-ratio: 16 / 9; }
.bsp-web-cms-section--ratio-portrait .bsp-web-cms-section__media { aspect-ratio: 3 / 4; }
.bsp-web-cms-section--ratio-wide .bsp-web-cms-section__media { aspect-ratio: 21 / 9; }
.bsp-web-cms-section--fit-cover .bsp-web-cms-section__media img { object-fit: cover; width: 100%; height: 100%; }
.bsp-web-cms-section--fit-contain .bsp-web-cms-section__media img { object-fit: contain; width: 100%; height: 100%; }
.bsp-web-cms-section--fit-fill .bsp-web-cms-section__media img { object-fit: fill; width: 100%; height: 100%; }
/* Typography-plus */
.bsp-web-cms-section--tracking-tight { letter-spacing: -0.02em; } .bsp-web-cms-section--tracking-normal { letter-spacing: 0; } .bsp-web-cms-section--tracking-wide { letter-spacing: 0.04em; } .bsp-web-cms-section--tracking-wider { letter-spacing: 0.08em; }
.bsp-web-cms-section--case-none { text-transform: none; } .bsp-web-cms-section--case-upper { text-transform: uppercase; } .bsp-web-cms-section--case-title { text-transform: capitalize; } .bsp-web-cms-section--case-lower { text-transform: lowercase; }
.bsp-web-cms-section--fstyle-normal { font-style: normal; } .bsp-web-cms-section--fstyle-italic { font-style: italic; }
.bsp-web-cms-section--font-system { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
.bsp-web-cms-section--font-sans { font-family: 'Helvetica Neue', Arial, sans-serif; }
.bsp-web-cms-section--font-serif { font-family: Georgia, 'Times New Roman', serif; }
.bsp-web-cms-section--font-slab { font-family: 'Roboto Slab', Rockwell, Georgia, serif; }
.bsp-web-cms-section--font-mono { font-family: 'Courier New', Courier, monospace; }
.bsp-web-cms-section--font-display { font-family: 'Trebuchet MS', 'Segoe UI', sans-serif; }
.bsp-web-cms-section--font-humanist { font-family: Verdana, Geneva, Tahoma, sans-serif; }
/* Decoration + effects */
.bsp-web-cms-section--border-style-solid { border-style: solid; } .bsp-web-cms-section--border-style-dashed { border-style: dashed; } .bsp-web-cms-section--border-style-dotted { border-style: dotted; }
.bsp-web-cms-section--border-sides-top { border-inline-width: 0; border-block-end-width: 0; } .bsp-web-cms-section--border-sides-bottom { border-inline-width: 0; border-block-start-width: 0; } .bsp-web-cms-section--border-sides-x { border-block-width: 0; } .bsp-web-cms-section--border-sides-y { border-inline-width: 0; }
.bsp-web-cms-section--radius-corners-top { border-bottom-left-radius: 0; border-bottom-right-radius: 0; } .bsp-web-cms-section--radius-corners-bottom { border-top-left-radius: 0; border-top-right-radius: 0; } .bsp-web-cms-section--radius-corners-left { border-top-right-radius: 0; border-bottom-right-radius: 0; } .bsp-web-cms-section--radius-corners-right { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.bsp-web-cms-section--opacity-strong { opacity: 0.85; } .bsp-web-cms-section--opacity-medium { opacity: 0.65; } .bsp-web-cms-section--opacity-soft { opacity: 0.45; } .bsp-web-cms-section--opacity-faint { opacity: 0.25; }
.bsp-web-cms-section--hover-lift { transition: transform 0.2s ease, box-shadow 0.2s ease; } .bsp-web-cms-section--hover-lift:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }
.bsp-web-cms-section--hover-glow { transition: box-shadow 0.2s ease; } .bsp-web-cms-section--hover-glow:hover { box-shadow: 0 0 0 3px var(--bsp-web-cms-section-accent, rgba(180, 86, 39, 0.4)); }
.bsp-web-cms-section--hover-underline a:hover { text-decoration: underline; }
.bsp-web-cms-section--divider-none { border-top: 0; } .bsp-web-cms-section--divider-line { border-top: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12)); } .bsp-web-cms-section--divider-soft { border-top: 1px solid rgba(0, 0, 0, 0.05); } .bsp-web-cms-section--divider-wave { border-top: 2px dashed var(--ordering-line, rgba(49, 36, 28, 0.12)); }

/* S3 structural blocks: standalone divider + zero-height anchor. */
.bsp-web-cms-section--divider {
  min-height: 0;
  padding-block: clamp(8px, 1.5vw, 18px);
}

.bsp-web-cms-divider {
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
}

.bsp-web-cms-divider--none {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.bsp-web-cms-divider--line {
  border-top: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
}

.bsp-web-cms-divider--soft {
  border-top: 1px solid rgba(49, 36, 28, 0.08);
}

.bsp-web-cms-divider--wave {
  border-top: 2px dashed var(--ordering-line, rgba(49, 36, 28, 0.12));
}

.bsp-web-cms-section--anchor {
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  scroll-margin-top: var(--bsp-webstore-header-offset, 64px);
}

/* A freeform custom BLOCK is a full self-contained design that manages its own
   spacing and backgrounds — so it must be edge-to-edge. The typed-section gutter
   padding, divider border-top, and grid gap are wrong here (they boxed the design
   in with 32px inset + a 1px line). (Randy 2026-06-15.) */
.bsp-web-cms-section--custom {
  display: block;
  padding: 0;
  gap: 0;
  border-top: 0;
}

.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] h2,
.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] p,
.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] ul,
.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] .bsp-web-cms-section__subtitle {
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
}

.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] a,
.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] .bsp-web-cms-section__eyebrow,
.bsp-web-cms-section[data-bsp-web-cms-section-style="custom"] .bsp-web-cms-section__rating strong {
  color: var(--bsp-web-cms-section-accent, var(--ordering-accent, #b45627));
}

/* Hero background image (convergence slice 2026-06-23): the image + overlay are
   carried as inline background longhands by the renderer (sectionAttrs /
   buildCmsSectionPresentationProps), so this rule only adds what a full-bleed hero
   needs — no divider line, generous height, and light default text the overlay
   keeps readable (an explicit --bsp-web-cms-section-text still wins). */
.bsp-web-cms-section--has-bg-image {
  position: relative;
  border-top: 0;
  padding-block: clamp(3rem, 8vw, 6rem);
  background-repeat: no-repeat;
  color: var(--bsp-web-cms-section-text, #ffffff);
}
.bsp-web-cms-section--has-bg-image h1,
.bsp-web-cms-section--has-bg-image h2,
.bsp-web-cms-section--has-bg-image .bsp-web-cms-section__subtitle,
.bsp-web-cms-section--has-bg-image .bsp-web-cms-section__eyebrow,
.bsp-web-cms-section--has-bg-image p {
  color: inherit;
}

.bsp-web-cms-section--width-narrow {
  width: min(720px, calc(100vw - 32px));
  margin-inline: auto;
  padding-inline: 0;
}

.bsp-web-cms-section--width-wide {
  width: 100%;
  max-width: none;
  padding-inline: var(--bsp-webstore-page-gutter);
}

.bsp-web-cms-section--width-full {
  width: 100%;
  max-width: none;
  padding-inline: var(--bsp-webstore-page-gutter);
}

.bsp-web-cms-section--width-fluid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--bsp-webstore-page-gutter);
}

.bsp-web-cms-section--width-fluid[data-bsp-web-cms-section-style="custom"] {
  border-radius: 0;
}

.bsp-web-cms-section--align-center {
  justify-items: center;
  text-align: center;
}

.bsp-web-cms-section--align-center .bsp-web-cms-section__body,
.bsp-web-cms-section--align-center p {
  margin-inline: auto;
}

.bsp-web-cms-section--tone-muted,
.bsp-web-cms-section--tone-accent {
  padding: clamp(18px, 3vw, 32px) clamp(16px, 3vw, 28px);
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
}

.bsp-web-cms-section--tone-muted {
  background: rgba(255, 255, 255, 0.54);
}

.bsp-web-cms-section--tone-accent {
  background: rgba(180, 86, 39, 0.08);
  border-color: rgba(180, 86, 39, 0.22);
}

.bsp-web-cms-section--tone-muted[data-bsp-web-cms-section-style="custom"],
.bsp-web-cms-section--tone-accent[data-bsp-web-cms-section-style="custom"] {
  background: var(--bsp-web-cms-section-bg, transparent);
}

.bsp-web-cms-section--items-two-column .bsp-web-cms-section__items {
  grid-template-columns: 1fr;
}

.bsp-web-cms-section--items-three-column .bsp-web-cms-section__items {
  grid-template-columns: 1fr;
}

.bsp-web-cms-section--items-compact-list .bsp-web-cms-section__items {
  grid-template-columns: minmax(0, 1fr);
}

.bsp-web-cms-section--items-compact-list .bsp-web-cms-section__item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.bsp-web-cms-section--media-left,
.bsp-web-cms-section--media-right {
  grid-template-columns: 1fr;
  align-items: center;
}

.bsp-web-cms-section--media-left > :not(.bsp-web-cms-section__media) {
  grid-column: auto;
}

.bsp-web-cms-section--media-left .bsp-web-cms-section__media {
  grid-column: auto;
  grid-row: auto;
}

.bsp-web-cms-section--media-right .bsp-web-cms-section__media {
  grid-column: auto;
  grid-row: auto;
}

.bsp-web-cms-section--media-top .bsp-web-cms-section__media {
  order: -1;
}

/* Responsive style-control tiers (Slice 2b, 2026-06-24).
   Base is mobile-first. The legacy base column intent progressively opens at md/lg,
   while explicit __md/__lg classes apply the exact tier value Spud or Puck wrote. */
@media (min-width: 768px) {
  .bsp-web-cms-section--cols-two .bsp-web-cms-section__items,
  .bsp-web-cms-section--cols-three .bsp-web-cms-section__items,
  .bsp-web-cms-section--cols-four .bsp-web-cms-section__items,
  .bsp-web-cms-section--items-two-column .bsp-web-cms-section__items,
  .bsp-web-cms-section--items-three-column .bsp-web-cms-section__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .bsp-web-cms-section--flow-row .bsp-web-cms-section__items { display: flex; flex-wrap: nowrap; }
  .bsp-web-cms-section--flow-row_wrap .bsp-web-cms-section__items { display: flex; flex-wrap: wrap; }

  .bsp-web-cms-section--container.bsp-web-cms-section--cols-two,
  .bsp-web-cms-section--row.bsp-web-cms-section--cols-two,
  .bsp-web-cms-section--column.bsp-web-cms-section--cols-two,
  .bsp-web-cms-section--grid.bsp-web-cms-section--cols-two,
  .bsp-web-cms-section--container.bsp-web-cms-section--cols-three,
  .bsp-web-cms-section--row.bsp-web-cms-section--cols-three,
  .bsp-web-cms-section--column.bsp-web-cms-section--cols-three,
  .bsp-web-cms-section--grid.bsp-web-cms-section--cols-three,
  .bsp-web-cms-section--container.bsp-web-cms-section--cols-four,
  .bsp-web-cms-section--row.bsp-web-cms-section--cols-four,
  .bsp-web-cms-section--column.bsp-web-cms-section--cols-four,
  .bsp-web-cms-section--grid.bsp-web-cms-section--cols-four,
  .bsp-web-cms-section--container.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--container.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--container.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--cols-four > .bsp-web-cms-section__blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks {
    display: flex;
  }

  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row,
  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row > .bsp-web-cms-section__blocks {
    flex-wrap: nowrap;
  }

  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row_wrap,
  .bsp-web-cms-section--container.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--flow-row_wrap > .bsp-web-cms-section__blocks {
    flex-wrap: wrap;
  }

  .bsp-web-cms-section--media-left,
  .bsp-web-cms-section--media-right {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.86fr);
  }
  .bsp-web-cms-section--media-left > :not(.bsp-web-cms-section__media) { grid-column: 2; }
  .bsp-web-cms-section--media-left .bsp-web-cms-section__media { grid-column: 1; grid-row: 1 / span 5; }
  .bsp-web-cms-section--media-right .bsp-web-cms-section__media { grid-column: 2; grid-row: 1 / span 5; }

  .bsp-web-cms-section--md--pad-y-none { padding-block: 0; }
  .bsp-web-cms-section--md--pad-y-sm { padding-block: 0.75rem; }
  .bsp-web-cms-section--md--pad-y-md { padding-block: 1.5rem; }
  .bsp-web-cms-section--md--pad-y-lg { padding-block: 2.75rem; }
  .bsp-web-cms-section--md--pad-y-xl { padding-block: 4rem; }
  .bsp-web-cms-section--md--pad-x-none { padding-inline: 0; }
  .bsp-web-cms-section--md--pad-x-sm { padding-inline: 0.75rem; }
  .bsp-web-cms-section--md--pad-x-md { padding-inline: 1.5rem; }
  .bsp-web-cms-section--md--pad-x-lg { padding-inline: 3rem; }
  .bsp-web-cms-section--md--gap-none { gap: 0; }
  .bsp-web-cms-section--md--gap-sm { gap: 0.5rem; }
  .bsp-web-cms-section--md--gap-md { gap: 1rem; }
  .bsp-web-cms-section--md--gap-lg { gap: 1.75rem; }
  .bsp-web-cms-section--md--mt-none { margin-block-start: 0; }
  .bsp-web-cms-section--md--mt-sm { margin-block-start: 0.75rem; }
  .bsp-web-cms-section--md--mt-md { margin-block-start: 1.5rem; }
  .bsp-web-cms-section--md--mt-lg { margin-block-start: 3rem; }
  .bsp-web-cms-section--md--mb-none { margin-block-end: 0; }
  .bsp-web-cms-section--md--mb-sm { margin-block-end: 0.75rem; }
  .bsp-web-cms-section--md--mb-md { margin-block-end: 1.5rem; }
  .bsp-web-cms-section--md--mb-lg { margin-block-end: 3rem; }
  .bsp-web-cms-section--md--pt-none { padding-block-start: 0; }
  .bsp-web-cms-section--md--pt-sm { padding-block-start: 0.75rem; }
  .bsp-web-cms-section--md--pt-md { padding-block-start: 1.5rem; }
  .bsp-web-cms-section--md--pt-lg { padding-block-start: 2.75rem; }
  .bsp-web-cms-section--md--pt-xl { padding-block-start: 4rem; }
  .bsp-web-cms-section--md--pb-none { padding-block-end: 0; }
  .bsp-web-cms-section--md--pb-sm { padding-block-end: 0.75rem; }
  .bsp-web-cms-section--md--pb-md { padding-block-end: 1.5rem; }
  .bsp-web-cms-section--md--pb-lg { padding-block-end: 2.75rem; }
  .bsp-web-cms-section--md--pb-xl { padding-block-end: 4rem; }
  .bsp-web-cms-section--md--pl-none { padding-inline-start: 0; }
  .bsp-web-cms-section--md--pl-sm { padding-inline-start: 0.75rem; }
  .bsp-web-cms-section--md--pl-md { padding-inline-start: 1.5rem; }
  .bsp-web-cms-section--md--pl-lg { padding-inline-start: 3rem; }
  .bsp-web-cms-section--md--pr-none { padding-inline-end: 0; }
  .bsp-web-cms-section--md--pr-sm { padding-inline-end: 0.75rem; }
  .bsp-web-cms-section--md--pr-md { padding-inline-end: 1.5rem; }
  .bsp-web-cms-section--md--pr-lg { padding-inline-end: 3rem; }
  .bsp-web-cms-section--md--ml-none { margin-inline-start: 0; }
  .bsp-web-cms-section--md--ml-sm { margin-inline-start: 0.75rem; }
  .bsp-web-cms-section--md--ml-md { margin-inline-start: 1.5rem; }
  .bsp-web-cms-section--md--ml-lg { margin-inline-start: 3rem; }
  .bsp-web-cms-section--md--ml-auto { margin-inline-start: auto; }
  .bsp-web-cms-section--md--mr-none { margin-inline-end: 0; }
  .bsp-web-cms-section--md--mr-sm { margin-inline-end: 0.75rem; }
  .bsp-web-cms-section--md--mr-md { margin-inline-end: 1.5rem; }
  .bsp-web-cms-section--md--mr-lg { margin-inline-end: 3rem; }
  .bsp-web-cms-section--md--mr-auto { margin-inline-end: auto; }
  .bsp-web-cms-section--md--justify-start { justify-items: start; text-align: initial; }
  .bsp-web-cms-section--md--justify-center { justify-items: center; text-align: center; }
  .bsp-web-cms-section--md--justify-end { justify-items: end; text-align: end; }
  .bsp-web-cms-section--md--justify-between .bsp-web-cms-section__items { justify-content: space-between; }
  .bsp-web-cms-section--md--justify-between > .bsp-web-cms-section__blocks { justify-content: space-between; }
  .bsp-web-cms-section--md--align-items-start { align-items: start; }
  .bsp-web-cms-section--md--align-items-center { align-items: center; }
  .bsp-web-cms-section--md--align-items-end { align-items: end; }
  .bsp-web-cms-section--md--align-items-stretch { align-items: stretch; }
  .bsp-web-cms-section--md--cols-one .bsp-web-cms-section__items { grid-template-columns: 1fr; }
  .bsp-web-cms-section--md--cols-two .bsp-web-cms-section__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bsp-web-cms-section--md--cols-three .bsp-web-cms-section__items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bsp-web-cms-section--md--cols-four .bsp-web-cms-section__items { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bsp-web-cms-section--md--flow-stack .bsp-web-cms-section__items { display: grid; grid-template-columns: 1fr; }
  .bsp-web-cms-section--md--flow-grid .bsp-web-cms-section__items { display: grid; }
  .bsp-web-cms-section--md--flow-row .bsp-web-cms-section__items { display: flex; flex-wrap: nowrap; }
  .bsp-web-cms-section--md--flow-row_wrap .bsp-web-cms-section__items { display: flex; flex-wrap: wrap; }
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-one,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-one,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-one,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-one,
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-one > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-one > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-one > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-one > .bsp-web-cms-section__blocks { grid-template-columns: 1fr; }
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-two,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-two,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-two,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-two,
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-two > .bsp-web-cms-section__blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-three,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-three,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-three,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-three,
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-three > .bsp-web-cms-section__blocks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-four,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-four,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-four,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-four,
  .bsp-web-cms-section--container.bsp-web-cms-section--md--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--md--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--md--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--md--cols-four > .bsp-web-cms-section__blocks { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bsp-web-cms-section--md--grow-equal .bsp-web-cms-section__item { flex: 1 1 0; }
  .bsp-web-cms-section--md--grow-content .bsp-web-cms-section__item { flex: 0 0 auto; }
  .bsp-web-cms-section--md--grow-fill_first .bsp-web-cms-section__item:first-child { flex: 1 1 0; }
  .bsp-web-cms-section--md--maxw-prose > * { max-width: 60ch; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--md--maxw-sm > * { max-width: 720px; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--md--maxw-md > * { max-width: 960px; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--md--maxw-lg > * { max-width: 1200px; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--md--maxw-none > * { max-width: none; margin-inline: 0; width: 100%; }
  .bsp-web-cms-section--md--minh-none { min-height: 0; }
  .bsp-web-cms-section--md--minh-sm { min-height: 20vh; }
  .bsp-web-cms-section--md--minh-md { min-height: 40vh; }
  .bsp-web-cms-section--md--minh-lg { min-height: 60vh; }
  .bsp-web-cms-section--md--minh-screen { min-height: 100vh; }
  .bsp-web-cms-section--md--ratio-auto .bsp-web-cms-section__media { aspect-ratio: auto; }
  .bsp-web-cms-section--md--ratio-square .bsp-web-cms-section__media { aspect-ratio: 1 / 1; }
  .bsp-web-cms-section--md--ratio-video .bsp-web-cms-section__media { aspect-ratio: 16 / 9; }
  .bsp-web-cms-section--md--ratio-portrait .bsp-web-cms-section__media { aspect-ratio: 3 / 4; }
  .bsp-web-cms-section--md--ratio-wide .bsp-web-cms-section__media { aspect-ratio: 21 / 9; }
  .bsp-web-cms-section--md--fit-cover .bsp-web-cms-section__media img { object-fit: cover; width: 100%; height: 100%; }
  .bsp-web-cms-section--md--fit-contain .bsp-web-cms-section__media img { object-fit: contain; width: 100%; height: 100%; }
  .bsp-web-cms-section--md--fit-fill .bsp-web-cms-section__media img { object-fit: fill; width: 100%; height: 100%; }
}

@media (min-width: 1024px) {
  .bsp-web-cms-section--cols-three .bsp-web-cms-section__items,
  .bsp-web-cms-section--items-three-column .bsp-web-cms-section__items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bsp-web-cms-section--cols-four .bsp-web-cms-section__items { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .bsp-web-cms-section--lg--pad-y-none { padding-block: 0; }
  .bsp-web-cms-section--lg--pad-y-sm { padding-block: 0.75rem; }
  .bsp-web-cms-section--lg--pad-y-md { padding-block: 1.5rem; }
  .bsp-web-cms-section--lg--pad-y-lg { padding-block: 2.75rem; }
  .bsp-web-cms-section--lg--pad-y-xl { padding-block: 4rem; }
  .bsp-web-cms-section--lg--pad-x-none { padding-inline: 0; }
  .bsp-web-cms-section--lg--pad-x-sm { padding-inline: 0.75rem; }
  .bsp-web-cms-section--lg--pad-x-md { padding-inline: 1.5rem; }
  .bsp-web-cms-section--lg--pad-x-lg { padding-inline: 3rem; }
  .bsp-web-cms-section--lg--gap-none { gap: 0; }
  .bsp-web-cms-section--lg--gap-sm { gap: 0.5rem; }
  .bsp-web-cms-section--lg--gap-md { gap: 1rem; }
  .bsp-web-cms-section--lg--gap-lg { gap: 1.75rem; }
  .bsp-web-cms-section--lg--mt-none { margin-block-start: 0; }
  .bsp-web-cms-section--lg--mt-sm { margin-block-start: 0.75rem; }
  .bsp-web-cms-section--lg--mt-md { margin-block-start: 1.5rem; }
  .bsp-web-cms-section--lg--mt-lg { margin-block-start: 3rem; }
  .bsp-web-cms-section--lg--mb-none { margin-block-end: 0; }
  .bsp-web-cms-section--lg--mb-sm { margin-block-end: 0.75rem; }
  .bsp-web-cms-section--lg--mb-md { margin-block-end: 1.5rem; }
  .bsp-web-cms-section--lg--mb-lg { margin-block-end: 3rem; }
  .bsp-web-cms-section--lg--pt-none { padding-block-start: 0; }
  .bsp-web-cms-section--lg--pt-sm { padding-block-start: 0.75rem; }
  .bsp-web-cms-section--lg--pt-md { padding-block-start: 1.5rem; }
  .bsp-web-cms-section--lg--pt-lg { padding-block-start: 2.75rem; }
  .bsp-web-cms-section--lg--pt-xl { padding-block-start: 4rem; }
  .bsp-web-cms-section--lg--pb-none { padding-block-end: 0; }
  .bsp-web-cms-section--lg--pb-sm { padding-block-end: 0.75rem; }
  .bsp-web-cms-section--lg--pb-md { padding-block-end: 1.5rem; }
  .bsp-web-cms-section--lg--pb-lg { padding-block-end: 2.75rem; }
  .bsp-web-cms-section--lg--pb-xl { padding-block-end: 4rem; }
  .bsp-web-cms-section--lg--pl-none { padding-inline-start: 0; }
  .bsp-web-cms-section--lg--pl-sm { padding-inline-start: 0.75rem; }
  .bsp-web-cms-section--lg--pl-md { padding-inline-start: 1.5rem; }
  .bsp-web-cms-section--lg--pl-lg { padding-inline-start: 3rem; }
  .bsp-web-cms-section--lg--pr-none { padding-inline-end: 0; }
  .bsp-web-cms-section--lg--pr-sm { padding-inline-end: 0.75rem; }
  .bsp-web-cms-section--lg--pr-md { padding-inline-end: 1.5rem; }
  .bsp-web-cms-section--lg--pr-lg { padding-inline-end: 3rem; }
  .bsp-web-cms-section--lg--ml-none { margin-inline-start: 0; }
  .bsp-web-cms-section--lg--ml-sm { margin-inline-start: 0.75rem; }
  .bsp-web-cms-section--lg--ml-md { margin-inline-start: 1.5rem; }
  .bsp-web-cms-section--lg--ml-lg { margin-inline-start: 3rem; }
  .bsp-web-cms-section--lg--ml-auto { margin-inline-start: auto; }
  .bsp-web-cms-section--lg--mr-none { margin-inline-end: 0; }
  .bsp-web-cms-section--lg--mr-sm { margin-inline-end: 0.75rem; }
  .bsp-web-cms-section--lg--mr-md { margin-inline-end: 1.5rem; }
  .bsp-web-cms-section--lg--mr-lg { margin-inline-end: 3rem; }
  .bsp-web-cms-section--lg--mr-auto { margin-inline-end: auto; }
  .bsp-web-cms-section--lg--justify-start { justify-items: start; text-align: initial; }
  .bsp-web-cms-section--lg--justify-center { justify-items: center; text-align: center; }
  .bsp-web-cms-section--lg--justify-end { justify-items: end; text-align: end; }
  .bsp-web-cms-section--lg--justify-between .bsp-web-cms-section__items { justify-content: space-between; }
  .bsp-web-cms-section--lg--justify-between > .bsp-web-cms-section__blocks { justify-content: space-between; }
  .bsp-web-cms-section--lg--align-items-start { align-items: start; }
  .bsp-web-cms-section--lg--align-items-center { align-items: center; }
  .bsp-web-cms-section--lg--align-items-end { align-items: end; }
  .bsp-web-cms-section--lg--align-items-stretch { align-items: stretch; }
  .bsp-web-cms-section--lg--cols-one .bsp-web-cms-section__items { grid-template-columns: 1fr; }
  .bsp-web-cms-section--lg--cols-two .bsp-web-cms-section__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bsp-web-cms-section--lg--cols-three .bsp-web-cms-section__items { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bsp-web-cms-section--lg--cols-four .bsp-web-cms-section__items { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bsp-web-cms-section--lg--flow-stack .bsp-web-cms-section__items { display: grid; grid-template-columns: 1fr; }
  .bsp-web-cms-section--lg--flow-grid .bsp-web-cms-section__items { display: grid; }
  .bsp-web-cms-section--lg--flow-row .bsp-web-cms-section__items { display: flex; flex-wrap: nowrap; }
  .bsp-web-cms-section--lg--flow-row_wrap .bsp-web-cms-section__items { display: flex; flex-wrap: wrap; }
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-one,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-one,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-one,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-one,
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-one > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-one > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-one > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-one > .bsp-web-cms-section__blocks { grid-template-columns: 1fr; }
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-two,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-two,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-two,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-two,
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-two > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-two > .bsp-web-cms-section__blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-three,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-three,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-three,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-three,
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-three > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-three > .bsp-web-cms-section__blocks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-four,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-four,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-four,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-four,
  .bsp-web-cms-section--container.bsp-web-cms-section--lg--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--row.bsp-web-cms-section--lg--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--column.bsp-web-cms-section--lg--cols-four > .bsp-web-cms-section__blocks,
  .bsp-web-cms-section--grid.bsp-web-cms-section--lg--cols-four > .bsp-web-cms-section__blocks { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bsp-web-cms-section--lg--grow-equal .bsp-web-cms-section__item { flex: 1 1 0; }
  .bsp-web-cms-section--lg--grow-content .bsp-web-cms-section__item { flex: 0 0 auto; }
  .bsp-web-cms-section--lg--grow-fill_first .bsp-web-cms-section__item:first-child { flex: 1 1 0; }
  .bsp-web-cms-section--lg--maxw-prose > * { max-width: 60ch; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--lg--maxw-sm > * { max-width: 720px; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--lg--maxw-md > * { max-width: 960px; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--lg--maxw-lg > * { max-width: 1200px; margin-inline: auto; width: 100%; }
  .bsp-web-cms-section--lg--maxw-none > * { max-width: none; margin-inline: 0; width: 100%; }
  .bsp-web-cms-section--lg--minh-none { min-height: 0; }
  .bsp-web-cms-section--lg--minh-sm { min-height: 20vh; }
  .bsp-web-cms-section--lg--minh-md { min-height: 40vh; }
  .bsp-web-cms-section--lg--minh-lg { min-height: 60vh; }
  .bsp-web-cms-section--lg--minh-screen { min-height: 100vh; }
  .bsp-web-cms-section--lg--ratio-auto .bsp-web-cms-section__media { aspect-ratio: auto; }
  .bsp-web-cms-section--lg--ratio-square .bsp-web-cms-section__media { aspect-ratio: 1 / 1; }
  .bsp-web-cms-section--lg--ratio-video .bsp-web-cms-section__media { aspect-ratio: 16 / 9; }
  .bsp-web-cms-section--lg--ratio-portrait .bsp-web-cms-section__media { aspect-ratio: 3 / 4; }
  .bsp-web-cms-section--lg--ratio-wide .bsp-web-cms-section__media { aspect-ratio: 21 / 9; }
  .bsp-web-cms-section--lg--fit-cover .bsp-web-cms-section__media img { object-fit: cover; width: 100%; height: 100%; }
  .bsp-web-cms-section--lg--fit-contain .bsp-web-cms-section__media img { object-fit: contain; width: 100%; height: 100%; }
  .bsp-web-cms-section--lg--fit-fill .bsp-web-cms-section__media img { object-fit: fill; width: 100%; height: 100%; }
}

/* Containers now render one shared __blocks wrapper in Puck, SSR, and React. Keep
   all layout intent on that wrapper so published pages cannot squeeze the wrapper
   into only the first outer grid column. */
.bsp-web-cms-section--container:is(.bsp-web-cms-section--flow-stack, .bsp-web-cms-section--flow-grid, .bsp-web-cms-section--flow-row, .bsp-web-cms-section--flow-row_wrap, .bsp-web-cms-section--cols-one, .bsp-web-cms-section--cols-two, .bsp-web-cms-section--cols-three, .bsp-web-cms-section--cols-four, .bsp-web-cms-section--md--flow-stack, .bsp-web-cms-section--md--flow-grid, .bsp-web-cms-section--md--flow-row, .bsp-web-cms-section--md--flow-row_wrap, .bsp-web-cms-section--md--cols-one, .bsp-web-cms-section--md--cols-two, .bsp-web-cms-section--md--cols-three, .bsp-web-cms-section--md--cols-four, .bsp-web-cms-section--lg--flow-stack, .bsp-web-cms-section--lg--flow-grid, .bsp-web-cms-section--lg--flow-row, .bsp-web-cms-section--lg--flow-row_wrap, .bsp-web-cms-section--lg--cols-one, .bsp-web-cms-section--lg--cols-two, .bsp-web-cms-section--lg--cols-three, .bsp-web-cms-section--lg--cols-four),
.bsp-web-cms-section--row:is(.bsp-web-cms-section--flow-stack, .bsp-web-cms-section--flow-grid, .bsp-web-cms-section--flow-row, .bsp-web-cms-section--flow-row_wrap, .bsp-web-cms-section--cols-one, .bsp-web-cms-section--cols-two, .bsp-web-cms-section--cols-three, .bsp-web-cms-section--cols-four, .bsp-web-cms-section--md--flow-stack, .bsp-web-cms-section--md--flow-grid, .bsp-web-cms-section--md--flow-row, .bsp-web-cms-section--md--flow-row_wrap, .bsp-web-cms-section--md--cols-one, .bsp-web-cms-section--md--cols-two, .bsp-web-cms-section--md--cols-three, .bsp-web-cms-section--md--cols-four, .bsp-web-cms-section--lg--flow-stack, .bsp-web-cms-section--lg--flow-grid, .bsp-web-cms-section--lg--flow-row, .bsp-web-cms-section--lg--flow-row_wrap, .bsp-web-cms-section--lg--cols-one, .bsp-web-cms-section--lg--cols-two, .bsp-web-cms-section--lg--cols-three, .bsp-web-cms-section--lg--cols-four),
.bsp-web-cms-section--column:is(.bsp-web-cms-section--flow-stack, .bsp-web-cms-section--flow-grid, .bsp-web-cms-section--flow-row, .bsp-web-cms-section--flow-row_wrap, .bsp-web-cms-section--cols-one, .bsp-web-cms-section--cols-two, .bsp-web-cms-section--cols-three, .bsp-web-cms-section--cols-four, .bsp-web-cms-section--md--flow-stack, .bsp-web-cms-section--md--flow-grid, .bsp-web-cms-section--md--flow-row, .bsp-web-cms-section--md--flow-row_wrap, .bsp-web-cms-section--md--cols-one, .bsp-web-cms-section--md--cols-two, .bsp-web-cms-section--md--cols-three, .bsp-web-cms-section--md--cols-four, .bsp-web-cms-section--lg--flow-stack, .bsp-web-cms-section--lg--flow-grid, .bsp-web-cms-section--lg--flow-row, .bsp-web-cms-section--lg--flow-row_wrap, .bsp-web-cms-section--lg--cols-one, .bsp-web-cms-section--lg--cols-two, .bsp-web-cms-section--lg--cols-three, .bsp-web-cms-section--lg--cols-four),
.bsp-web-cms-section--grid:is(.bsp-web-cms-section--flow-stack, .bsp-web-cms-section--flow-grid, .bsp-web-cms-section--flow-row, .bsp-web-cms-section--flow-row_wrap, .bsp-web-cms-section--cols-one, .bsp-web-cms-section--cols-two, .bsp-web-cms-section--cols-three, .bsp-web-cms-section--cols-four, .bsp-web-cms-section--md--flow-stack, .bsp-web-cms-section--md--flow-grid, .bsp-web-cms-section--md--flow-row, .bsp-web-cms-section--md--flow-row_wrap, .bsp-web-cms-section--md--cols-one, .bsp-web-cms-section--md--cols-two, .bsp-web-cms-section--md--cols-three, .bsp-web-cms-section--md--cols-four, .bsp-web-cms-section--lg--flow-stack, .bsp-web-cms-section--lg--flow-grid, .bsp-web-cms-section--lg--flow-row, .bsp-web-cms-section--lg--flow-row_wrap, .bsp-web-cms-section--lg--cols-one, .bsp-web-cms-section--lg--cols-two, .bsp-web-cms-section--lg--cols-three, .bsp-web-cms-section--lg--cols-four) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.bsp-web-cms-section__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ordering-accent, #b45627);
}

.bsp-web-cms-section__subtitle {
  color: var(--ordering-text, #1f1713);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 650;
  line-height: 1.45;
}

.bsp-web-cms-layout-block {
  scroll-margin-top: 96px;
}

.bsp-web-cms-layout-block .bsp-web-cms-section__body,
.bsp-web-cms-layout-block .bsp-web-cms-section__items,
.bsp-web-cms-layout-block .bsp-web-cms-gallery,
.bsp-web-cms-layout-block .bsp-web-cms-stats {
  width: 100%;
  max-width: none;
}

.bsp-web-cms-layout-control--text-right {
  justify-items: end;
  text-align: right;
}

.bsp-web-cms-layout-control--text-right .bsp-web-cms-section__body,
.bsp-web-cms-layout-control--text-right p {
  margin-inline-start: auto;
}

.bsp-web-cms-layout-control--text-top .bsp-web-cms-section__media {
  order: 4;
}

.bsp-web-cms-layout-control--text-bottom .bsp-web-cms-section__media {
  order: -1;
}

.bsp-web-cms-layout-control--style-carded,
.bsp-web-cms-layout-control--style-bordered {
  padding: clamp(18px, 3vw, 34px) var(--bsp-webstore-page-gutter);
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
}

.bsp-web-cms-layout-control--style-carded {
  background: var(
    --bsp-web-cms-section-carded-bg,
    color-mix(in srgb, var(--ordering-surface, #fff) 92%, var(--ordering-accent, #b45627) 8%)
  );
  box-shadow: 0 18px 45px rgba(31, 23, 19, 0.08);
}

.bsp-web-cms-layout-control--style-full-bleed {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: clamp(360px, 54vw, 620px);
  align-content: center;
  overflow: hidden;
  padding: clamp(36px, 7vw, 92px) var(--bsp-webstore-page-gutter);
  border-top: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(31, 23, 19, 0.06), rgba(180, 86, 39, 0.08)),
    var(--ordering-surface-soft, #f8f6f2);
}

.bsp-web-cms-layout-control--style-full-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--bsp-web-cms-overlay-fill, transparent);
}

.bsp-web-cms-layout-control--overlay-soft {
  --bsp-web-cms-overlay-fill: rgba(31, 23, 19, 0.16);
}

.bsp-web-cms-layout-control--overlay-strong {
  --bsp-web-cms-overlay-fill: linear-gradient(90deg, rgba(31, 23, 19, 0.58), rgba(31, 23, 19, 0.12));
}

.bsp-web-cms-layout-control--overlay-none {
  --bsp-web-cms-overlay-fill: transparent;
}

.bsp-web-cms-layout-control--style-full-bleed.bsp-web-cms-layout-block--hero {
  color: var(--ordering-surface, #fff);
}

.bsp-web-cms-layout-control--style-full-bleed.bsp-web-cms-layout-block--hero h2,
.bsp-web-cms-layout-control--style-full-bleed.bsp-web-cms-layout-block--hero .bsp-web-cms-section__subtitle,
.bsp-web-cms-layout-control--style-full-bleed.bsp-web-cms-layout-block--hero .bsp-web-cms-section__eyebrow,
.bsp-web-cms-layout-control--style-full-bleed.bsp-web-cms-layout-block--hero p {
  color: inherit;
}

.bsp-web-cms-layout-control--style-full-bleed.bsp-web-cms-layout-block--hero .bsp-web-cms-section__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.bsp-web-cms-layout-control--style-full-bleed.bsp-web-cms-layout-block--hero .bsp-web-cms-section__media img {
  width: 100%;
  height: 100%;
  max-height: none;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.bsp-web-cms-layout-control--style-marquee .bsp-web-cms-gallery,
.bsp-web-cms-layout-control--style-marquee .bsp-web-cms-section__items {
  display: flex;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.bsp-web-cms-layout-control--style-marquee .bsp-web-cms-gallery__item,
.bsp-web-cms-layout-control--style-marquee .bsp-web-cms-section__item {
  min-width: min(280px, 78vw);
  scroll-snap-align: start;
}

.bsp-web-cms-layout-block--hero {
  gap: 16px;
  padding-block: clamp(24px, 4vw, 52px);
}

.bsp-web-cms-layout-block--hero h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 0.96;
}

.bsp-web-cms-layout-block--hero .bsp-web-cms-section__body {
  font-size: 1.05rem;
}

.bsp-web-cms-layout-block--pricing .bsp-web-cms-section__item,
.bsp-web-cms-layout-block--testimonials .bsp-web-cms-section__item {
  align-content: start;
  min-height: 180px;
}

.bsp-web-cms-layout-block--logos .bsp-web-cms-gallery__item img,
.bsp-web-cms-layout-block--logos .bsp-web-cms-section__item-media img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  padding: 18px;
  background: var(--ordering-surface, #fff);
}

.bsp-web-cms-layout-block--newsletter .bsp-web-cms-lead-form {
  max-width: 560px;
}

.bsp-web-cms-site-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: clamp(14px, 2.5vw, 24px);
}

.bsp-web-cms-layout-block--footer.bsp-web-cms-site-chrome {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 2fr);
  align-items: start;
}

.bsp-web-cms-site-chrome__brand {
  display: grid;
  gap: 4px;
  color: var(--ordering-text, #1f1713);
}

.bsp-web-cms-site-chrome__brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.bsp-web-cms-site-chrome__brand span,
.bsp-web-cms-site-chrome__legal {
  color: var(--ordering-muted, #6d625b);
  font-size: 0.92rem;
}

.bsp-web-cms-site-chrome__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bsp-web-cms-site-chrome__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 999px;
  background: color-mix(in srgb, var(--ordering-surface, #fff) 86%, transparent);
  color: var(--ordering-text, #1f1713);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.bsp-web-cms-site-chrome__links a:hover {
  border-color: color-mix(in srgb, var(--ordering-accent, #b45627) 45%, var(--ordering-line, rgba(49, 36, 28, 0.12)));
  color: var(--ordering-accent, #b45627);
}

.bsp-web-cms-site-chrome__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.bsp-web-cms-site-chrome__column {
  display: grid;
  gap: 8px;
}

.bsp-web-cms-site-chrome__column h3 {
  margin: 0;
  color: var(--ordering-text, #1f1713);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.bsp-web-cms-section__media {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
}

.bsp-web-cms-section__media img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
}

.bsp-web-cms-section__media figcaption {
  color: var(--ordering-muted, #6d625b);
  font-size: 0.9rem;
  line-height: 1.5;
}

.bsp-web-cms-section__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.bsp-web-cms-section__item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--bsp-web-cms-card-bg, var(--ordering-surface, #fff));
}

.bsp-web-cms-section__item-media {
  display: grid;
  gap: 6px;
  margin: 0 0 4px;
}

.bsp-web-cms-section__item-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
}

.bsp-web-cms-section__item-media figcaption {
  color: var(--ordering-muted, #6d625b);
  font-size: 0.82rem;
  line-height: 1.4;
}

.bsp-web-cms-section__item h3 {
  margin: 0;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  font-size: 1rem;
}

.bsp-web-cms-section__price {
  color: var(--ordering-accent, #b45627);
  font-size: 1.08rem;
  font-weight: 900;
}

.bsp-web-cms-section__rating {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--ordering-accent, #b45627) 38%, var(--ordering-line, rgba(49, 36, 28, 0.12)));
  border-radius: 999px;
  background: color-mix(in srgb, var(--ordering-accent, #b45627) 11%, var(--ordering-surface, #fff));
  color: var(--ordering-text, #1f1713);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.bsp-web-cms-section__rating span {
  color: var(--ordering-muted, #6d625b);
}

.bsp-web-cms-section__rating strong {
  color: var(--ordering-accent, #b45627);
}

.bsp-web-cms-section__meta {
  color: var(--ordering-text-muted, #70645c);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bsp-web-cms-section__item-cta {
  justify-self: start;
  color: var(--ordering-accent, #b45627);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.bsp-web-cms-section__item-cta:hover {
  text-decoration: underline;
}

.bsp-web-cms-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.bsp-web-cms-stat {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--bsp-web-cms-card-bg, var(--ordering-surface, #fff));
}

.bsp-web-cms-stat__value {
  color: var(--ordering-accent, #b45627);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
}

.bsp-web-cms-stat h3 {
  margin: 0;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  font-size: 1rem;
}

.bsp-web-cms-faq-list,
.bsp-web-cms-contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bsp-web-cms-faq-item,
.bsp-web-cms-contact-item,
.bsp-web-cms-gallery__item {
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--bsp-web-cms-card-bg, var(--ordering-surface, #fff));
}

.bsp-web-cms-faq-item {
  padding: 0;
}

.bsp-web-cms-faq-item summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  font-weight: 800;
}

.bsp-web-cms-faq-item p {
  padding: 0 16px 16px;
}

.bsp-web-cms-accordion-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bsp-web-cms-accordion-item {
  overflow: hidden;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--bsp-web-cms-card-bg, var(--ordering-surface, #fff));
}

.bsp-web-cms-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  font-weight: 800;
  list-style: none;
}

.bsp-web-cms-accordion-item summary::-webkit-details-marker {
  display: none;
}

.bsp-web-cms-accordion-item summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--ordering-accent, #b45627);
  font-size: 18px;
  line-height: 1;
}

.bsp-web-cms-accordion-item[open] summary::after {
  content: '\2212';
}

.bsp-web-cms-accordion-body {
  padding: 0 16px 16px;
  color: var(--ordering-text-muted, #70645c);
  line-height: 1.55;
}

.bsp-web-cms-section--icon {
  min-height: 0;
  align-items: center;
}

.bsp-web-cms-section--icon.bsp-web-cms-section--align-center {
  justify-items: center;
  text-align: center;
}

.bsp-web-cms-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  stroke: currentColor;
  vertical-align: middle;
}

.bsp-web-cms-contact-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bsp-web-cms-contact-item {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.bsp-web-cms-contact-item dt {
  color: var(--ordering-muted, #6d625b);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bsp-web-cms-contact-item dd {
  margin: 0;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  font-weight: 700;
  line-height: 1.45;
}

.bsp-web-cms-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.bsp-web-cms-gallery__item {
  display: grid;
  gap: 0;
  margin: 0;
  overflow: hidden;
}

.bsp-web-cms-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bsp-web-cms-gallery__item figcaption {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  color: var(--ordering-muted, #6d625b);
  font-size: 0.88rem;
  line-height: 1.45;
}

.bsp-web-cms-gallery__item figcaption strong {
  color: var(--ordering-text, #1f1713);
}

.bsp-web-cms-video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: #111;
  object-fit: cover;
}

.bsp-web-cms-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--bsp-web-cms-card-bg, var(--ordering-surface, #fff));
}

.bsp-web-cms-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  font-size: 0.94rem;
}

.bsp-web-cms-table th,
.bsp-web-cms-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  text-align: left;
  vertical-align: top;
}

.bsp-web-cms-table th {
  background: color-mix(in srgb, var(--ordering-accent, #b45627) 8%, var(--ordering-surface-soft, #f8f6f2));
  font-weight: 850;
}

.bsp-web-cms-table tr:last-child td {
  border-bottom: 0;
}

.bsp-web-cms-embed {
  --bsp-web-cms-embed-aspect: 16 / 9;
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.bsp-web-cms-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: var(--bsp-web-cms-embed-aspect);
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--bsp-web-cms-card-bg, var(--ordering-surface, #fff));
}

.bsp-web-cms-embed--wide {
  --bsp-web-cms-embed-aspect: 21 / 9;
}

.bsp-web-cms-embed--square {
  --bsp-web-cms-embed-aspect: 1 / 1;
}

.bsp-web-cms-embed--portrait {
  --bsp-web-cms-embed-aspect: 4 / 5;
}

.bsp-web-cms-embed figcaption {
  color: var(--ordering-muted, #6d625b);
  font-size: 0.9rem;
  line-height: 1.5;
}

.bsp-web-cms-section__actions {
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.bsp-web-cms-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ordering-text, #1f1713);
  border-radius: 999px;
  background: var(--ordering-text, #1f1713);
  color: var(--ordering-surface, #fff);
  font-weight: 800;
  text-decoration: none;
}

.bsp-web-cms-section__cta--secondary {
  border-color: var(--ordering-line-strong, rgba(49, 36, 28, 0.22));
  background: var(--ordering-surface, #fff);
  color: var(--ordering-text, #1f1713);
}

.bsp-web-cms-section__cta:is(:hover, :focus-visible) {
  transform: translateY(-1px);
}

.bsp-web-cms-lead-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--bsp-web-cms-card-bg, var(--ordering-surface, #fff));
}

.bsp-web-cms-lead-form label {
  display: grid;
  gap: 6px;
  color: var(--bsp-web-cms-section-text, var(--ordering-text, #1f1713));
  font-size: 0.82rem;
  font-weight: 800;
}

.bsp-web-cms-lead-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bsp-web-cms-lead-form input,
.bsp-web-cms-lead-form textarea {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
  border-radius: 8px;
  background: var(--ordering-surface-soft, #f8f6f2);
  color: var(--ordering-text, #1f1713);
}

.bsp-web-cms-lead-form textarea {
  min-height: 88px;
  resize: vertical;
}

.bsp-web-cms-lead-form button {
  align-self: end;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--ordering-text, #1f1713);
  color: var(--ordering-surface, #fff);
  font-weight: 850;
}

.bsp-web-cms-lead-form__success {
  color: var(--ordering-text-muted, #70645c);
  font-weight: 750;
}

@media (max-width: 1100px) {
  .bsp-web-page--webstore {
    --bsp-webstore-page-gutter: 16px;
    --bsp-webstore-header-offset: 68px;
    --bsp-web-product-sheet-topbar-space: 126px;
  }

  .bsp-webstore-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 10px var(--bsp-webstore-header-gutter);
  }

  .bsp-webstore-footer {
    grid-template-columns: 1fr;
  }

  .bsp-webstore-footer__links {
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .bsp-webstore-footer__social {
    justify-content: flex-start;
  }

  .bsp-webstore-header__menu-toggle {
    grid-row: 1;
    grid-column: 3;
    display: inline-flex;
    justify-self: end;
    margin-left: 0;
  }

  .bsp-webstore-header__nav {
    position: absolute;
    top: calc(100% + 6px);
    right: var(--bsp-webstore-header-gutter);
    z-index: 45;
    display: none;
    width: min(224px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    align-items: stretch;
    gap: 6px;
    padding: 8px;
    border: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(31, 23, 19, 0.14);
    overflow: visible;
    transform-origin: top right;
    backdrop-filter: blur(16px);
  }

  .bsp-webstore-header__nav::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 27px;
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
    border-left: 1px solid var(--ordering-line, rgba(49, 36, 28, 0.12));
    background: rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
  }

  .bsp-webstore-header__nav.is-open {
    display: flex;
    flex-direction: column;
    animation: bsp-webstore-header-menu-in 140ms ease-out;
  }

  .bsp-webstore-header__nav .bsp-webstore-header__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* On mobile every layout collapses to the same logo + toggle + drawer, and
     dropdowns render inline inside the drawer (no absolute-positioned flyout). */
  .bsp-webstore-header--layout-centered,
  .bsp-webstore-header--layout-split,
  .bsp-webstore-header--layout-minimal {
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-items: stretch;
    text-align: left;
  }
  .bsp-webstore-header--layout-centered .bsp-webstore-header__language,
  .bsp-webstore-header--layout-split .bsp-webstore-header__nav,
  .bsp-webstore-header--layout-split .bsp-webstore-header__brand,
  .bsp-webstore-header--layout-split .bsp-webstore-header__language {
    position: static;
    order: 0;
    justify-self: auto;
  }

  .bsp-webstore-header__nav-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .bsp-webstore-header__submenu {
    position: static;
    display: flex;
    min-width: 0;
    margin: 0 0 4px 12px;
    padding: 4px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .bsp-webstore-header__language {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .bsp-webstore-footer__details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .bsp-webstore-main:not(.bsp-webstore-main--cms) {
    width: min(100vw - 16px, var(--bsp-webstore-max));
  }

  .bsp-webstore-header {
    gap: 10px;
    border-radius: 0;
  }

  .bsp-webstore-header__mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .bsp-webstore-header__mark--logo {
    width: auto;
    min-width: 40px;
    max-width: 136px;
  }

  .bsp-webstore-header__logo-image {
    max-width: 136px;
    height: 40px;
  }

  .bsp-webstore-header__brand-copy strong {
    font-size: 18px;
  }

  .bsp-webstore-header__brand-copy small {
    font-size: 12px;
  }

  .bsp-webstore-header__link {
    min-height: 36px;
    padding: 9px 10px;
    font-size: 13px;
    text-align: center;
  }

  .bsp-webstore-main {
    padding-top: 10px;
  }

  .bsp-web-cms-table-wrap {
    margin-right: calc(var(--bsp-webstore-page-gutter, 16px) * -0.5);
    padding-bottom: 2px;
  }

  .bsp-web-cms-table {
    min-width: 520px;
    font-size: 0.86rem;
  }

  .bsp-web-cms-table th,
  .bsp-web-cms-table td {
    padding: 10px 12px;
  }

  .bsp-web-cms-video {
    border-radius: 7px;
  }

  .bsp-webstore-footer {
    gap: 14px;
    padding-bottom: 24px;
  }
}

@keyframes bsp-webstore-header-menu-in {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Public web-view booking module ─────────────────────────────────── */
.bsp-web-booking {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 44px) clamp(16px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bsp-web-booking__head h1 { margin: 0 0 6px; font-size: clamp(1.6rem, 4vw, 2.2rem); }
.bsp-web-booking__head p { margin: 0; color: #6b6258; }
.bsp-web-booking__error { color: #c1272d; font-weight: 600; margin: 0; }
.bsp-web-booking__field { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.bsp-web-booking__field span { font-size: 0.82rem; font-weight: 700; color: #4a443c; }
.bsp-web-booking__field input,
.bsp-web-booking__field textarea {
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: #201713;
}
.bsp-web-booking__field input:focus-visible,
.bsp-web-booking__field textarea:focus-visible {
  outline: none;
  border-color: var(--ordering-accent, #b45627);
  box-shadow: 0 0 0 3px rgba(180, 86, 39, 0.18);
}
.bsp-web-booking__row { display: flex; gap: 12px; flex-wrap: wrap; }
.bsp-web-booking__submit {
  align-self: flex-start;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--ordering-accent, #b45627);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: filter 150ms ease, transform 120ms ease;
}
.bsp-web-booking__submit:hover:not(:disabled) { filter: brightness(1.06); transform: translateY(-1px); }
.bsp-web-booking__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.bsp-web-booking__note { font-size: 0.8rem; color: #8a8178; margin: 0; }
.bsp-web-booking--done { text-align: center; align-items: center; color: var(--ordering-accent, #b45627); }
.bsp-web-booking--done h1 { color: #201713; }
.bsp-web-booking--done p { color: #4a443c; }
.bsp-web-booking__summary { font-weight: 700; }
.bsp-web-booking__again {
  margin-top: 6px; padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16); background: #fff; color: #201713; font-weight: 700; cursor: pointer;
}
.bsp-web-booking__slots { display: flex; flex-wrap: wrap; gap: 8px; }
.bsp-web-booking__slot {
  padding: 9px 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #201713;
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: border-color 130ms ease, background 130ms ease, color 130ms ease;
}
.bsp-web-booking__slot:hover { border-color: var(--ordering-accent, #b45627); }
.bsp-web-booking__slot.is-selected {
  background: var(--ordering-accent, #b45627);
  border-color: var(--ordering-accent, #b45627);
  color: #fff;
}
.bsp-web-booking__slot.is-taken {
  color: #b8b0a6;
  background: #f3efe9;
  border-color: rgba(0, 0, 0, 0.08);
  text-decoration: line-through;
  cursor: not-allowed;
}
.bsp-web-booking__slot.is-taken:hover { border-color: rgba(0, 0, 0, 0.08); }
.bsp-web-booking__step { display: flex; flex-direction: column; gap: 8px; }
.bsp-web-booking__step-label { font-size: 1.02rem; font-weight: 800; color: #201713; }
.bsp-web-booking__select {
  padding: 11px 12px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: #201713;
}
.bsp-web-booking__step .bsp-web-booking__field { gap: 5px; }
