/*
  FRS section presentation layer — forced correction pass.
  Surfaces: section--hero | section--content | section--alt | section--dark
  (section--cta kept as legacy alias → same visuals as --dark)
  Canvas: .builder-root wraps all dispatch output (builder + tenant pages using sections).
*/

.frs-section-canvas.builder-root {
  width: 100%;
  display: block;
  /* ---- Premium design system: type, space, radii, depth, motion (section canvas) ---- */
  --frs-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Type scale: h1 ≈36–52px, h2 ≈28–36px, h3 ≈20–24px, body 16–18px */
  --frs-type-hero: clamp(2.375rem, 5vw, 3.75rem);
  --frs-type-h1: clamp(2.25rem, 3.6vw, 3.5rem);
  --frs-type-h2: clamp(1.75rem, 2.8vw, 2.25rem);
  --frs-type-h3: clamp(1.25rem, 1.85vw, 1.5rem);
  --frs-type-body: clamp(1rem, 0.28vw + 0.96rem, 1.125rem);
  --frs-lh-hero: 1.06;
  --frs-lh-h1: 1.1;
  --frs-lh-h2: 1.14;
  --frs-lh-h3: 1.22;
  --frs-lh-body: 1.62;
  --frs-color-heading: #0f172a;
  --frs-color-body: #475569;
  --frs-color-body-soft: #64748b;
  --frs-surface-page: #f5f7fa;
  --frs-surface-content: #fafbfc;
  --frs-surface-alt: #f1f5f9;
  --frs-surface-card: #ffffff;
  /* Spacing: default section band = 80px × 24px horizontal */
  --frs-space-section-y: 80px;
  --frs-space-section-y-lg: 96px;
  --frs-space-section-y-tight: 48px;
  --frs-space-section-y-large: 112px;
  --frs-space-after-heading: 12px;
  --frs-space-after-heading-lg: 16px;
  --frs-stack-gap: 1rem;
  --frs-gap-sm: 8px;
  --frs-gap-md: 16px;
  --frs-gap-lg: 24px;
  --frs-gap-xl: 32px;
  --frs-prose-max: 62ch;
  --frs-radius-sm: 6px;
  --frs-radius-md: 10px;
  --frs-radius-lg: 16px;
  --frs-btn-radius: var(--frs-radius-md);
  --frs-btn-pad-y: 0.875rem;
  --frs-btn-pad-x: 1.625rem;
  --frs-btn-font-size: 1rem;
  --frs-btn-font-weight: 700;
  --frs-shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
  --frs-shadow-card: 0 4px 14px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
  --frs-shadow-float: 0 18px 40px rgba(15, 23, 42, 0.14);
  --frs-motion-fast: 0.16s ease;
  --frs-motion-standard: 0.2s ease;
  --frs-primary: var(--tenant-primary-color, #2563eb);
  --frs-primary-contrast: #ffffff;
  font-family: var(--frs-font-sans);
  font-size: var(--frs-type-body);
  line-height: var(--frs-lh-body);
  color: var(--frs-color-body);
  -webkit-font-smoothing: antialiased;
}

/* Inline links in body copy follow tenant primary (avoid pill CTAs / buttons). */
.frs-section-canvas.builder-root .section-prose a:not([class*="btn"]):not([class*="chip"]):not([class*="cta-"]):not([class*="booking-hero-"]),
.frs-section-canvas.builder-root .section--content .section-inner > p > a:not([class]) {
  color: var(--tenant-primary-color, #2563eb);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 38%, transparent);
  text-decoration-thickness: 1px;
}

.frs-section-canvas.builder-root .section--dark .section-prose a:not([class*="btn"]):not([class*="chip"]),
.frs-section-canvas.builder-root .section--hero:not(.ui-hero-split) .section-prose a:not([class*="btn"]):not([class*="chip"]) {
  color: color-mix(in srgb, var(--tenant-primary-color, #93c5fd) 45%, #f8fafc);
  text-decoration-color: color-mix(in srgb, var(--tenant-primary-color, #93c5fd) 55%, transparent);
}

/* ---- Inner rail — mandatory; all section body copy lives here ---- */
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.frs-section-canvas.builder-root .section .section-inner,
.frs-section-canvas.builder-root .section .container,
.frs-section-canvas.builder-root .section .content-wrapper,
.frs-section-canvas.builder-root .section .inner {
  background: transparent !important;
  background-color: transparent !important;
}

.frs-section-canvas.builder-root .section .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

/* Wider rail for dense media sections (galleries, mosaic heroes) */
.section-inner--wide {
  max-width: min(1420px, 92vw);
}

.section-inner--narrow-center {
  max-width: 720px;
  text-align: center;
}

/* Simple text (type=text): centered editorial column inside standard 1100px rail */
.section-inner--editorial {
  text-align: center;
}

.builder-root .section.section--content.section--editorial {
  padding: 72px 24px;
}

.section-inner--editorial > h2 {
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3.6vw, 2.45rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.builder-root .section.section--content.section--editorial .section-inner--editorial::before {
  content: "";
  display: block;
  width: min(64px, 14vw);
  height: 4px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tenant-primary-color, #2563eb), var(--tenant-accent-color, #7c3aed));
}

.section-inner--editorial .section-prose,
.section-inner--editorial > p {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.builder-root .section-edit-wrapper.wb-strip-b > .section.section--content.section--editorial {
  background: #e8edf4 !important;
}

/*
 * Forced wipe — builder preview canvas ONLY. Then variants below rebuild surfaces.
 * (.section is the slice element; matches <section class="section …">.)
 */
.builder-root .section {
  all: unset;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: var(--frs-space-section-y) 24px;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  font: inherit;
  color: inherit;
  background: transparent;
 /* max-width: none; — unset may clear; explicit for full-width slice */
  max-width: none;
}

/* ---- Four surfaces: hero | content | alt | dark (CTA uses --dark) ---- */

.section.section--hero {
  padding: clamp(100px, 11vw, 140px) clamp(1.25rem, 4vw, 1.75rem);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 42%, #334155 100%);
  color: #f8fafc;
}

/* Booking / marketing hero strip — publishable CTA band (not a dashboard card) */
.section.section--booking-hero:not(.section--booking-hero--dark):not(.section--booking-hero--kids),
.builder-root .section.section--booking-hero:not(.section--booking-hero--dark):not(.section--booking-hero--kids) {
  padding: clamp(100px, 10vw, 132px) 28px;
  background: linear-gradient(128deg, #070b14 0%, #0f172a 28%, #1e3a8a 52%, #4f46e5 100%) !important;
  color: #f8fafc;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section.section--booking-hero--dark,
.builder-root .section.section--booking-hero--dark {
  padding: clamp(100px, 10vw, 132px) 28px;
  background: linear-gradient(145deg, #020617 0%, #0b1220 45%, #111827 100%) !important;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.section.section--booking-hero--kids {
  padding: 48px 24px;
  background: linear-gradient(180deg, #fef9c3 0%, #fde047 100%);
  color: #1c1917;
}

/* Full-bleed image heroes: no outer padding; art fills the slice */
.section.section--hero.ui-hero,
.section.section--hero.ui-hero-split,
.section.section--hero.ui-hero-compact,
.section.section--hero.ui-hero-minimal {
  padding: 0;
  background: transparent;
  color: inherit;
}

/* Image-backed ui-hero: dark plate under the photo so empty/broken URLs never read as a white slab */
.section.ui-hero .ui-hero__bg {
  background-color: #0b1220;
}

.builder-root .section.ui-hero--fullbleed .ui-hero__overlay--left,
.section.ui-hero--fullbleed .ui-hero__overlay--left {
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(
      105deg,
      rgba(2, 6, 23, 0.97) 0%,
      rgba(15, 23, 42, 0.76) 40%,
      rgba(15, 23, 42, 0.1) 100%
    );
}

.builder-root .section.ui-hero .ui-hero__overlay--center,
.section.ui-hero .ui-hero__overlay--center {
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(
      to bottom,
      rgba(2, 6, 23, 0.88) 0%,
      rgba(15, 23, 42, 0.68) 42%,
      rgba(2, 6, 23, 0.94) 100%
    );
}

.builder-root .section.ui-hero .ui-hero__headline,
.section.ui-hero .ui-hero__headline {
  color: #ffffff !important;
  text-shadow: 0 4px 42px rgba(0, 0, 0, 0.62);
}

.builder-root .section.ui-hero .ui-hero__panel--dark .ui-hero__headline,
.section.ui-hero .ui-hero__panel--dark .ui-hero__headline,
.builder-root .section.ui-hero-compact .ui-hero__panel--dark .ui-hero-compact__headline,
.section.ui-hero-compact .ui-hero__panel--dark .ui-hero-compact__headline {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45) !important;
}

.builder-root .section.ui-hero .ui-hero__overline,
.section.ui-hero .ui-hero__overline {
  color: rgba(226, 232, 240, 0.82) !important;
}

.builder-root .section.ui-hero .ui-hero__panel--dark .ui-hero__overline,
.section.ui-hero .ui-hero__panel--dark .ui-hero__overline {
  color: rgba(255, 255, 255, 0.72) !important;
}

.builder-root .section.ui-hero .ui-hero__body,
.section.ui-hero .ui-hero__body {
  color: rgba(226, 232, 240, 0.93) !important;
}

.builder-root .section.ui-hero .ui-hero__panel--dark .ui-hero__body,
.section.ui-hero .ui-hero__panel--dark .ui-hero__body,
.builder-root .section.ui-hero-compact .ui-hero__panel--dark .ui-hero-compact__body,
.section.ui-hero-compact .ui-hero__panel--dark .ui-hero-compact__body {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: none !important;
}

/* Marketing hero banner (hero_large) */
.section.section--hero.hero-banner {
  background: linear-gradient(135deg, #fde68a, #facc15);
  color: #111827;
}

.section.section--content {
  background: var(--frs-surface-content, #fafbfc);
  color: var(--frs-color-heading, #0f172a);
}

.section.section--alt {
  background: var(--frs-surface-alt, #f1f5f9);
  color: var(--frs-color-heading, #0f172a);
}

.section.section--dark,
.section.section--cta {
  background: #0f172a;
  color: #f8fafc;
}

/* ---- Layout utilities (multi-column — not single-column stacks) ---- */
.section .section--grid,
.section-inner .section--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--frs-gap-lg, 24px);
}

.section .section--grid-2,
.section-inner .section--grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--frs-gap-lg, 24px);
}

@media (max-width: 900px) {
  .section .section--grid,
  .section-inner .section--grid,
  .section .section--grid-2,
  .section-inner .section--grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ---- Rhythm: alternate *content* slices only (hero / dark unchanged) ---- */
.section-edit-wrapper.wb-strip-a > section.section.section--content {
  background: linear-gradient(180deg, var(--frs-surface-content, #fafbfc) 0%, var(--frs-surface-card, #ffffff) 100%);
}

.section-edit-wrapper.wb-strip-b > section.section.section--content {
  background: linear-gradient(180deg, #f1f5f9 0%, #e8edf3 52%, #f1f5f9 100%);
}

/* ---- Block canvas surfaces (section toolbar: light | alt | dark | image) ---- */
.section-edit-wrapper.frs-block-surface {
  position: relative;
  border-radius: 0;
}
.frs-section-canvas .section-edit-wrapper.frs-block-surface + .section-edit-wrapper.frs-block-surface {
  margin-top: 32px;
}
.frs-block-surface-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.frs-block-surface-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.frs-block-surface-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.frs-block-surface-scrim--dark {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.62));
}
.frs-block-surface-scrim--light {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.62));
}
.frs-block-surface-scrim--none {
  background: transparent;
}
.frs-block-surface-foreground {
  position: relative;
  z-index: 2;
}

/* Block canvas: the OUTER .section-edit-wrapper.frs-block-surface owns background color, gradients,
   and photo layers. Every direct section root (including rental-grid and .section--content) must stay
   transparent so presets and custom chips visibly change the block. Promo bar is the exception — it
   ships its own full-width gradient plate. */
.section-edit-wrapper.frs-block-surface .frs-block-surface-foreground > section:not(.section--promo-bar) {
  background: transparent !important;
  background-image: none !important;
}

.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.wb-pro-mk-hero.wb-pro-mk-hero--no-photo {
  background: transparent !important;
}
/* Photo block: CTA band inner shell stays clear so the scrim + image layer read through */
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.wb-biz-cta-banner {
  background: transparent !important;
}

.section-edit-wrapper.frs-block-surface--light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.05), 0 22px 50px rgba(15, 23, 42, 0.08);
}
.section-edit-wrapper.frs-block-surface--alt {
  background: linear-gradient(165deg, #f1f5f9 0%, #e2e8f0 38%, #cbd5e1 100%);
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.06), 0 20px 46px rgba(15, 23, 42, 0.1);
}
.section-edit-wrapper.frs-block-surface--dark {
  background: linear-gradient(160deg, #020617 0%, #0f172a 40%, #020617 100%);
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.12);
}

.section-edit-wrapper.frs-block-surface--accent {
  background: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 18%, #ffffff);
}
@supports not (background: color-mix(in srgb, red, white)) {
  .section-edit-wrapper.frs-block-surface--accent {
    background: #eef2ff;
  }
}
.section-edit-wrapper.frs-block-surface--gradient {
  background: linear-gradient(
    118deg,
    var(--tenant-primary-color, #2563eb) 0%,
    var(--tenant-accent-color, #7c3aed) 38%,
    #5b21b6 68%,
    #020617 100%
  );
  box-shadow: 0 3px 24px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 28%, transparent);
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .section-edit-wrapper.frs-block-surface--gradient {
    box-shadow: 0 3px 24px rgba(37, 99, 235, 0.22);
  }
}
.section-edit-wrapper.frs-block-surface--soft_card {
  background: #fafbfc;
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.07),
    0 22px 50px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  margin-left: clamp(6px, 1.8vw, 18px);
  margin-right: clamp(6px, 1.8vw, 18px);
}
.section-edit-wrapper.frs-block-surface--full_bleed {
  background: radial-gradient(100% 90% at 50% -10%, #334155 0%, #0f172a 42%, #020617 100%);
}

/* Expressive presets — party rentals / vibrant marketing */
.section-edit-wrapper.frs-block-surface--party {
  background:
    radial-gradient(120% 85% at 12% 18%, rgba(251, 113, 133, 0.42), transparent 52%),
    radial-gradient(95% 75% at 88% 8%, rgba(96, 165, 250, 0.5), transparent 48%),
    radial-gradient(80% 60% at 50% 100%, rgba(250, 204, 21, 0.35), transparent 55%),
    linear-gradient(
      122deg,
      #fbcfe8 0%,
      #fde047 20%,
      #fbbf24 38%,
      #e879f9 55%,
      #38bdf8 78%,
      #22d3ee 100%
    );
  box-shadow:
    0 4px 0 rgba(244, 63, 94, 0.18),
    0 32px 64px rgba(79, 70, 229, 0.18);
}

.section-edit-wrapper.frs-block-surface--brand_band {
  background: linear-gradient(
    95deg,
    color-mix(in srgb, var(--tenant-primary-color, #2563eb) 72%, #0f172a) 0%,
    color-mix(in srgb, var(--tenant-accent-color, #7c3aed) 68%, #020617) 45%,
    #020617 100%
  );
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .section-edit-wrapper.frs-block-surface--brand_band {
    background: linear-gradient(95deg, #1d4ed8 0%, #5b21b6 55%, #020617 100%);
  }
}

/* Custom solid chip: visible on the block canvas for any non-image surface (incl. dark/gradient seeds) */
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image) {
  background: var(--frs-block-custom-bg, transparent) !important;
  background-image: none !important;
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-pro-mk-hero.wb-pro-mk-hero--no-photo {
  background: transparent !important;
  color: #0f172a !important;
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-pro-mk-hero.wb-pro-mk-hero--no-photo
  .wb-pro-mk-hero__kicker {
  color: rgba(15, 23, 42, 0.75) !important;
  text-shadow: none !important;
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-pro-mk-hero.wb-pro-mk-hero--no-photo
  .wb-pro-mk-hero__headline {
  color: #0f172a !important;
  text-shadow: none !important;
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-pro-mk-hero.wb-pro-mk-hero--no-photo
  .wb-pro-mk-hero__sub {
  color: rgba(15, 23, 42, 0.88) !important;
  text-shadow: none !important;
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-pro-mk-hero.wb-pro-mk-hero--no-photo
  .wb-pro-mk-hero__btn--ghost {
  border-color: rgba(15, 23, 42, 0.38) !important;
  color: #0f172a !important;
  background: rgba(255, 255, 255, 0.55) !important;
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-biz-cta-banner {
  background: transparent !important;
  --wb-cta-banner-bg: transparent;
  color: #0f172a;
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-biz-cta-banner
  .wb-biz-cta-banner__body {
  color: rgba(15, 23, 42, 0.88);
}
.section-edit-wrapper.frs-block-has-custom-bg:not(.frs-block-surface--image)
  .frs-block-surface-foreground
  > section.wb-biz-cta-banner
  .wb-biz-cta-banner__fine {
  color: rgba(15, 23, 42, 0.72);
}

.section-edit-wrapper.frs-block-spacing--compact {
  --frs-space-section-y: 48px;
}
.section-edit-wrapper.frs-block-spacing--comfortable {
  --frs-space-section-y: 80px;
}
.section-edit-wrapper.frs-block-spacing--spacious {
  --frs-space-section-y: 96px;
}

.frs-block-btns--pill .frs-block-surface-foreground .btn,
.frs-block-btns--pill .frs-block-surface-foreground a.btn {
  border-radius: 999px !important;
}

.builder-root .frs-block-surface-foreground .btn:not(.btn-link):not(.btn-sm) {
  border-radius: var(--frs-btn-radius, 10px);
  font-size: var(--frs-btn-font-size, 1rem);
  font-weight: var(--frs-btn-font-weight, 700);
  transition:
    transform var(--frs-motion-fast, 0.16s ease),
    box-shadow var(--frs-motion-fast, 0.16s ease),
    filter var(--frs-motion-fast, 0.16s ease),
    background-color var(--frs-motion-fast, 0.16s ease),
    border-color var(--frs-motion-fast, 0.16s ease),
    color var(--frs-motion-fast, 0.16s ease);
}

.builder-root .frs-block-surface-foreground .btn-primary {
  padding: var(--frs-btn-pad-y) var(--frs-btn-pad-x);
  border-radius: var(--frs-btn-radius);
  box-shadow:
    0 8px 20px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 28%, transparent),
    0 2px 6px rgba(15, 23, 42, 0.06);
}
.builder-root .frs-block-surface-foreground .btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 12px 26px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 32%, transparent),
    0 4px 10px rgba(15, 23, 42, 0.08);
}
@supports not (color: color-mix(in srgb, red, blue)) {
  .builder-root .frs-block-surface-foreground .btn-primary {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24), 0 2px 6px rgba(15, 23, 42, 0.06);
  }
  .builder-root .frs-block-surface-foreground .btn-primary:hover {
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28), 0 4px 10px rgba(15, 23, 42, 0.08);
  }
}

.builder-root .frs-block-surface-foreground .btn-outline-primary {
  padding: calc(var(--frs-btn-pad-y) - 1px) calc(var(--frs-btn-pad-x) - 1px);
  background: rgba(255, 255, 255, 0.95);
  color: var(--frs-primary) !important;
  border: 2px solid color-mix(in srgb, var(--frs-primary) 38%, #cbd5e1);
  box-shadow: var(--frs-shadow-sm);
  font-weight: var(--frs-btn-font-weight);
}

.builder-root .frs-block-surface-foreground .btn-outline-primary:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: var(--frs-primary);
  filter: none;
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .builder-root .frs-block-surface-foreground .btn-outline-primary {
    border: 2px solid rgba(37, 99, 235, 0.45);
  }
}

.section-edit-wrapper.frs-block-surface--light .frs-block-surface-foreground > section.section.section--content,
.section-edit-wrapper.frs-block-surface--alt .frs-block-surface-foreground > section.section.section--content {
  background: transparent !important;
}

.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section.section--content {
  background: transparent !important;
  color: #e2e8f0 !important;
}
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section.section--content h1,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section.section--content h2,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section.section--content h3,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section.section--content .section-prose {
  color: #f8fafc !important;
}

.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section.section.section--content,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section.section.section--content,
.section-edit-wrapper.frs-block-surface--party .frs-block-surface-foreground > section.section.section--content {
  background: transparent !important;
}

.section-edit-wrapper.frs-block-surface--party .frs-block-surface-foreground > section.section.section--content h1,
.section-edit-wrapper.frs-block-surface--party .frs-block-surface-foreground > section.section.section--content h2,
.section-edit-wrapper.frs-block-surface--party .frs-block-surface-foreground > section.section.section--content h3,
.section-edit-wrapper.frs-block-surface--party .frs-block-surface-foreground > section.section.section--content .section-prose {
  color: #0f172a !important;
}

.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section.section--content,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.section.section--content {
  background: transparent !important;
  color: #f8fafc !important;
}
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section.section--content h1,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section.section--content h2,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section.section--content h3,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section.section--content .section-prose,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.section.section--content h1,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.section.section--content h2,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.section.section--content h3,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.section.section--content .section-prose {
  color: #f8fafc !important;
}

.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.section.section--content {
  background: transparent !important;
  background-image: none !important;
  color: #f8fafc !important;
}
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.section.section--content h1,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.section.section--content h2,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.section.section--content h3,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.section.section--content .section-prose {
  color: #f8fafc !important;
}

.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section.section--content {
  background: transparent !important;
  color: #f8fafc !important;
}
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section.section--content h1,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section.section--content h2,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section.section--content h3,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section.section--content .section-prose {
  color: #f8fafc !important;
}

/* Image + light scrim: assume dark-on-light copy for readability */
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.section.section--content,
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.section.section--content h1,
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.section.section--content h2,
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.section.section--content h3,
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.section.section--content .section-prose {
  color: #0f172a !important;
}

/* Accent + soft_card: light surfaces with tinted band — dark type */
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section {
  color: #0f172a !important;
}
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section h1,
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section h2,
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section h3,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section h1,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section h2,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section h3,
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section .section-prose,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section .section-prose {
  color: #0f172a !important;
}

/* Light / alt bands: explicit dark type on all section roots (not only .section--content) */
.section-edit-wrapper.frs-block-surface--light .frs-block-surface-foreground > section,
.section-edit-wrapper.frs-block-surface--alt .frs-block-surface-foreground > section {
  color: #0f172a;
}
.section-edit-wrapper.frs-block-surface--light .frs-block-surface-foreground > section a,
.section-edit-wrapper.frs-block-surface--alt .frs-block-surface-foreground > section a {
  color: var(--tenant-primary-color, #2563eb);
}

/* CTA banner: component paints a solid brand plate; on block canvas the wrapper already provides tone */
.section-edit-wrapper.frs-block-surface--light .frs-block-surface-foreground > section.wb-biz-cta-banner,
.section-edit-wrapper.frs-block-surface--alt .frs-block-surface-foreground > section.wb-biz-cta-banner,
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section.wb-biz-cta-banner,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section.wb-biz-cta-banner {
  --wb-cta-banner-bg: transparent;
  background: transparent !important;
  color: #0f172a !important;
}
.section-edit-wrapper.frs-block-surface--light .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__title,
.section-edit-wrapper.frs-block-surface--alt .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__title,
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__title,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__title {
  color: #0f172a !important;
}
.section-edit-wrapper.frs-block-surface--light .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__body,
.section-edit-wrapper.frs-block-surface--alt .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__body,
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__body,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__body,
.section-edit-wrapper.frs-block-surface--light .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__fine,
.section-edit-wrapper.frs-block-surface--alt .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__fine,
.section-edit-wrapper.frs-block-surface--accent .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__fine,
.section-edit-wrapper.frs-block-surface--soft_card .frs-block-surface-foreground > section.wb-biz-cta-banner .wb-biz-cta-banner__fine {
  color: rgba(15, 23, 42, 0.88) !important;
}

/* Dark / gradient / brand / full-bleed: light type on any root section (grids, video, CTA band, hero) */
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section:not(.section.section--content),
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section:not(.section.section--content),
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section:not(.section.section--content),
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section:not(.section.section--content) {
  color: #e2e8f0 !important;
}
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section:not(.section.section--content) h1,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section:not(.section.section--content) h2,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section:not(.section.section--content) h3,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section:not(.section.section--content) h1,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section:not(.section.section--content) h2,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section:not(.section.section--content) h3,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section:not(.section.section--content) h1,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section:not(.section.section--content) h2,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section:not(.section.section--content) h3,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section:not(.section.section--content) h1,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section:not(.section.section--content) h2,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section:not(.section.section--content) h3 {
  color: #f8fafc !important;
}

/* Rental grid — band heading/copy follow surface */
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.rental-grid .rental-grid__heading,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.rental-grid .rental-grid__heading,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.rental-grid .rental-grid__heading,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.rental-grid .rental-grid__heading,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.rental-grid .rental-grid__heading {
  color: #f8fafc !important;
}
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.rental-grid .rental-grid__sub,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.rental-grid .rental-grid__desc,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.rental-grid .rental-grid__sub,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.rental-grid .rental-grid__desc,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.rental-grid .rental-grid__sub,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.rental-grid .rental-grid__desc {
  color: rgba(226, 232, 240, 0.9) !important;
}
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.rental-grid .rental-grid__heading,
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.rental-grid .rental-grid__sub,
.section-edit-wrapper.frs-block-surface--image.frs-block-surface--overlay-light .frs-block-surface-foreground > section.rental-grid .rental-grid__desc {
  color: #0f172a !important;
}

/* Category / intro titles on dark bands */
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section--category-grid h2,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section--category-grid h2,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section--category-grid h2,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section--category-grid .section-sub,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section--category-grid .section-sub,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section--category-grid .section-sub {
  color: #f8fafc !important;
}

/* Video feature — outer section readable on moody surfaces */
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section--split-video,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section--split-video,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.section--split-video,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.section--split-video,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section--split-video {
  background: transparent !important;
  color: #e2e8f0 !important;
}
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section--split-video h2,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section--split-video h2,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section--split-video h2,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.section--split-video .section-prose,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section--split-video .section-prose,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section--split-video .section-prose {
  color: #f8fafc !important;
}

/* Marketing hero — canvas-driven mood: type on wrapper when not using hero’s own full photo */
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__kicker,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__kicker,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__kicker,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__headline,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__headline,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__headline,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__sub,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__sub,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.wb-pro-mk-hero .wb-pro-mk-hero__sub {
  color: #f8fafc !important;
  text-shadow: 0 2px 28px rgba(2, 6, 23, 0.45);
}

/* Trust pillars — titles on dark / image canvas */
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__title,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__title,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__title,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__title,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__title,
.section-edit-wrapper.frs-block-surface--dark .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__sub,
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__sub,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__sub,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__sub,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.wb-biz-trust .wb-biz-trust__sub {
  color: #f8fafc !important;
}

/* CTA premium / circles — light copy on mood bands */
.section-edit-wrapper.frs-block-surface--gradient .frs-block-surface-foreground > section.section--cta,
.section-edit-wrapper.frs-block-surface--full_bleed .frs-block-surface-foreground > section.section--cta,
.section-edit-wrapper.frs-block-surface--brand_band .frs-block-surface-foreground > section.section--cta,
.section-edit-wrapper.frs-block-surface--image .frs-block-surface-foreground > section.section--cta {
  background: transparent !important;
}

/* ---- Typography (global inside section canvas — overrides weak defaults) ---- */

.builder-root .section .section-inner h1:not(.ui-hero__headline):not(.booking-hero-headline):not(.wb-date-checker__title):not(.cta-title),
.section .section-inner h1:not(.ui-hero__headline):not(.booking-hero-headline):not(.wb-date-checker__title):not(.cta-title),
.builder-root .section h1.section-heading,
.section h1.section-heading {
  font-size: var(--frs-type-h1);
  font-weight: 800;
  line-height: var(--frs-lh-h1);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--frs-color-heading);
}

/* Plain marketing hero / gradient hero: largest display title (must follow base h1) */
.builder-root .section.section--hero:not(.ui-hero):not(.ui-hero-split):not(.ui-hero-compact):not(.ui-hero-minimal) .section-inner h1:not(.ui-hero__headline):not(.booking-hero-headline):not(.wb-date-checker__title):not(.cta-title),
.section.section--hero:not(.ui-hero):not(.ui-hero-split):not(.ui-hero-compact):not(.ui-hero-minimal) .section-inner h1:not(.ui-hero__headline):not(.booking-hero-headline):not(.wb-date-checker__title):not(.cta-title) {
  font-size: var(--frs-type-hero);
  font-weight: 900;
  line-height: var(--frs-lh-hero);
  letter-spacing: -0.038em;
  margin: 0 0 16px;
  color: #f8fafc;
}

.builder-root .section .section-inner h2,
.section .section-inner h2,
.builder-root .section h2.section-heading,
.section h2.section-heading {
  font-size: var(--frs-type-h2);
  font-weight: 800;
  line-height: var(--frs-lh-h2);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--frs-color-heading);
}

.builder-root .section .section-inner * + h2,
.section .section-inner * + h2 {
  margin-top: clamp(24px, 4vw, 40px);
}

.builder-root .section .section-inner h1 + h2,
.section .section-inner h1 + h2 {
  margin-top: 12px;
}

.builder-root .section .section-inner h3,
.section .section-inner h3 {
  font-size: var(--frs-type-h3);
  font-weight: 700;
  line-height: var(--frs-lh-h3);
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--frs-color-heading);
}

.builder-root .section .section-inner * + h3,
.section .section-inner * + h3 {
  margin-top: 24px;
}

.builder-root .section .section-inner h2 + h3,
.section .section-inner h2 + h3 {
  margin-top: 12px;
}

.builder-root .section .section-inner h3:first-child,
.section .section-inner h3:first-child {
  margin-top: 0;
}

/* Light-on-image heroes only — split + minimal use pale panels with dark type (see ui_rebuild.css). */
.section.section--hero:not(.ui-hero-split):not(.ui-hero-minimal) .section-inner h1,
.section.section--hero:not(.ui-hero-split):not(.ui-hero-minimal) .section-inner h2 {
  color: #f8fafc;
}

.section.section--dark .section-inner h1,
.section.section--dark .section-inner h2,
.section.section--dark .section-inner h3,
.section.section--dark h1.section-heading,
.section.section--dark h2.section-heading {
  color: #f8fafc;
}

.builder-root .section .section-inner > p,
.section .section-inner > p,
.builder-root .section .section-inner .section-prose,
.section .section-inner .section-prose,
.builder-root .section .section-prose,
.section .section-prose {
  font-size: var(--frs-type-body);
  line-height: var(--frs-lh-body);
  color: var(--frs-color-body);
  font-weight: 400;
}

.builder-root .section .section-inner > p:not(:last-child),
.section .section-inner > p:not(:last-child) {
  margin: 0 0 16px;
}

.builder-root .section .section-inner > p:last-child,
.section .section-inner > p:last-child {
  margin-bottom: 0;
}

/* Readable measure for body copy blocks */
.builder-root .section .section-inner .section-prose,
.builder-root .section .section-prose {
  max-width: var(--frs-prose-max);
}

.builder-root .section .section-inner h1 + p,
.builder-root .section .section-inner h2 + p,
.builder-root .section .section-inner h3 + p,
.builder-root .section .section-inner h1 + .section-prose,
.builder-root .section .section-inner h2 + .section-prose,
.builder-root .section .section-inner h3 + .section-prose {
  margin-top: 0;
}

.section.section--dark .section-inner > p,
.section.section--dark .section-inner .section-prose,
.section.section--dark .section-prose,
.section.section--dark .section-sub {
  color: rgba(226, 232, 240, 0.93);
}

.section.section--hero:not(.ui-hero-split):not(.ui-hero-minimal) .section-inner > p,
.section.section--hero:not(.ui-hero-split):not(.ui-hero-minimal) .section-inner .section-prose,
.section.section--hero:not(.ui-hero-split):not(.ui-hero-minimal) .section-prose {
  color: rgba(248, 250, 252, 0.88);
}

.section-inner .section-prose p,
.section-prose p {
  margin: 0 0 16px;
}

.section-inner .section-prose p:last-child,
.section-prose p:last-child {
  margin-bottom: 0;
}

/* Rich text / inline images: consistent crop radius (no stretched layout) */
.builder-root .section-prose img,
.builder-root .section-inner .section-prose img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--frs-radius-lg, 16px);
  object-fit: cover;
}

.builder-root .section .section-inner .section-title,
.section .section-inner .section-title {
  font-size: var(--frs-type-h2);
  font-weight: 700;
  line-height: var(--frs-lh-h2);
  letter-spacing: -0.02em;
  margin: 0 0 var(--frs-space-after-heading-lg);
  color: var(--frs-color-heading);
}

.section.section--dark .section-inner .section-title {
  color: #f8fafc;
}

.section.section--dark .section-inner .section-sub {
  color: rgba(226, 232, 240, 0.9);
}

.builder-root .section .section-inner .section-sub,
.section .section-inner .section-sub {
  font-size: var(--frs-type-body);
  line-height: var(--frs-lh-body);
  color: var(--frs-color-body);
  margin: 0 0 var(--frs-stack-gap);
  max-width: var(--frs-prose-max);
}

.builder-root .section .section-inner .section-title + .section-sub,
.section .section-inner .section-title + .section-sub {
  margin-top: calc(-1 * var(--frs-space-after-heading) + 2px);
}

/* ---- Intro text: optional inner card ---- */

.section.section--intro-text .section-inner {
  max-width: 720px;
}

/* Intro: flat slice — no outer “card”; optional hero top uses light emphasis only */
.intro-surface {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: var(--frs-color-body);
  line-height: var(--frs-lh-body);
  font-size: var(--frs-type-body);
}

.intro-surface--hero {
  padding: 28px 0 0;
  border-left: 4px solid color-mix(in srgb, var(--tenant-primary-color, #b91c1c) 88%, #0f172a);
  padding-left: 22px;
}

.intro-surface h2,
.intro-surface--hero h2 {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.028em;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1.14;
  color: var(--frs-color-heading);
}

.intro-surface--hero h2 {
  color: color-mix(in srgb, var(--tenant-primary-color, #b91c1c) 92%, #0f172a);
}

/* ---- Feature grid (premium: flat cells, optional image ratio lock) ---- */

.builder-root .section.section--feature-grid {
  padding: 88px 24px;
}

.section.section--feature-grid .feature-grid-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section.section--feature-grid .feature-grid-head .section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section.section--feature-grid .feature-grid-head .section-sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: #475569;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.section.section--feature-grid .feature-grid-list {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  text-align: left;
  margin-top: 8px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.section.section--feature-grid .feature-grid-list--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section.section--feature-grid .feature-grid-list--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section.section--feature-grid .feature-grid-list--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .section.section--feature-grid .feature-grid-list--cols-2,
  .section.section--feature-grid .feature-grid-list--cols-3,
  .section.section--feature-grid .feature-grid-list--cols-4 {
    grid-template-columns: 1fr;
  }
}

.section.section--feature-grid .feature-cell {
  min-width: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* ---- Builder canvas: feature cells as light cards (stronger first paint) ---- */
.builder-root .section.section--feature-grid .feature-cell {
  padding: clamp(14px, 2.2vw, 22px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
  box-sizing: border-box;
}

.builder-root .section-edit-wrapper.wb-strip-b > .section.section--feature-grid .feature-cell {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.09);
}

.section.section--feature-grid.feature-grid--style-icon .feature-cell__icon {
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 12px;
}

.section.section--feature-grid .feature-cell__title {
  font-weight: 800;
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section.section--feature-grid .feature-cell__body {
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

.section.section--feature-grid .feature-cell__media {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
}

.section.section--feature-grid .feature-cell__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.section.section--feature-grid .feature-cell__placeholder-hint {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
}

.section.section--feature-grid .feature-cell__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section.section--feature-grid .feature-grid-list.frs-feature-stacked {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section.section--feature-grid .feature-grid-list.frs-fgrid-space--compact {
  gap: 16px;
}

.section.section--feature-grid .feature-grid-list.frs-fgrid-space--spacious {
  gap: 40px;
}

.section.section--feature-grid.frs-fgrid-space--compact .feature-grid-head {
  margin-bottom: 22px;
}

.section.section--feature-grid.frs-fgrid-space--spacious .feature-grid-head {
  margin-bottom: 48px;
}

.section.frs-text-space--compact .section-inner--editorial {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section.frs-text-space--spacious .section-inner--editorial {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.frs-cta-inner--center {
  text-align: center;
}

.frs-cta-inner--center .cta-actions-row {
  justify-content: center;
}

.frs-cta-inner--end {
  text-align: right;
}

.frs-cta-inner--end .cta-actions-row {
  justify-content: flex-end;
}

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

.section.section--faq .faq-list {
  margin-top: 20px;
}

.section.section--faq .faq-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: #ffffff;
}

.section.section--faq .faq-q {
  font-weight: 800;
  margin-bottom: 6px;
  color: #111827;
  font-size: 1rem;
}

.section.section--faq .faq-a {
  color: #6b7280;
  font-size: 0.98rem;
  line-height: 1.55;
}

.section.section--faq.faq-block--minimal .faq-item {
  padding: 12px 14px;
  margin-bottom: 8px;
}

.section.section--faq.faq-block--minimal .section-title {
  font-size: 1.5rem;
}

.section.section--faq.faq-block--minimal .section-sub {
  font-size: 0.98rem;
}

/* ---- Simple hero banner (hero_large) ---- */

.section.section--hero.hero-banner .hero-title {
  margin: 0 0 8px;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #111827;
}

.section.section--hero.hero-banner .hero-sub {
  margin: 0 0 22px;
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 640px;
  line-height: 1.6;
}

.section.section--hero.hero-banner .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.section.section--hero.hero-banner .hero-btn-primary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--tenant-primary-color, #2563eb);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}

.section.section--hero.hero-banner .hero-btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: #111827 !important;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-weight: 700;
  text-decoration: none;
}

/* ---- CTA (dark slice) ---- */

.section.section--dark.cta-block,
.section.section--cta.cta-block {
  border: none;
  box-shadow: none;
  background: linear-gradient(145deg, #0b1220 0%, #111827 50%, #0f172a 100%);
}

.section.section--dark.cta-block.section--cta-banner,
.section.section--cta.cta-block.section--cta-banner {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0 !important;
  padding-left: 0;
  padding-right: 0;
}

.section.section--dark.cta-block .cta-actions-row,
.section.section--cta.cta-block .cta-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.section.section--dark.cta-block .cta-btn-light,
.section.section--cta.cta-block .cta-btn-light {
  background: #fff;
  color: #111827 !important;
  font-weight: var(--frs-btn-font-weight, 700);
  padding: calc(var(--frs-btn-pad-y, 0.875rem) + 2px) calc(var(--frs-btn-pad-x, 1.75rem) + 4px);
  border-radius: var(--frs-btn-radius, 10px);
  font-size: var(--frs-btn-font-size, 1rem);
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.section.section--dark.cta-block .cta-subtle,
.section.section--cta.cta-block .cta-subtle {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.85);
}

.section.section--dark.cta-block h2,
.section.section--cta.cta-block h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #f8fafc;
}

.section.section--dark.cta-block .cta-lead,
.section.section--cta.cta-block .cta-lead {
  margin: 12px 0 18px;
  font-weight: 600;
  max-width: 60ch;
}

/* ---- Booking hero (full-width dominant CTA — never a gray card) ---- */

.booking-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .booking-hero-layout {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .booking-hero-cta {
    justify-self: start;
  }
}

.booking-hero-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(248, 250, 252, 0.75);
}

.section.section--booking-hero--dark .booking-hero-kicker {
  color: color-mix(in srgb, var(--tenant-primary-color, #60a5fa) 62%, #f8fafc);
}

.section.section--booking-hero--kids .booking-hero-kicker {
  color: #57534e;
}

.booking-hero-headline {
  margin: 0 0 16px;
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #f8fafc !important;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.section.section--booking-hero--dark .booking-hero-headline {
  color: #f8fafc !important;
}

.section.section--booking-hero--kids .booking-hero-headline {
  color: #0f172a !important;
}

.booking-hero-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.9);
  max-width: 48ch;
  font-weight: 500;
}

.section.section--booking-hero--dark .booking-hero-lead {
  color: rgba(226, 232, 240, 0.9);
}

.section.section--booking-hero--kids .booking-hero-lead {
  color: #44403c;
}

.booking-hero-cta {
  margin-top: 20px;
}

@media (min-width: 769px) {
  .booking-hero-cta {
    margin-top: 20px;
  }
}

.booking-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  color: color-mix(in srgb, var(--tenant-primary-color, #1e40af) 88%, #0f172a) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.booking-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.booking-hero-btn--on-dark {
  background: linear-gradient(
    125deg,
    var(--tenant-primary-color, #2563eb) 0%,
    var(--tenant-accent-color, #7c3aed) 100%
  );
  color: #fff !important;
  box-shadow: 0 14px 36px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 35%, rgba(0, 0, 0, 0.35));
}

.booking-hero-btn--kids {
  padding: 14px 24px;
  background: var(--tenant-accent-color, #7c3aed);
  color: #fff !important;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--tenant-accent-color, #7c3aed) 42%, rgba(0, 0, 0, 0.2));
}

.booking-hero-form-kids {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 20px;
  background: #fef08a;
  border: 2px solid #eab308;
  border-radius: 12px;
}

.booking-hero-input {
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  background: #fff;
  min-width: 150px;
}

.booking-hero-note {
  margin: 28px 0 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.72);
}

.section.section--booking-hero--kids .booking-hero-note {
  color: #57534e;
}

.section.section--featured-products .featured-products-intro {
  margin-bottom: 32px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section.section--featured-products .featured-products-intro .section-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 48ch;
}

/* ---- Testimonials (full-width slice + horizontal strip) ---- */

.section.section--testimonials .testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.section.section--testimonials .testimonials-head h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}

.section.section--testimonials .testimonials-head .section-sub {
  margin: 0 auto;
  max-width: 50ch;
}

.section.section--testimonials .testimonial-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.section.section--testimonials.section--testimonials--minimal .testimonial-strip {
  gap: 24px;
  justify-content: center;
}

.section.section--testimonials .testimonial-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: start;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.section.section--testimonials.section--testimonials--minimal .testimonial-card {
  border: 0;
  box-shadow: none;
  background: transparent;
  max-width: 380px;
}

.section.section--testimonials .testimonial-card .t-quote {
  margin: 0;
  color: #111827;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
}

.section.section--testimonials .testimonial-card .t-author {
  font-weight: 800;
  color: #111827;
  font-size: 0.95rem;
}

.section.section--testimonials .testimonial-card .t-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section.section--testimonials .testimonial-card .t-meta {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.85rem;
}

.section.section--testimonials .rating-row {
  text-align: center;
  margin: 0 auto 22px;
  max-width: 640px;
}

/* ---- Video + text (2-column) ---- */

.section.section--split-video .section-inner--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .section.section--split-video .section-inner--split {
    grid-template-columns: 1fr;
  }
}

.section.section--split-video .video-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  background: #e8edf3;
}

.section.section--split-video .frs-video-frame--public-placeholder {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 55%, #e0e7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.section.section--split-video .frs-video-public-placeholder-inner {
  text-align: center;
  padding: 24px 20px;
  max-width: 420px;
  color: #334155;
}

.section.section--split-video .frs-video-public-placeholder-inner__title {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: #1e293b;
}

.section.section--split-video .frs-video-public-placeholder-inner__hint {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #64748b;
}

.section.section--split-video .ratio-16x9 {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.section.section--split-video .ratio-16x9 iframe,
.section.section--split-video .ratio-16x9 > div {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.section.section--split-video .frs-vfeat-builder-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 20px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.section.section--split-video .frs-vfeat-layout-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  flex: 1;
  min-width: min(100%, 280px);
}

.section.section--split-video .frs-vfeat-layout-tools-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.section.section--split-video .frs-vfeat-layout-tools-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.section.section--split-video .frs-vfeat-layout-btn {
  border: 1px solid rgba(51, 65, 85, 0.25);
  background: #fff;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 650;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.section.section--split-video .frs-vfeat-layout-btn:hover {
  border-color: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 45%, transparent);
  color: var(--tenant-primary-color, #1d4ed8);
}

.section.section--split-video .frs-vfeat-layout-btn.is-active {
  background: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 12%, #ffffff);
  border-color: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 55%, transparent);
  color: color-mix(in srgb, var(--tenant-primary-color, #1e40af) 90%, #0f172a);
}

.section.section--split-video .frs-vfeat-add-video-btn {
  border: 1px dashed rgba(51, 65, 85, 0.4);
  background: #f8fafc;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.section.section--split-video .frs-vfeat-add-video-btn:hover {
  background: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 10%, #f8fafc);
  border-color: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 50%, transparent);
  color: var(--tenant-primary-color, #1d4ed8);
}

.section.section--split-video.frs-vfeat-space--compact .section-inner--split,
.section.section--split-video.frs-vfeat-space--compact .frs-vfeat-inner--grid {
  gap: 16px;
}

.section.section--split-video.frs-vfeat-space--spacious .section-inner--split,
.section.section--split-video.frs-vfeat-space--spacious .frs-vfeat-inner--grid {
  gap: 48px;
}

.section.section--split-video .section-inner--split.frs-vfeat-split--video-left {
  direction: rtl;
}

.section.section--split-video .section-inner--split.frs-vfeat-split--video-left > * {
  direction: ltr;
}

.section.section--split-video .frs-vfeat-split-videos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section.section--split-video .frs-vfeat-inner--stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.section.section--split-video .frs-vfeat-stack-text {
  max-width: 720px;
}

.section.section--split-video .frs-vfeat-video-max {
  max-width: 960px;
}

.section.section--split-video .frs-vfeat-video-grid {
  display: grid;
  gap: 16px;
  width: 100%;
}

.section.section--split-video .frs-vfeat-video-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section.section--split-video .frs-vfeat-video-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section.section--split-video .frs-vfeat-video-grid--1 {
  grid-template-columns: 1fr;
}

@media (max-width: 767px) {
  .section.section--split-video .frs-vfeat-video-grid--2,
  .section.section--split-video .frs-vfeat-video-grid--3 {
    grid-template-columns: 1fr;
  }
}

.section.section--split-video .frs-vfeat-inner--fullbleed .frs-vfeat-fullbleed-row {
  width: 100%;
}

/* ---- Split hero (premium): image + copy grid ---- */

.section.section--split-hero.section--alt {
  background: #e8edf4;
}

.section.section--split-hero--luxury {
  background: linear-gradient(165deg, #1c1917 0%, #292524 42%, #0c0a09 100%);
  color: #fafaf9;
}

.section.section--split-hero .wb-split-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.section.section--split-hero.wb-split-hero--luxury .wb-split-hero__grid {
  align-items: stretch;
}

.section.section--split-hero--luxury h1 {
  color: #fafaf9;
}

.section.section--split-hero--luxury .wb-split-body {
  color: #d6d3d1;
}

/* ---- Editorial split (marketing band — no gray stat cards) ---- */

.builder-root .section.section--editorial-split {
  padding: 88px 24px;
}

.section.section--editorial-split .editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.section.section--editorial-split .editorial-grid--media-left .editorial-visual-shell {
  order: -1;
}

.section.section--editorial-split .editorial-eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6366f1;
}

.section.section--editorial-split .editorial-title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #0f172a;
}

.section.section--editorial-split .editorial-prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  font-weight: 500;
}

.section.section--editorial-split .editorial-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.section.section--editorial-split .editorial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
}

.section.section--editorial-split .editorial-btn--primary {
  background: #0f172a;
  color: #fff;
}

.section.section--editorial-split .editorial-btn--secondary {
  background: transparent;
  color: #312e81;
  border: 1px solid rgba(49, 46, 129, 0.25);
}

.section.section--editorial-split .editorial-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.section.section--editorial-split .editorial-stat__value {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section.section--editorial-split .editorial-stat__label {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
}

.section.section--editorial-split .editorial-visual-shell {
  min-width: 0;
}

.section.section--editorial-split .editorial-visual {
  border-radius: 18px;
  overflow: hidden;
  min-height: min(420px, 52vh);
  background: linear-gradient(160deg, #e2e8f0 0%, #cbd5e1 55%, #94a3b8 100%);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
}

.section.section--editorial-split .editorial-visual__img {
  width: 100%;
  height: 100%;
  min-height: min(420px, 52vh);
  object-fit: cover;
  object-position: center;
  display: block;
}

.section.section--editorial-split .editorial-visual__placeholder {
  min-height: min(420px, 52vh);
}

/* ---- Category grid header ---- */

.section.section--category-grid .category-intro {
  margin-bottom: 24px;
}

.section.section--category-grid .category-intro h2 {
  margin: 0 0 12px;
}

/* ---- Contact / lead (dark gradient slice) ---- */
.section.section--contact-lead {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #312e81 100%);
  color: #fff;
}

.section.section--contact-lead h2 {
  color: #fff;
}

/* ---- Stats row (content + rules) ---- */
.section.section--stats-row {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.section.section--stats-row h2 {
  text-align: center;
  margin-bottom: 8px;
}

/* ---- Logo strip ---- */
.section.section--logo-strip {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.section.section--logo-strip .section-inner > p:first-child {
  text-align: center;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

/* testimonial-cards: uses section--content + wb-strip alternation */

.section.section--trust-strip {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #e2e8f0;
  padding: 36px 24px;
}

.section.section--testimonials--minimal h2 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
  font-weight: 700;
}

/* ---- Featured products rail ---- */
.section.section--featured-products-gold {
  background: linear-gradient(180deg, #1c1917 0%, #0c0a09 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  color: #fafaf9;
}

.section.section--featured-products-gold h2 {
  color: #fafaf9;
}

.section.section--process-steps {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.section.section--process-steps h2 {
  text-align: center;
}

/* ---- Legacy CTA block (dark / hero-scale band) ---- */
.section.section--dark.section--cta.section--cta-legacy {
  background: linear-gradient(
    128deg,
    #020617 0%,
    #0b1220 18%,
    var(--tenant-primary-color, #1d4ed8) 52%,
    var(--tenant-accent-color, #5b21b6) 100%
  );
  padding: 96px 28px;
  border-top: 1px solid rgba(96, 165, 250, 0.22);
  border-bottom: 1px solid rgba(167, 139, 250, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section.section--cta-legacy .cta-title {
  font-size: clamp(2.125rem, 4.5vw, 3rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: #f8fafc !important;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.section.section--cta-legacy .cta-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.92);
  margin: 0 0 20px;
}

.section.section--cta-legacy .cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section.section--cta-legacy .cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: #f8fafc;
  color: #0b1220 !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.section.section--cta-legacy .cta-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.section.section--cta-legacy .cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.35);
  background: transparent;
  color: #f8fafc !important;
  text-decoration: none;
  font-weight: 700;
}

/* ---- Premium CTA / booking band (non-boxy) ---- */
.builder-root .section.cta-premium {
  padding: 88px 24px;
}

.section.cta-premium--band.section--dark {
  background: radial-gradient(120% 90% at 20% 20%, #1e3a8a 0%, transparent 55%),
    radial-gradient(90% 70% at 85% 30%, #5b21b6 0%, transparent 50%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: #f8fafc;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.section.cta-premium--light.section--content {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color: #0f172a;
}

.section.cta-premium--light .cta-premium__title {
  color: #0f172a !important;
}

.section.cta-premium--light .cta-premium__lead {
  color: #475569 !important;
}

.section.cta-premium--light .cta-premium__sub {
  color: #64748b !important;
}

.section.cta-premium--light .cta-btn-light {
  background: #0f172a !important;
  color: #fff !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.2);
}

.section.cta-premium__title {
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 14px;
}

.section.section--dark.cta-premium--band .cta-premium__title {
  color: #f8fafc !important;
}

.section.cta-premium__lead {
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 22px;
}

.section.section--dark.cta-premium .cta-premium__lead {
  color: rgba(226, 232, 240, 0.9) !important;
}

.section.cta-premium__actions {
  gap: 16px;
}

.section.cta-premium__btn {
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 800;
}

.section.cta-premium__sub {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .frs-cta-inner--split {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 36px;
    align-items: center;
    text-align: left;
  }

  .frs-cta-inner--split .cta-split-actions {
    text-align: right;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}

/* ---- Date availability checker (dark gold editorial band) ---- */
.section.section--dark.wb-date-checker {
  background: linear-gradient(180deg, #0c0a09 0%, #1c1917 55%, #0f172a 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 24px;
  color: #fafaf9;
}

.wb-date-checker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.wb-date-checker__kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d4af37;
}

.wb-date-checker__title {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 700;
  color: #fafaf9;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wb-date-checker__lead {
  margin: 0;
  color: #a8a29e;
  font-weight: 600;
  line-height: 1.55;
  font-size: 0.98rem;
  max-width: 52ch;
}

.wb-date-checker__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.wb-date-checker__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wb-date-checker__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wb-date-checker__label-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e7e5e4;
}

.wb-date-checker__input {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #0f172a;
  color: #f8fafc;
  font-weight: 700;
  font-size: 1rem;
}

.wb-date-checker__submit {
  margin: 0;
  padding: 16px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  background: linear-gradient(135deg, #d4af37, #b45309);
  color: #1c1917;
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.35);
}

.wb-date-checker__fineprint {
  margin: 0;
  font-size: 0.82rem;
  color: #78716c;
  font-weight: 600;
  text-align: center;
}

/* ---- Dense hero image grid: maps to HERO band + flush media strip ---- */
.section.section--hero.section--hero-grid-dense,
.builder-root .section.section--hero.section--hero-grid-dense {
  padding: 0 !important;
  background: #0f172a !important;
  color: #f8fafc;
}

.section-inner.section-inner--hero-grid-dense {
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
}

/* Hero rail: align UI rebuild container to mandatory section-inner width */
.section.section--hero .ui-hero__container.section-inner,
.section.section--hero .section-inner.ui-hero__container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.ui-hero-split__content > .section-inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.section.section--hero.ui-hero-compact .ui-hero-compact__inner.section-inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section.section--hero.ui-hero-minimal .ui-hero-minimal__inner.section-inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Process timeline rail (alt band + hairline borders) ---- */
.section.section--alt.wb-process-timeline {
  border-top: 1px solid rgba(28, 25, 23, 0.06);
  border-bottom: 1px solid rgba(28, 25, 23, 0.06);
}

/* ---- Signature experiences (warmer dark than default navy) ---- */
.section.section--dark.wb-signature-xp {
  background: #0c0a09;
  color: #e7e5e4;
}

/* Slim promo strip: not a tall content slice */
.section.section--promo-bar {
  padding: 0 !important;
  margin: 0;
}

/*
 * Final override: late theme / Bootstrap cannot restyle FRS bands inside the canvas.
 * (Applies to builder preview, CMS pages, and db_theme flows — any .builder-root descendant.)
 */
.builder-root .section.section--content:not(.section--banner-split) {
  background: var(--frs-surface-page, #f5f7fa) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Beat flat content override: alternating strips stay nuanced inside builder-root */
.builder-root .section-edit-wrapper.wb-strip-a > section.section.section--content:not(.section--banner-split) {
  background: linear-gradient(180deg, var(--frs-surface-content, #fafbfc) 0%, var(--frs-surface-card, #ffffff) 100%) !important;
}

.builder-root .section-edit-wrapper.wb-strip-b > section.section.section--content:not(.section--banner-split) {
  background: linear-gradient(180deg, #f1f5f9 0%, #e8edf3 52%, #f1f5f9 100%) !important;
}

.builder-root .section.section--content.section--banner-split {
  background: #ffce00 !important;
  color: #111827 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.builder-root .section.section--alt {
  background: linear-gradient(180deg, var(--frs-surface-alt, #f1f5f9) 0%, #e8edf3 100%) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Plain dark/CTA bands only — specialty dark slices keep their own gradients */
.builder-root .section.section--dark:not(.wb-date-checker):not(.wb-signature-xp):not(.section--promo-bar):not(.section--featured-products-gold),
.builder-root .section.section--cta:not(.section--promo-bar):not(.section--featured-products-gold) {
  background: #0f172a !important;
  color: #f8fafc !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.builder-root .section.section--hero:not(.ui-hero):not(.ui-hero-split):not(.ui-hero-compact):not(.ui-hero-minimal):not(.section--hero-grid-dense) {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Typography lock for CONTENT / ALT slices (heroes keep ui-hero scale) */
.builder-root .section.section--content .section-inner > h1,
.builder-root .section.section--alt .section-inner > h1 {
  font-size: var(--frs-type-h1);
  font-weight: 800;
  line-height: var(--frs-lh-h1);
  margin: 0 0 16px;
}

.builder-root .section.section--content .section-inner > h2,
.builder-root .section.section--alt .section-inner > h2 {
  font-size: var(--frs-type-h2);
  font-weight: 800;
  line-height: var(--frs-lh-h2);
  margin: 0 0 16px;
}

.builder-root .section.section--content .section-inner > h3,
.builder-root .section.section--alt .section-inner > h3 {
  font-size: var(--frs-type-h3);
  font-weight: 700;
  line-height: var(--frs-lh-h3);
  margin: 0 0 16px;
}

.builder-root .section.section--content .section-inner > p,
.builder-root .section.section--alt .section-inner > p {
  font-size: var(--frs-type-body);
  font-weight: 400;
  line-height: var(--frs-lh-body);
  color: var(--frs-color-body);
}

/* =====================================================================
   Unified buttons + hero CTAs (tenant primary, radius, hover)
   ===================================================================== */

.builder-root .ui-hero__headline {
  line-height: 1.05;
  font-weight: 900 !important;
  letter-spacing: -0.038em;
  text-shadow: 0 4px 42px rgba(0, 0, 0, 0.58);
}

.builder-root .ui-hero__overline {
  opacity: 1;
  font-size: 10px;
}

@media (min-width: 768px) {
  .builder-root .section.ui-hero .ui-hero__headline {
    font-size: clamp(3.65rem, 7.5vw, 5.65rem) !important;
  }
}

@media (min-width: 1600px) {
  .builder-root .section.ui-hero .ui-hero__headline {
    text-shadow: 0 6px 52px rgba(0, 0, 0, 0.65);
  }
}

.builder-root .ui-hero__body {
  line-height: 1.65;
  font-size: clamp(1.0625rem, 1.55vw, 1.2rem);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.48);
}

.builder-root .section.ui-hero .ui-hero__headline + .ui-hero__cta-row {
  margin-top: clamp(18px, 2.6vh, 30px);
}

.builder-root .ui-hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
  min-height: 58px;
  padding: 1.2rem 2.55rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--frs-primary);
  color: var(--frs-primary-contrast) !important;
  border: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 22px 52px -10px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.builder-root .ui-hero__cta-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06) saturate(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.26) inset,
    0 28px 60px -10px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(0, 0, 0, 0.12);
}

.builder-root .ui-hero__cta-btn:focus-visible {
  outline: 3px solid rgba(248, 250, 252, 0.95);
  outline-offset: 3px;
}

.builder-root .ui-hero__cta-btn--ghost {
  min-height: 50px;
  padding: 0.9375rem 1.65rem;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  filter: none;
}

.builder-root .ui-hero__cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  filter: none;
  transform: translateY(-2px);
}

.builder-root .ui-hero__booking-btn {
  min-height: 60px;
  padding: 1.2rem 2.25rem;
  border-radius: 12px;
  font-size: 1.0825rem;
  font-weight: 800;
  background: var(--frs-primary);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22) inset,
    0 14px 36px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.builder-root .ui-hero__booking-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28) inset,
    0 18px 44px rgba(0, 0, 0, 0.36);
}

.builder-root .ui-hero__booking-btn:focus-visible {
  outline: 3px solid rgba(248, 250, 252, 0.95);
  outline-offset: 3px;
}

.builder-root .ui-header__cta {
  padding: var(--frs-btn-pad-y) var(--frs-btn-pad-x);
  border-radius: var(--frs-btn-radius);
  font-weight: var(--frs-btn-font-weight);
  background: var(--frs-primary);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.builder-root .ui-header__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.builder-root .ui-hero-split__form button {
  min-height: 58px;
  padding: 1.15rem 2.15rem;
  border-radius: 12px;
  font-size: 1.0825rem;
  font-weight: 800;
  background: var(--frs-primary);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 16px 44px -8px rgba(15, 23, 42, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.builder-root .ui-hero-split__form button:hover {
  transform: translateY(-3px);
  filter: brightness(1.06) saturate(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24) inset,
    0 22px 52px -8px rgba(15, 23, 42, 0.38);
}

.builder-root .ui-hero-split__form button:focus-visible {
  outline: 3px solid var(--frs-primary);
  outline-offset: 3px;
}

.builder-root .hero-btn-primary,
.builder-root .hero-btn-outline {
  padding: var(--frs-btn-pad-y) var(--frs-btn-pad-x);
  border-radius: var(--frs-btn-radius);
  font-size: 0.97rem;
  font-weight: var(--frs-btn-font-weight);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.builder-root .hero-btn-primary {
  background: var(--frs-primary);
  color: var(--frs-primary-contrast) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.builder-root .hero-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.26);
}

.builder-root .hero-btn-outline {
  border: 2px solid rgba(15, 23, 42, 0.16);
}

.builder-root .hero-btn-outline:hover {
  border-color: var(--frs-primary);
  color: var(--frs-primary);
}

.section.section--hero.hero-banner .hero-btn-primary,
.section.section--hero.hero-banner .hero-btn-secondary {
  padding: var(--frs-btn-pad-y) var(--frs-btn-pad-x);
  border-radius: var(--frs-btn-radius);
  font-size: var(--frs-btn-font-size);
  font-weight: var(--frs-btn-font-weight);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.section.section--hero.hero-banner .hero-btn-primary {
  background: var(--frs-primary);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.section.section--hero.hero-banner .hero-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.section.section--hero.hero-banner .hero-btn-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--frs-primary);
  color: var(--frs-primary);
}

.section.section--editorial-split .editorial-btn {
  padding: var(--frs-btn-pad-y) var(--frs-btn-pad-x);
  border-radius: var(--frs-btn-radius);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.section.section--editorial-split .editorial-btn--primary {
  background: var(--frs-primary);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.section.section--editorial-split .editorial-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* =====================================================================
   Visual polish — placeholders, hero empty states, galleries, TV-scale
   ===================================================================== */

.frs-cover-img {
  object-fit: cover;
  object-position: center;
}

/* Neutral “add media” blocks — no stock photography */
.frs-media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  width: 100%;
  box-sizing: border-box;
  padding: 28px 22px;
  background: linear-gradient(145deg, #e8edf5 0%, #dfe7f2 48%, #d4dce8 100%);
  border: 1px dashed rgba(15, 23, 42, 0.22);
  border-radius: 16px;
  color: #475569;
}

.frs-media-placeholder--split {
  min-height: 220px;
}

.frs-media-placeholder--hero-grid {
  min-height: min(48vh, 420px);
  border-radius: 0;
}

.frs-media-placeholder--book-now {
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  color: #cbd5e1;
}

.frs-media-placeholder--gallery {
  min-height: 160px;
  margin-top: 8px;
}

.frs-media-placeholder--editorial {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.frs-media-placeholder__title {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #334155;
}

.frs-media-placeholder--book-now .frs-media-placeholder__title {
  color: #f1f5f9;
}

.frs-media-placeholder__hint {
  font-size: 0.9rem;
  font-weight: 600;
  max-width: 36ch;
  line-height: 1.45;
  opacity: 0.92;
}

/* Image-backed heroes with no photo yet */
.ui-hero__bg--empty,
.ui-hero-compact__bg--empty {
  background-image: none !important;
  background: linear-gradient(
    125deg,
    #0f172a 0%,
    #1e3a5f 35%,
    #312e81 70%,
    #4c1d95 100%
  ) !important;
}

.ui-hero-split__img--empty {
  background-image: none !important;
  background: linear-gradient(
    140deg,
    #1e293b 0%,
    #334155 40%,
    #475569 100%
  ) !important;
  min-height: 280px;
}

.wb-split-hero__media--empty .frs-media-placeholder--split {
  min-height: inherit;
  flex: 1;
  border-radius: 0;
  border: none;
  background: rgba(248, 250, 252, 0.12);
}

.wb-split-hero--luxury .wb-split-hero__media--empty .frs-media-placeholder--split {
  background: rgba(0, 0, 0, 0.35);
  color: #e7e5e4;
}

.wb-split-hero--luxury .wb-split-hero__media--empty .frs-media-placeholder__title {
  color: #fafaf9;
}

/* Galleries — uniform grid row height, hover polish */
.bp-hero-grid__cell {
  overflow: hidden;
  background: #0f172a;
}

.bp-gallery--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-top: 4px;
}

.bp-gallery--masonry {
  columns: 3 260px;
  column-gap: clamp(14px, 2vw, 22px);
  margin-top: 4px;
}

.bp-gallery__figure {
  margin: 0;
  break-inside: avoid;
  overflow: hidden;
  background: #0b1220;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bp-gallery__figure--grid {
  aspect-ratio: 4 / 3;
}

.bp-gallery__figure--grid img {
  width: 100%;
  height: 100%;
  display: block;
}

.bp-gallery__figure--masonry {
  margin-bottom: clamp(14px, 2vw, 22px);
}

.bp-gallery__figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.frs-gallery-cell--soft_shadow {
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.frs-gallery-cell--flat {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.frs-gallery-cell--rounded {
  border-radius: 18px;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.wb-gallery-masonry__cols {
  columns: 3 min(280px, 32vw);
  column-gap: clamp(16px, 2.5vw, 24px);
  margin-top: 4px;
}

.wb-gallery-masonry__figure {
  border-radius: 16px;
}

.section--gallery-grid .section-inner > h2,
.wb-gallery-masonry .section-inner > h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

/* Section rhythm on very wide viewports */
@media (min-width: 1440px) {
  .builder-root .section {
    padding: calc(var(--frs-space-section-y) + 0.5rem) clamp(28px, 3.5vw, 48px);
  }

  .builder-root .section.section--hero:not(.ui-hero):not(.ui-hero-split):not(.ui-hero-compact):not(.ui-hero-minimal):not(.section--hero-grid-dense) {
    padding: calc(var(--frs-space-section-y-lg) + 0.5rem) clamp(28px, 3.5vw, 48px);
  }

  .booking-hero-headline,
  .builder-root .section.ui-hero .ui-hero__headline {
    font-size: clamp(4rem, 5.8vw, 5.85rem) !important;
  }
}

@media (min-width: 1920px) {
  .section-inner--wide {
    max-width: min(1520px, 94vw);
  }

  .builder-root .section.section--dark.cta-block,
  .builder-root .section.section--cta.cta-block {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}

/* CTA primary control — stronger presence */
.section.section--dark.cta-block .cta-btn-light:hover,
.section.section--cta.cta-block .cta-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.section.section--dark.cta-block h2,
.section.section--cta.cta-block h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* =====================================================================
   Hero WOW 2.0 — flagship homepage hero (layouts + surfaces)
   ===================================================================== */

.builder-root .hero-wow,
.hero-wow {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-wow__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
}

.hero-wow__backdrop--empty {
  background-image: linear-gradient(125deg, #0f172a 0%, #1e3a8a 45%, #4338ca 100%);
}

.hero-wow__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(
      105deg,
      rgba(2, 6, 23, 0.94) 0%,
      rgba(15, 23, 42, 0.72) 40%,
      rgba(15, 23, 42, 0.32) 100%
    );
  pointer-events: none;
}

.hero-wow--layout-full_bleed .hero-wow__scrim {
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(
      to bottom,
      rgba(2, 6, 23, 0.74) 0%,
      rgba(2, 6, 23, 0.92) 100%
    );
}

.hero-wow__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 3vw, 36px);
  padding-right: clamp(20px, 3vw, 36px);
}

.hero-wow--space-comfortable {
  padding-top: clamp(100px, 11vw, 132px);
  padding-bottom: clamp(100px, 11vw, 132px);
}

.hero-wow--space-spacious {
  padding-top: clamp(112px, 12vw, 140px);
  padding-bottom: clamp(112px, 12vw, 140px);
}

.hero-wow--space-roomy {
  padding-top: clamp(120px, 13vw, 148px);
  padding-bottom: clamp(120px, 13vw, 148px);
}

.hero-wow__grid {
  display: grid;
  gap: clamp(40px, 5.5vw, 64px);
  align-items: center;
}

.hero-wow--layout-split_right .hero-wow__grid,
.hero-wow--layout-split_left .hero-wow__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-wow--layout-centered .hero-wow__grid {
  grid-template-columns: 1fr;
}

.hero-wow--layout-full_bleed .hero-wow__grid {
  grid-template-columns: 1fr;
  max-width: min(920px, 100%);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero-wow--layout-split_right .hero-wow__grid,
  .hero-wow--layout-split_left .hero-wow__grid {
    grid-template-columns: 1fr;
  }

  .hero-wow--layout-split_left .hero-wow__media {
    order: -1;
  }
}

/* ---- Surfaces (no outer “card”) ---- */
.hero-wow--surface-white {
  background: #ffffff;
  color: #020617;
}

.hero-wow--surface-light {
  background: linear-gradient(180deg, #ffffff 0%, #e8edf4 100%);
  color: #020617;
}

.hero-wow--surface-dark {
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: #f8fafc;
}

.hero-wow--surface-dark .hero-wow__sub,
.hero-wow--surface-dark .hero-wow__eyebrow {
  color: rgba(226, 232, 240, 0.88);
}

.hero-wow--surface-gradient {
  background: linear-gradient(132deg, #020617 0%, #1e3a8a 38%, #5b21b6 88%);
  color: #f8fafc;
}

.hero-wow--surface-gradient .hero-wow__sub,
.hero-wow--surface-gradient .hero-wow__eyebrow {
  color: rgba(248, 250, 252, 0.9);
}

.hero-wow--surface-image {
  background: #0b1220;
  color: #f8fafc;
}

.hero-wow--surface-image .hero-wow__sub,
.hero-wow--surface-image .hero-wow__eyebrow {
  color: rgba(248, 250, 252, 0.9);
}

.hero-wow--with-backdrop.hero-wow--surface-white,
.hero-wow--with-backdrop.hero-wow--surface-light,
.hero-wow--with-backdrop.hero-wow--surface-dark,
.hero-wow--with-backdrop.hero-wow--surface-gradient {
  background: transparent;
  color: #f8fafc;
}

.hero-wow--with-backdrop .hero-wow__sub,
.hero-wow--with-backdrop .hero-wow__eyebrow {
  color: rgba(248, 250, 252, 0.9);
}

.hero-wow__eyebrow {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6366f1;
  opacity: 0.92;
}

.hero-wow--surface-dark .hero-wow__eyebrow,
.hero-wow--surface-gradient .hero-wow__eyebrow,
.hero-wow--with-backdrop .hero-wow__eyebrow {
  color: #a5b4fc;
}

.hero-wow__title {
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  max-width: 22ch;
  text-shadow: 0 4px 44px rgba(0, 0, 0, 0.52);
}

.hero-wow--surface-white .hero-wow__title,
.hero-wow--surface-light .hero-wow__title {
  text-shadow: none;
}

.hero-wow--layout-centered .hero-wow__title,
.hero-wow--layout-centered .hero-wow__sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-wow--layout-centered .hero-wow__title {
  max-width: 18ch;
  text-align: center;
}

.hero-wow--layout-centered .hero-wow__eyebrow {
  text-align: center;
}

/* Grounded copy stack — same anchor idea as ui-hero panel */
.hero-wow__panel {
  box-sizing: border-box;
  max-width: min(600px, 100%);
  width: 100%;
  padding: clamp(26px, 3.6vw, 36px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1600px) {
  .hero-wow__panel {
    max-width: min(640px, 100%);
    background: rgba(0, 0, 0, 0.62);
  }

  .hero-wow--surface-white .hero-wow__panel,
  .hero-wow--surface-light .hero-wow__panel {
    background: rgba(255, 255, 255, 0.94);
  }

  .hero-wow--surface-dark:not(.hero-wow--with-backdrop) .hero-wow__panel,
  .hero-wow--surface-gradient:not(.hero-wow--with-backdrop) .hero-wow__panel {
    background: rgba(0, 0, 0, 0.62);
  }
}

.hero-wow--surface-white .hero-wow__panel,
.hero-wow--surface-light .hero-wow__panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-wow--surface-dark:not(.hero-wow--with-backdrop) .hero-wow__panel,
.hero-wow--surface-gradient:not(.hero-wow--with-backdrop) .hero-wow__panel {
  background: rgba(0, 0, 0, 0.58);
  border-color: rgba(255, 255, 255, 0.15);
}

/* In-panel type: headline pure white, body muted (dark glass panels only) */
.hero-wow__panel .hero-wow__title {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-wow--surface-white .hero-wow__panel .hero-wow__title,
.hero-wow--surface-light .hero-wow__panel .hero-wow__title {
  color: #020617;
  text-shadow: none;
}

.hero-wow__panel .hero-wow__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero-wow--surface-white .hero-wow__panel .hero-wow__eyebrow,
.hero-wow--surface-light .hero-wow__panel .hero-wow__eyebrow {
  color: #6366f1;
  opacity: 0.92;
}

.hero-wow__copy--centered .hero-wow__panel {
  margin-left: auto;
  margin-right: auto;
}

.hero-wow--layout-split_right .hero-wow__panel {
  max-width: 100%;
  margin-right: auto;
}

.hero-wow--layout-split_left .hero-wow__panel {
  max-width: 100%;
  margin-left: auto;
}

.hero-wow__sub {
  margin: clamp(22px, 3vh, 32px) 0 0;
  font-size: clamp(1.05rem, 1.85vw, 1.22rem);
  line-height: 1.65;
  font-weight: 500;
  color: #475569;
  max-width: 42ch;
}

.hero-wow--surface-dark .hero-wow__sub,
.hero-wow--surface-gradient .hero-wow__sub,
.hero-wow--surface-image .hero-wow__sub,
.hero-wow--with-backdrop .hero-wow__sub {
  color: rgba(255, 255, 255, 0.8);
}

.hero-wow__panel .hero-wow__sub {
  color: rgba(255, 255, 255, 0.8);
}

.hero-wow--surface-white .hero-wow__panel .hero-wow__sub,
.hero-wow--surface-light .hero-wow__panel .hero-wow__sub {
  color: #475569;
}

.hero-wow--layout-centered .hero-wow__sub {
  text-align: center;
}

.hero-wow__copy--centered {
  text-align: center;
}

.hero-wow__copy--centered .hero-wow__ctas {
  justify-content: center;
}

.hero-wow__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: clamp(10px, 1.8vh, 18px);
}

.hero-wow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 17px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.0825rem;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.hero-wow__btn--primary {
  background: var(--tenant-primary-color, #2563eb);
  color: #fff !important;
  min-height: 60px;
  padding: 18px 40px;
  font-size: 1.125rem;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22) inset,
    0 14px 36px rgba(0, 0, 0, 0.32);
}

.hero-wow__btn--primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28) inset,
    0 18px 44px rgba(0, 0, 0, 0.36);
  color: #fff !important;
}

.hero-wow__btn--primary:focus-visible {
  outline: 3px solid rgba(248, 250, 252, 0.95);
  outline-offset: 3px;
}

.hero-wow__btn--secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: none;
  font-weight: 700;
}

.hero-wow--surface-white .hero-wow__btn--secondary,
.hero-wow--surface-light .hero-wow__btn--secondary {
  background: #ffffff;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.hero-wow--surface-white .hero-wow__btn--secondary:hover,
.hero-wow--surface-light .hero-wow__btn--secondary:hover {
  transform: translateY(-2px);
  color: #0f172a !important;
}

.hero-wow__btn--secondary:focus-visible {
  outline: 3px solid rgba(248, 250, 252, 0.9);
  outline-offset: 3px;
}

.hero-wow--surface-white .hero-wow__btn--secondary:focus-visible,
.hero-wow--surface-light .hero-wow__btn--secondary:focus-visible {
  outline-color: rgba(2, 6, 23, 0.75);
}

.hero-wow--surface-dark .hero-wow__btn--secondary,
.hero-wow--surface-gradient .hero-wow__btn--secondary {
  color: #f8fafc !important;
  border-color: rgba(248, 250, 252, 0.35);
}

.hero-wow__media {
  min-width: 0;
  align-self: stretch;
}

.hero-wow__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: min(520px, 58vh);
  border-radius: 18px;
  display: block;
  object-fit: cover;
  object-position: center 35%;
}

.hero-wow__img--rounded {
  max-height: none;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wow__media--below {
  margin-top: 8px;
}

.hero-wow__media-placeholder {
  aspect-ratio: 4 / 3;
  max-height: min(520px, 58vh);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  background: linear-gradient(150deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #312e81;
}

.hero-wow__media-placeholder--wide {
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 0 auto;
}

.hero-wow__ph-title {
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-wow__ph-hint {
  font-size: 0.92rem;
  font-weight: 600;
  max-width: 40ch;
  line-height: 1.45;
  opacity: 0.88;
}

.hero-wow__edit-hint {
  margin: 20px 0 0;
  font-size: 0.8rem;
  color: rgba(100, 116, 139, 0.95);
  max-width: 40ch;
}

.hero-wow--with-backdrop .hero-wow__edit-hint {
  color: rgba(226, 232, 240, 0.75);
}

@media (min-width: 1600px) {
  .hero-wow__inner {
    max-width: min(1320px, 92vw);
  }

  .hero-wow__title {
    font-size: clamp(3.15rem, 4vw, 4.35rem);
  }
}

@media (min-width: 1920px) {
  .hero-wow__inner {
    max-width: min(1440px, 88vw);
    padding-left: clamp(24px, 2.5vw, 56px);
    padding-right: clamp(24px, 2.5vw, 56px);
  }

  .hero-wow__grid {
    gap: clamp(28px, 3vw, 48px);
  }
}

/* toolbar popovers */
.frs-hero-wow-panel {
  position: fixed;
  z-index: 99998;
  min-width: 260px;
  max-width: min(360px, 92vw);
  padding: 14px 16px;
  border-radius: 14px;
  background: #0f172a;
  color: #e2e8f0;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.frs-hero-wow-panel h4 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.frs-hero-wow-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frs-hero-wow-actions button {
  appearance: none;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.frs-hero-wow-actions button:hover {
  background: rgba(51, 65, 85, 0.95);
  border-color: rgba(148, 163, 184, 0.55);
}

.frs-hero-wow-actions button.frs-hero-wow-actions--active {
  border-color: #818cf8;
  background: rgba(79, 70, 229, 0.25);
}

.frs-hero-wow-field {
  margin-top: 10px;
}

.frs-hero-wow-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
}

.frs-hero-wow-field input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 8px 10px;
  font-size: 0.85rem;
  background: #020617;
  color: #f8fafc;
}

/* ========== Rental Grid (catalog / money section) ========== */
.rental-grid {
  width: 100%;
  padding: clamp(72px, 10vw, 120px) 0;
  box-sizing: border-box;
}

.rental-grid__inner {
  max-width: min(1320px, 94vw);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 32px);
}

.rental-grid--surface-white {
  background: #fff;
  color: #0f172a;
}

.rental-grid--surface-light {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: #0f172a;
}

.rental-grid--surface-dark {
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: #f8fafc;
}

.rental-grid--surface-dark .rental-grid__sub,
.rental-grid--surface-dark .rental-grid__desc,
.rental-grid--surface-dark .rental-grid__link-edit {
  color: rgba(226, 232, 240, 0.88);
}

.rental-grid--surface-dark .rental-grid__price {
  color: #a5b4fc;
}

.rental-grid__intro {
  margin-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.rental-grid__heading {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
}

.rental-grid__sub {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.55;
  color: #64748b;
}

.rental-grid--surface-dark .rental-grid__sub {
  color: rgba(148, 163, 184, 0.95);
}

.rental-grid__builder-bar {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.rental-grid__add-item {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  background: var(--tenant-primary-color, #2563eb);
  color: #fff;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 38%, rgba(0, 0, 0, 0.12));
}

.rental-grid__builder-hint {
  font-size: 0.78rem;
  color: #94a3b8;
  max-width: 36ch;
  text-align: left;
  line-height: 1.4;
}

.rental-grid__grid {
  display: grid;
  gap: clamp(26px, 3.2vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

/* Optional: slightly wider minimum when the block requests fewer columns */
.rental-grid--cols-2 .rental-grid__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.rental-grid--has-featured .rental-grid__card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .rental-grid--has-featured .rental-grid__card--featured {
    grid-column: span 2;
  }
}

.rental-grid__card {
  position: relative;
  background: var(--frs-surface-card, rgba(255, 255, 255, 0.98));
  border-radius: var(--frs-radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--frs-shadow-card, 0 4px 14px rgba(15, 23, 42, 0.08));
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: transform var(--frs-motion-standard, 0.2s ease), box-shadow var(--frs-motion-standard, 0.2s ease);
}

.rental-grid--surface-dark .rental-grid__card {
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.rental-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--frs-shadow-float, 0 18px 40px rgba(15, 23, 42, 0.14));
}

.rental-grid--surface-dark .rental-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.rental-grid__card-chrome {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: calc(100% - 20px);
}

.rental-grid__chip {
  appearance: none;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  line-height: 1;
}

.rental-grid__chip--danger {
  background: rgba(185, 28, 28, 0.92);
}

.rental-grid__media {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.rental-grid__img,
.rental-grid__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: clamp(220px, 32vw, 340px);
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rental-grid__card:hover .rental-grid__img,
.rental-grid__card:hover .rental-grid__img-placeholder {
  transform: scale(1.05);
}

.rental-grid__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  box-sizing: border-box;
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #475569;
  font-weight: 700;
  font-size: 0.95rem;
}

.rental-grid--surface-dark .rental-grid__img-placeholder {
  background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;
}

.rental-grid__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.88);
  color: #f8fafc;
}

.rental-grid__badge--ghost {
  background: rgba(79, 70, 229, 0.35);
  color: #312e81;
  border: 1px dashed rgba(79, 70, 229, 0.5);
}

.rental-grid--surface-dark .rental-grid__badge--ghost {
  color: #e0e7ff;
  border-color: rgba(199, 210, 254, 0.45);
}

.rental-grid__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.88) 0%, rgba(15, 23, 42, 0.2) 55%, transparent 100%);
  pointer-events: none;
}

.rental-grid__overlay .rental-grid__btn {
  pointer-events: auto;
  align-self: flex-start;
}

.rental-grid__title--overlay {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.rental-grid__price--overlay {
  margin: 0 0 12px;
  color: rgba(226, 232, 240, 0.95);
  font-weight: 700;
  font-size: 0.95rem;
}

.rental-grid__body {
  padding: 20px 22px 24px;
}

.rental-grid__body--minimal {
  padding: 16px 18px 20px;
}

.rental-grid__body--overlay-edit {
  padding: 12px 18px 18px;
}

.rental-grid__title {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.rental-grid--surface-dark .rental-grid__title {
  color: #f8fafc;
}

.rental-grid__price {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--tenant-primary-color, #2563eb);
}

.rental-grid__desc {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
}

.rental-grid__link-edit {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
  word-break: break-all;
}

.rental-grid__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rental-grid__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--frs-btn-pad-y, 0.875rem) var(--frs-btn-pad-x, 1.625rem);
  border-radius: var(--frs-btn-radius, 10px);
  font-weight: var(--frs-btn-font-weight, 700);
  font-size: var(--frs-btn-font-size, 1rem);
  text-decoration: none;
  background: var(--tenant-primary-color, #2563eb);
  color: #fff !important;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 28%, rgba(15, 23, 42, 0.12));
  transition: transform var(--frs-motion-standard, 0.2s ease), box-shadow var(--frs-motion-standard, 0.2s ease), filter var(--frs-motion-standard, 0.2s ease);
}

.rental-grid__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 34%, rgba(15, 23, 42, 0.14));
  color: #fff !important;
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .rental-grid__btn {
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.26);
  }
  .rental-grid__btn:hover {
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
  }
}

.rental-grid__btn--overlay {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.rental-grid__btn--mini {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.rental-grid__media--minimal .rental-grid__cta-float {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.75), transparent);
  pointer-events: none;
  z-index: 4;
}

.rental-grid__media--minimal .rental-grid__cta-float .rental-grid__btn {
  pointer-events: auto;
}

.rental-grid__media--minimal:hover .rental-grid__cta-float {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .rental-grid__media--minimal .rental-grid__cta-float {
    opacity: 1;
    transform: none;
    position: relative;
    background: transparent;
    padding-top: 0;
    pointer-events: auto;
  }
}

.rental-grid__card--featured .rental-grid__img,
.rental-grid__card--featured .rental-grid__img-placeholder {
  aspect-ratio: 16 / 9;
  min-height: clamp(240px, 36vw, 400px);
}

@media (min-width: 1024px) {
  .rental-grid__card--featured .rental-grid__img,
  .rental-grid__card--featured .rental-grid__img-placeholder {
    max-height: 440px;
  }
}

.rental-grid__empty {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
  font-weight: 600;
}

.rental-grid__empty--edit {
  max-width: 52ch;
  margin: 1.5rem auto 0;
  padding: 1.35rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(14, 165, 233, 0.07));
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #0f172a;
  line-height: 1.55;
  font-weight: 600;
}

.rental-grid__empty--edit p {
  margin: 0;
}

.rental-grid--surface-dark .rental-grid__empty--edit {
  color: #e2e8f0;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.14), rgba(14, 165, 233, 0.1));
  border-color: rgba(52, 211, 153, 0.4);
}

/* Toolbar popovers (rental grid) */
.frs-rental-grid-panel {
  position: fixed;
  z-index: 99998;
  min-width: 260px;
  max-width: min(380px, 92vw);
  padding: 14px 16px;
  border-radius: 14px;
  background: #0f172a;
  color: #e2e8f0;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.frs-rental-grid-panel h4 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.frs-rental-grid-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frs-rental-grid-actions button {
  appearance: none;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  color: #f8fafc;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.frs-rental-grid-actions button:hover {
  background: rgba(51, 65, 85, 0.95);
  border-color: rgba(148, 163, 184, 0.55);
}

.frs-rental-grid-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.frs-rental-grid-cols button {
  text-align: center;
  padding: 12px 8px;
}

.rental-grid__dynamic-cta-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.rental-grid__builder-hint--inv {
  display: block;
  margin-top: 10px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.rental-grid__empty--dynamic {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1rem;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.22);
  color: #312e81;
}

.rental-grid--surface-dark .rental-grid__empty--dynamic {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(165, 180, 252, 0.35);
  color: #e0e7ff;
}

/* ---- Custom / Embed section: scope third-party markup; placeholders in builder ---- */
.frs-custom-embed {
  min-height: 1.5rem;
}

.builder-root .frs-custom-embed {
  contain: content;
}

.frs-builder-embed-note {
  margin: 0 0 0.85rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}

.frs-custom-embed-title {
  margin-bottom: 0.75rem;
}

.frs-embed-placeholder {
  margin: 0.5rem 0;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 2px dashed #94a3b8;
  background: #f8fafc;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

/* ========== Real-business builder sections (rental storefront flow) ========== */

.wb-biz-book-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 72vh, 820px);
  display: flex;
  align-items: stretch;
  color: #f8fafc;
}

.wb-biz-book-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: #1e293b;
}

.wb-biz-book-hero__bg--empty {
  background-image: linear-gradient(135deg, #0f172a 0%, #334155 55%, #0f172a 100%) !important;
}

.wb-biz-book-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(15, 23, 42, 0.25) 100%);
}

.wb-biz-book-hero__inner {
  position: relative;
  z-index: 2;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.wb-biz-book-hero__kicker {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.82);
}

.wb-biz-book-hero__headline {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 18ch;
}

.wb-biz-book-hero__sub {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.9);
  font-weight: 600;
}

.wb-biz-book-hero__form {
  margin-top: 0.5rem;
}

.wb-biz-book-hero__fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.12);
  border: 1px solid rgba(248, 250, 252, 0.22);
  backdrop-filter: blur(10px);
  max-width: 720px;
}

.wb-biz-book-hero__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
  flex: 1 1 160px;
}

.wb-biz-book-hero__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.78);
}

.wb-biz-book-hero__optional {
  font-weight: 600;
  opacity: 0.75;
  text-transform: none;
  letter-spacing: 0;
}

.wb-biz-book-hero__input {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 11px 12px;
  font: inherit;
  font-weight: 650;
  color: #0f172a;
  background: #fff;
}

.wb-biz-book-hero__submit {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
  font-size: 0.95rem;
  background: var(--tenant-primary-color, #2563eb);
  color: #fff;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 38%, rgba(0, 0, 0, 0.12));
  flex: 0 0 auto;
  align-self: stretch;
}

.wb-biz-book-hero__submit:hover {
  filter: brightness(1.06);
}

.wb-biz-book-hero__secondary {
  margin-top: 0.25rem;
  font-weight: 800;
  color: rgba(248, 250, 252, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  max-width: max-content;
}

/* Rental categories — square tile grid */
.wb-biz-rental-cats {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #f8fafc;
}

.wb-biz-rental-cats__intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.wb-biz-rental-cats__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.wb-biz-rental-cats__lede {
  margin: 0;
  color: #475569;
  font-weight: 600;
  line-height: 1.55;
  font-size: 1.05rem;
}

.wb-biz-rental-cats__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

@media (min-width: 1100px) {
  .wb-biz-rental-cats__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .wb-biz-rental-cats__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wb-biz-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wb-biz-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.wb-biz-cat-card--date {
  border-color: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 35%, transparent);
}

.wb-biz-cat-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e2e8f0;
}

.wb-biz-cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wb-biz-cat-card__label {
  padding: 14px 16px 4px;
  font-weight: 900;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.wb-biz-cat-card__hint {
  padding: 0 16px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--tenant-primary-color, #2563eb);
}

/* Trust / benefits */
.wb-biz-trust {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background: #fff;
}

.wb-biz-trust__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wb-biz-trust__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.wb-biz-trust__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #0f172a;
}

.wb-biz-trust__sub {
  margin: 0;
  color: #475569;
  font-weight: 600;
  line-height: 1.55;
}

.wb-biz-trust__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.wb-biz-trust__card {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.wb-biz-trust__icon {
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 10px;
}

.wb-biz-trust__card-title {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 900;
  color: #0f172a;
}

.wb-biz-trust__card-text {
  margin: 0;
  color: #475569;
  line-height: 1.55;
  font-size: 0.96rem;
}

/* Video story wrapper: breathing room */
.wb-biz-video-story {
  margin: 0;
}

.wb-biz-video-story .section--split-video {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

/* How it works */
.wb-biz-steps {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.wb-biz-steps__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.wb-biz-steps__head {
  text-align: center;
  margin-bottom: 2rem;
}

.wb-biz-steps__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #0f172a;
}

.wb-biz-steps__sub {
  margin: 0 auto;
  max-width: 56ch;
  color: #475569;
  font-weight: 600;
  line-height: 1.55;
}

.wb-biz-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .wb-biz-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.wb-biz-steps__item {
  display: flex;
  gap: 14px;
  padding: 1.25rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.wb-biz-steps__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tenant-primary-color, #2563eb);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

.wb-biz-steps__item-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
}

.wb-biz-steps__item-text {
  margin: 0;
  color: #475569;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Reviews */
.wb-biz-reviews {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background: #0f172a;
  color: #e2e8f0;
}

.wb-biz-reviews__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.wb-biz-reviews__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93c5fd;
}

.wb-biz-reviews__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 900;
  color: #f8fafc;
}

.wb-biz-reviews__sub {
  margin: 14px 0 0;
  color: #94a3b8;
  font-weight: 600;
  line-height: 1.55;
}

.wb-biz-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.wb-biz-reviews__card {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.wb-biz-reviews__stars {
  margin-bottom: 10px;
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1rem;
}

.wb-biz-reviews__quote {
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.6;
  color: #f1f5f9;
}

.wb-biz-reviews__author {
  font-weight: 900;
  color: #f8fafc;
}

.wb-biz-reviews__event {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* CTA banner */
.wb-biz-cta-banner {
  --wb-cta-banner-bg: var(--tenant-primary-color, #1d4ed8);
  padding: clamp(2.75rem, 6vw, 4.5rem) 1.25rem;
  background: var(--wb-cta-banner-bg);
  color: #f8fafc;
  text-align: center;
}

.wb-biz-cta-banner--tone-dark {
  --wb-cta-banner-bg: #0f172a;
}

.wb-biz-cta-banner__inner {
  max-width: 760px;
  margin: 0 auto;
}

.wb-biz-cta-banner__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.wb-biz-cta-banner__body {
  margin: 0 auto 1.5rem;
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.92);
}

.wb-biz-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.wb-biz-cta-banner__btn:hover {
  filter: brightness(1.04);
}

.wb-biz-cta-banner__fine {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: rgba(248, 250, 252, 0.85);
  font-weight: 600;
}

/* --- Publishable fallbacks (no empty / broken states) --- */
.rental-grid__demofallback {
  margin-top: 1.25rem;
}

.rental-grid__demofallback-hint {
  max-width: 58ch;
  margin: 0 auto 1.25rem;
  text-align: center;
  font-weight: 700;
  color: #475569;
  line-height: 1.55;
  font-size: 0.95rem;
}

.rental-grid--surface-dark .rental-grid__demofallback-hint {
  color: #cbd5e1;
}

.rental-grid__demofallback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px;
}

.rental-grid__demofallback-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.rental-grid--surface-dark .rental-grid__demofallback-card {
  background: rgba(30, 41, 59, 0.65);
  border-color: rgba(148, 163, 184, 0.25);
}

.rental-grid__demofallback-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e2e8f0, #cbd5f5 45%, #e0e7ff);
}

.rental-grid--surface-dark .rental-grid__demofallback-media {
  background: linear-gradient(135deg, #334155, #1e293b);
}

.rental-grid__demofallback-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rental-grid__demofallback-title {
  font-weight: 900;
  font-size: 1.05rem;
  color: #0f172a;
}

.rental-grid--surface-dark .rental-grid__demofallback-title {
  color: #f8fafc;
}

.rental-grid__demofallback-meta {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
}

.rental-grid--surface-dark .rental-grid__demofallback-meta {
  color: #94a3b8;
}

.rental-grid__demofallback-price {
  color: var(--tenant-primary-color, #2563eb);
  font-weight: 800;
}

.wb-biz-reviews__sub--muted {
  color: #64748b;
}

.wb-biz-reviews__card--sample {
  position: relative;
  outline: 1px dashed rgba(148, 163, 184, 0.45);
  outline-offset: -4px;
}

.wb-biz-reviews__quote--sample {
  font-style: italic;
  opacity: 0.95;
}

.wb-biz-reviews__author--sample {
  font-weight: 800;
  color: #cbd5e1;
}

.wb-biz-reviews__sample-pill {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  background: rgba(15, 23, 42, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.wb-biz-trust__sub--muted {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
  color: #64748b;
  font-weight: 600;
  line-height: 1.55;
}

.wb-biz-trust__card--sample {
  position: relative;
  outline: 1px dashed rgba(148, 163, 184, 0.5);
  outline-offset: -3px;
}

.wb-biz-trust__card--sample .wb-biz-trust__icon {
  background: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 14%, transparent);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.wb-biz-trust__sample-pill {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.wb-biz-steps__item--sample .wb-biz-steps__badge {
  background: color-mix(in srgb, var(--tenant-primary-color, #2563eb) 18%, transparent);
  color: color-mix(in srgb, var(--tenant-primary-color, #1e40af) 85%, #0f172a);
}

.wb-biz-steps__item--sample {
  opacity: 0.98;
}

/* ---- Production rental site sections (friendlypartyrental-class) ---- */
.wb-pro-biz-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.wb-pro-biz-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px 16px;
}

.wb-pro-biz-header__brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.wb-pro-biz-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 200px;
}

.wb-pro-biz-header__logo {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wb-pro-biz-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wb-pro-biz-header__logo-fallback {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px;
  text-align: center;
  line-height: 1.15;
}

.wb-pro-biz-header__name {
  display: block;
  font-weight: 900;
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  letter-spacing: -0.028em;
  line-height: 1.18;
}

.wb-pro-biz-header__addr {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.88;
}

.wb-pro-biz-header__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  justify-content: flex-end;
}

.wb-pro-biz-header__phone {
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.wb-pro-biz-header__ghost {
  opacity: 0.75;
  font-style: italic;
  cursor: text;
}

.wb-pro-biz-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  background: var(--wb-header-cta, var(--tenant-primary-color, #fbbf24));
  color: #0f172a !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.wb-pro-biz-header__menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
}

.wb-pro-biz-header__menu-icon {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.wb-pro-biz-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wb-pro-biz-header__nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.94;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.wb-pro-biz-header__nav a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.wb-pro-biz-header__nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .wb-pro-biz-header__menu-btn {
    display: inline-flex;
  }
  .wb-pro-biz-header__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 0 4px;
  }
  .wb-pro-biz-header__nav.is-open {
    display: flex;
  }
}

/* Marketing hero — flagship band: shorter default height so first screen feels designed, not empty */
.wb-pro-mk-hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
  box-sizing: border-box;
  min-height: clamp(36vh, 48vh, 560px);
  display: flex;
  align-items: center;
}

/* Inner CMS (About, Contact, custom pages): first hero + story image read as editorial, not full-bleed home */
.tenant-page-sections.frs-inner-cms .wb-pro-mk-hero {
  min-height: clamp(200px, 30vh, 380px);
  padding: clamp(1.65rem, 4.5vw, 2.85rem) clamp(1rem, 3vw, 1.75rem);
}

.tenant-page-sections.frs-inner-cms .wb-pro-mk-hero--no-photo {
  min-height: clamp(180px, 26vh, 340px);
}

.tenant-page-sections.frs-inner-cms .wb-pro-mk-hero__headline {
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
}

.tenant-page-sections.frs-inner-cms .wb-pro-mk-hero__sub {
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.9vw, 1.15rem);
}

.tenant-page-sections.frs-inner-cms .section.section--editorial-split .editorial-visual,
.tenant-page-sections.frs-inner-cms .section.section--editorial-split .editorial-visual__img,
.tenant-page-sections.frs-inner-cms .section.section--editorial-split .editorial-visual__placeholder {
  min-height: min(240px, 34vh);
}

.wb-pro-mk-hero--no-photo {
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(ellipse 90% 70% at 85% 60%, rgba(167, 139, 250, 0.1), transparent 50%),
    linear-gradient(155deg, #1e293b 0%, #334155 42%, #0f172a 100%);
  color: #f8fafc;
  min-height: clamp(28vh, 38vh, 440px);
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}

.wb-pro-mk-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.wb-pro-mk-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(2, 6, 23, 0.82) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(15, 23, 42, 0.22) 100%
  );
}

.wb-pro-mk-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.wb-pro-mk-hero__kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.85);
}

.wb-pro-mk-hero__headline {
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.038em;
  line-height: 1.06;
  color: #f8fafc;
}

.wb-pro-mk-hero__sub {
  margin: 0 0 36px;
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  line-height: 1.58;
  font-weight: 600;
  color: rgba(241, 245, 249, 0.94);
  max-width: 54ch;
}

.wb-pro-mk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.wb-pro-mk-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--frs-btn-pad-y, 0.875rem) var(--frs-btn-pad-x, 1.625rem);
  border-radius: var(--frs-btn-radius, 10px);
  font-weight: var(--frs-btn-font-weight, 700);
  font-size: var(--frs-btn-font-size, 1rem);
  text-decoration: none;
  transition: filter var(--frs-motion-fast, 0.16s ease), transform var(--frs-motion-fast, 0.16s ease), box-shadow var(--frs-motion-fast, 0.16s ease);
}

.wb-pro-mk-hero__btn--primary {
  background: var(--tenant-primary-color, #3b82f6);
  color: #fff !important;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 30%, rgba(15, 23, 42, 0.1));
}

.wb-pro-mk-hero__btn--ghost {
  border: 2px solid rgba(248, 250, 252, 0.65);
  color: #f8fafc !important;
  background: rgba(15, 23, 42, 0.12);
}

.wb-pro-mk-hero__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .wb-pro-mk-hero__btn--primary {
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
  }
}

/* Service intro */
.wb-pro-service-intro {
  padding: clamp(2.75rem, 5vw, 4rem) 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.wb-pro-service-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.wb-pro-service-intro__eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tenant-primary-color, #2563eb);
}

.wb-pro-service-intro__title {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.wb-pro-service-intro__body {
  margin: 0 0 22px;
  color: #475569;
  font-weight: 600;
  line-height: 1.6;
  font-size: 1.05rem;
}

.wb-pro-service-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--frs-btn-pad-y, 0.875rem) var(--frs-btn-pad-x, 1.625rem);
  border-radius: var(--frs-btn-radius, 10px);
  background: var(--tenant-primary-color, #2563eb);
  color: #fff !important;
  font-weight: var(--frs-btn-font-weight, 700);
  font-size: var(--frs-btn-font-size, 1rem);
  text-decoration: none;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--tenant-primary-color, #2563eb) 28%, rgba(15, 23, 42, 0.08));
  transition: transform var(--frs-motion-fast, 0.16s ease), filter var(--frs-motion-fast, 0.16s ease), box-shadow var(--frs-motion-fast, 0.16s ease);
}

.wb-pro-service-intro__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Video layouts */
.frs-vfeat-inner--single .wb-pro-vfeat-single__title {
  margin-bottom: 12px;
}

.frs-vfeat-inner--single .frs-vfeat-single-stage {
  max-width: min(960px, 100%);
  margin-top: 8px;
}

.wb-pro-vfeat-duo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(14px, 3vw, 28px);
  align-items: start;
}

.wb-pro-vfeat-duo__cell .video-frame {
  border-radius: var(--frs-radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--frs-shadow-card, 0 4px 14px rgba(15, 23, 42, 0.08));
}

@media (min-width: 1200px) {
  .rental-grid--layout-standard .rental-grid__img,
  .rental-grid--layout-standard .rental-grid__img-placeholder {
    min-height: 360px;
  }
}

/* ---- SYSTEM 2: intro_text / text split layouts (content_block_layout) ---- */
.intro-split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .intro-split--image_right {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 42%);
  }
  .intro-split--image_left {
    grid-template-columns: minmax(240px, 42%) minmax(0, 1fr);
  }
  .intro-split--image_left .intro-split__text {
    order: 2;
  }
  .intro-split--image_left .intro-split__media {
    order: 1;
  }
}

.intro-split__media {
  min-width: 0;
}

.intro-split__img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  display: block;
}

.intro-split__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 650;
  border: 1px dashed rgba(51, 65, 85, 0.35);
}

.frs-text-split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .frs-text-split--image_right {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 40%);
  }
  .frs-text-split--image_left {
    grid-template-columns: minmax(220px, 40%) minmax(0, 1fr);
  }
  .frs-text-split--image_left .frs-text-split__text {
    order: 2;
  }
  .frs-text-split--image_left .frs-text-split__media {
    order: 1;
  }
}

.frs-text-split__img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
}

.frs-text-split__img--placeholder {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(51, 65, 85, 0.35);
  color: #64748b;
  font-weight: 650;
}

/* rental_categories cats_visual */
.wb-biz-rental-cats--rect .wb-biz-cat-card__img {
  aspect-ratio: 16 / 10;
}

.wb-biz-rental-cats--icon .wb-biz-cat-card__img {
  aspect-ratio: 1;
  max-width: 88px;
  margin: 12px auto 8px;
  border-radius: 999px;
}
