:root {
  --b2d-ink: #231142;
  --b2d-ink-2: #31165d;
  --b2d-night: #10071f;
  --b2d-pink: #d81b67;
  --b2d-coral: #f36b52;
  --b2d-orange: #ff9a32;
  --b2d-lavender: #eef2ff;
  --b2d-blush: #f6d1d4;
  --b2d-paper: #fffafd;
  --b2d-white: #ffffff;
  --b2d-muted: #6f6284;
  --b2d-line: rgba(49, 22, 93, 0.16);
  --b2d-shadow: 0 24px 70px rgba(49, 22, 93, 0.16);
  --b2d-radius: 26px;
  --b2d-max: 1520px;
  --b2d-gutter: 20px;
  --b2d-heading: "Oswald", "Arial Narrow", sans-serif;
  --b2d-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--b2d-ink);
  font-family: var(--b2d-body);
  background: var(--b2d-paper);
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.b2d-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--b2d-night);
  color: var(--b2d-white);
  padding: 10px 14px;
  border-radius: 999px;
}

.b2d-skip-link:focus {
  transform: translateY(0);
}

.b2d-section {
  width: 100%;
  position: relative;
  overflow: clip;
}

.b2d-section__inner,
.b2d-site-header__inner {
  width: min(var(--b2d-max), calc(100% - (var(--b2d-gutter) * 2)));
  margin-inline: auto;
}

.b2d-elementor-page {
  width: 100%;
  min-height: 100vh;
}

.b2d-elementor-content,
.b2d-elementor-content > .elementor {
  width: 100%;
}

.b2d-elementor-content {
  margin: 0;
}

.b2d-elementor-template-canvas .b2d-elementor-page {
  background: var(--b2d-paper);
}

.b2d-elementor-template .elementor-section.elementor-section-boxed > .elementor-container,
.b2d-elementor-template .e-con-boxed > .e-con-inner {
  max-width: var(--b2d-max);
}

.b2d-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 12px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.b2d-site-header.is-scrolled,
.b2d-site-header.is-open {
  background: rgba(255, 250, 253, 0.9);
  box-shadow: 0 14px 40px rgba(49, 22, 93, 0.12);
  backdrop-filter: blur(18px);
}

.b2d-site-header__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.b2d-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.b2d-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(216, 27, 103, 0.2);
}

.b2d-logo span {
  display: grid;
  line-height: 1;
}

.b2d-logo strong {
  font-size: 0.72rem;
  color: var(--b2d-pink);
  text-transform: uppercase;
}

.b2d-primary-nav {
  position: fixed;
  inset: 82px var(--b2d-gutter) auto;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--b2d-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--b2d-shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.b2d-primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.b2d-primary-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 0 14px;
  color: var(--b2d-ink-2);
  font-weight: 800;
}

.b2d-primary-nav a:hover,
.b2d-primary-nav a:focus-visible {
  background: linear-gradient(90deg, rgba(216, 27, 103, 0.12), rgba(255, 154, 50, 0.14));
}

.b2d-menu-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 0;
  border: 0;
  border-radius: 50%;
  background: var(--b2d-night);
  color: var(--b2d-white);
  cursor: pointer;
}

.b2d-menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  grid-area: 1 / 1;
  background: currentColor;
  transition: transform 180ms ease;
}

.b2d-menu-toggle span:last-child {
  transform: translateY(7px);
}

.b2d-menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.b2d-menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.b2d-site-header .b2d-header-cta {
  display: none;
}

.b2d-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 58%, var(--b2d-orange));
  color: var(--b2d-white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(216, 27, 103, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.b2d-button:hover,
.b2d-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(216, 27, 103, 0.34);
}

.b2d-button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.b2d-button--ghost {
  background: rgba(255, 255, 255, 0.66);
  color: var(--b2d-ink-2);
  border: 1px solid rgba(49, 22, 93, 0.22);
  box-shadow: none;
}

.b2d-button--light {
  background: var(--b2d-white);
  color: var(--b2d-pink);
  box-shadow: 0 18px 44px rgba(16, 7, 31, 0.16);
}

.wp-block-button.b2d-button,
.wp-block-button.b2d-button--ghost,
.wp-block-button.b2d-button--light {
  min-height: 0;
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.wp-block-button.b2d-button:hover,
.wp-block-button.b2d-button:focus-visible,
.wp-block-button.b2d-button--ghost:hover,
.wp-block-button.b2d-button--ghost:focus-visible,
.wp-block-button.b2d-button--light:hover,
.wp-block-button.b2d-button--light:focus-visible {
  transform: none;
  box-shadow: none;
}

.wp-block-button.b2d-button .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 58%, var(--b2d-orange));
  color: var(--b2d-white);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(216, 27, 103, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wp-block-button.b2d-button .wp-block-button__link:hover,
.wp-block-button.b2d-button .wp-block-button__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(216, 27, 103, 0.34);
}

.wp-block-button.b2d-button--ghost .wp-block-button__link {
  border: 1px solid rgba(49, 22, 93, 0.22);
  background: rgba(255, 255, 255, 0.66);
  color: var(--b2d-ink-2);
  box-shadow: none;
}

.wp-block-button.b2d-button--light .wp-block-button__link {
  background: var(--b2d-white);
  color: var(--b2d-pink);
  box-shadow: 0 18px 44px rgba(16, 7, 31, 0.16);
}

.wp-block-button.b2d-hero__text-link {
  min-height: 0;
  display: inline-block;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.wp-block-button.b2d-hero__text-link .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--b2d-ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(216, 27, 103, 0.34);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  box-shadow: none;
}

.b2d-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(96px + env(safe-area-inset-top)) 0 34px;
  overflow: hidden;
  isolation: isolate;
  background: #fff7fb url("../images/hero-pepi-latin-poster.jpg") right center / cover no-repeat;
}

.b2d-classes::before,
.b2d-location::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 8% 20%, transparent 0 18px, rgba(89, 34, 159, 0.2) 19px 21px, transparent 22px 52px),
    repeating-radial-gradient(ellipse at 94% 88%, transparent 0 24px, rgba(216, 27, 103, 0.18) 25px 27px, transparent 28px 60px);
}

.b2d-hero__bg-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: none;
}

.b2d-hero__inner {
  min-height: calc(100svh - 128px);
  display: grid;
  align-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.b2d-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: 620px;
}

.b2d-kicker,
.b2d-section-heading p {
  margin: 0 0 14px;
  color: var(--b2d-pink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.b2d-hero h1,
.b2d-section-heading h2,
.b2d-location h2,
.b2d-final-cta h2 {
  margin: 0;
  max-width: 860px;
  color: var(--b2d-ink);
  font-family: var(--b2d-heading);
  font-size: 3.45rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.b2d-hero h1 {
  max-width: 610px;
  font-size: 4rem;
  line-height: 0.96;
}

.b2d-hero__lead {
  max-width: 460px;
  margin: 16px 0 0;
  color: #46365f;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 750;
}

.b2d-hero .b2d-kicker,
.b2d-hero h1,
.b2d-hero__lead,
a.b2d-hero__text-link,
.wp-block-button.b2d-hero__text-link .wp-block-button__link,
.b2d-hero__proof {
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.82);
}

.b2d-heart {
  display: inline-block;
  color: var(--b2d-pink);
  font-size: 1.25em;
  font-weight: 950;
  line-height: 0;
  transform: translateY(0.06em);
}

.b2d-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

a.b2d-hero__text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--b2d-ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(216, 27, 103, 0.34);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.b2d-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(49, 22, 93, 0.14);
}

.b2d-hero__proof span {
  display: grid;
  gap: 3px;
  color: var(--b2d-muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.15;
}

.b2d-hero__proof strong {
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-hero__visual {
  min-height: clamp(250px, 44svh, 380px);
  pointer-events: none;
}

.b2d-schedule {
  padding: 78px 0;
  background: var(--b2d-white);
}

.b2d-location__inner {
  display: grid;
  gap: 28px;
}

.b2d-location p,
.b2d-final-cta p {
  margin: 0;
  color: #4d3d62;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
}

.b2d-classes,
.b2d-pricing {
  padding: 78px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 154, 50, 0.18), transparent 30%),
    linear-gradient(180deg, #fff8fc, #edf1ff);
}

.b2d-section-heading {
  margin-bottom: 34px;
}

.b2d-section-heading--split {
  display: grid;
  gap: 16px;
  align-items: end;
}

.b2d-section-heading--split > p {
  margin: 0;
  max-width: 600px;
  color: #5d4f72;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.b2d-class-grid {
  display: grid;
  gap: 16px;
}

.b2d-class-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 28px;
  color: var(--b2d-white);
  position: relative;
  overflow: hidden;
}

.b2d-class-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 22%;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.b2d-class-card--pink { background: linear-gradient(145deg, #d81b67, #f36b52); }
.b2d-class-card--purple { background: linear-gradient(145deg, #31165d, #7434c5); }
.b2d-class-card--orange { background: linear-gradient(145deg, #ed6a3a, #ffae42); }
.b2d-class-card--dark { background: linear-gradient(145deg, #10071f, #301456); }

.b2d-class-card span,
.b2d-trainer-card span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.b2d-class-card h3 {
  margin: 26px 0 12px;
  font-family: var(--b2d-heading);
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-class-card p {
  margin: 0 0 22px;
  line-height: 1.6;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.b2d-class-card a {
  font-weight: 900;
  color: var(--b2d-white);
}

.b2d-schedule-layout {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.b2d-schedule-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.b2d-schedule-tabs::-webkit-scrollbar {
  display: none;
}

.b2d-schedule-tabs button {
  width: 100%;
  min-width: 74px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--b2d-line);
  border-radius: 999px;
  background: var(--b2d-white);
  color: var(--b2d-ink);
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.b2d-schedule-tabs button.is-active {
  background: var(--b2d-night);
  color: var(--b2d-white);
}

.b2d-day-panel {
  display: grid;
  gap: 12px;
}

.b2d-day-panel[hidden] {
  display: none;
}

.b2d-day-panel article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--b2d-line);
  border-radius: 20px;
  background: var(--b2d-paper);
}

.b2d-day-panel time {
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.b2d-day-panel h3 {
  margin: 0;
  font-size: 1rem;
}

.b2d-day-panel p {
  margin: 4px 0 0;
  color: var(--b2d-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.b2d-day-panel span,
.b2d-day-panel a {
  justify-self: start;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.b2d-day-panel span {
  background: #ffe0d4;
  color: #9d3d27;
}

.b2d-day-panel a {
  grid-column: 2;
  background: var(--b2d-ink);
  color: var(--b2d-white);
}

.b2d-pricing__inner {
  display: grid;
  gap: 24px;
}

.b2d-price-board {
  display: grid;
  gap: 16px;
}

.b2d-price-list {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--b2d-shadow);
}

.b2d-price-list h3 {
  margin: 0 0 12px;
  font-family: var(--b2d-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.b2d-price-list p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid var(--b2d-line);
}

.b2d-price-list strong {
  color: var(--b2d-pink);
  font-size: 1.12rem;
}

.b2d-price-list span {
  font-weight: 800;
}

.b2d-price-list em {
  display: inline-flex;
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--b2d-orange);
  color: var(--b2d-white);
  font-size: 0.72rem;
  font-style: normal;
}

.b2d-discounts {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(69, 37, 92, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 242, 255, 0.68)),
    url("../images/gradient-bg.jpeg") center / cover;
}

.b2d-discounts__header {
  display: grid;
  gap: 2px;
}

.b2d-discounts__header p {
  margin: 0;
  color: var(--b2d-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.b2d-discounts__header h3 {
  margin: 0;
  color: var(--b2d-night);
  font-family: var(--b2d-heading);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-discount-grid {
  display: grid;
  gap: 10px;
}

.b2d-discount-grid article {
  padding: 16px;
  border: 1px solid var(--b2d-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.b2d-discount-grid h4 {
  margin: 0 0 8px;
  color: var(--b2d-ink);
  font-size: 1rem;
}

.b2d-discount-grid ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2d-discount-grid li {
  color: var(--b2d-muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.b2d-reviews {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background: var(--b2d-white);
}

.b2d-reviews__title {
  margin: 0 0 30px;
  color: #111111;
  font-family: var(--b2d-body);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.b2d-google-summary {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 22px 24px;
  background: #f5f5f7;
}

.b2d-google-wordmark {
  display: inline-flex;
  align-items: center;
  color: #202124;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
}

.b2d-google-wordmark span:nth-child(1) { color: #4285f4; }
.b2d-google-wordmark span:nth-child(2) { color: #ea4335; }
.b2d-google-wordmark span:nth-child(3) { color: #fbbc05; }
.b2d-google-wordmark span:nth-child(4) { color: #4285f4; }
.b2d-google-wordmark span:nth-child(5) { color: #34a853; }
.b2d-google-wordmark span:nth-child(6) { color: #ea4335; }

.b2d-google-wordmark strong {
  margin-left: 4px;
  color: #111111;
  font-weight: 900;
}

.b2d-google-summary p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding-top: 10px;
  color: #5f6368;
  font-size: 0.9rem;
  font-weight: 700;
}

.b2d-google-summary p strong {
  color: #111111;
  font-size: 1.38rem;
  line-height: 1;
}

.b2d-google-summary p span,
.b2d-review-card__meta span {
  color: #fbbc05;
  letter-spacing: 0.02em;
}

.b2d-google-summary a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  background: #1a73e8;
  color: var(--b2d-white);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.b2d-review-slider {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.b2d-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84%;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.b2d-review-track::-webkit-scrollbar {
  display: none;
}

.b2d-review-card {
  height: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 10px;
  background: #f7f7f9;
  overflow: hidden;
  scroll-snap-align: start;
}

.b2d-review-card header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.b2d-review-card__avatar-wrap {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
}

.b2d-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.b2d-review-card__avatar-wrap > span {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid #f7f7f9;
  border-radius: 50%;
  background: var(--b2d-white);
  color: #4285f4;
  font-size: 0.7rem;
  font-weight: 950;
}

.b2d-review-card h3 {
  margin: 0;
  color: #1f2937;
  font-size: 0.98rem;
  font-weight: 900;
}

.b2d-review-card header p {
  margin: 3px 0 0;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 700;
}

.b2d-review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.82rem;
  font-weight: 800;
}

.b2d-review-card blockquote {
  margin: 0;
}

.b2d-review-card blockquote p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  margin: 0;
  color: #202124;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.b2d-trainers {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background:
    linear-gradient(180deg, #10071f 0%, #1a0b2e 54%, #08030f 100%);
  color: var(--b2d-white);
}

.b2d-trainers::before {
  content: "B2D TEAM";
  position: absolute;
  top: 34px;
  right: -16px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--b2d-heading);
  font-size: 5.8rem;
  line-height: 0.78;
  text-transform: uppercase;
  pointer-events: none;
}

.b2d-trainers .b2d-section-heading h2,
.b2d-trainers .b2d-section-heading--split > p {
  color: var(--b2d-white);
}

.b2d-trainers .b2d-section-heading p {
  color: var(--b2d-orange);
}

.b2d-trainer-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 78vw);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  margin-inline: calc(var(--b2d-gutter) * -1);
  padding: 4px var(--b2d-gutter) 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
}

.b2d-trainer-rail::-webkit-scrollbar {
  height: 8px;
}

.b2d-trainer-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.b2d-trainer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 560px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    #160a27;
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.26);
  scroll-snap-align: center;
}

.b2d-trainer-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.b2d-trainer-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.b2d-trainer-card span {
  color: var(--b2d-orange);
}

.b2d-trainer-card h3 {
  margin: 10px 0 12px;
  font-family: var(--b2d-heading);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.b2d-trainer-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.54;
}

.b2d-trainer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.b2d-trainer-card__meta small {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
}

.b2d-trainer-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-orange));
  color: var(--b2d-white);
  font-size: 0.86rem;
  font-weight: 900;
}

.b2d-trainer-card--featured {
  background:
    linear-gradient(160deg, rgba(216, 27, 103, 0.28), rgba(255, 128, 63, 0.12)),
    #160a27;
}

.b2d-services {
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 27, 103, 0.12), transparent 28%),
    radial-gradient(circle at 96% 28%, rgba(255, 154, 50, 0.16), transparent 30%),
    linear-gradient(180deg, #fffafd, #edf1ff);
}

.b2d-service-grid {
  display: grid;
  gap: 14px;
}

.b2d-service-card {
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  overflow: hidden;
  padding: 22px;
  border-radius: 28px;
  background: var(--b2d-night);
  color: var(--b2d-white);
  box-shadow: 0 22px 58px rgba(49, 22, 93, 0.14);
}

.b2d-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 7, 31, 0.24), rgba(16, 7, 31, 0.92)),
    var(--service-image, linear-gradient(145deg, #31165d, #d81b67));
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.b2d-service-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -30% 26%;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.b2d-service-card > * {
  position: relative;
  z-index: 1;
}

.b2d-service-card--private {
  --service-image: url("../images/instructors/instructor-lili-pilates.jpg");
}

.b2d-service-card--hall {
  --service-image: url("../images/gradient-bg.jpeg");
}

.b2d-service-card--birthday {
  --service-image: url("../images/promo-trick-treat.jpeg");
}

.b2d-service-card--corporate {
  --service-image: url("../images/brand-banner.jpeg");
}

.b2d-service-card--wedding {
  --service-image: url("../images/services/service-wedding-dance.jpg");
}

.b2d-service-card span,
.b2d-event-card span {
  color: var(--b2d-orange);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2d-service-card h3,
.b2d-event-card h3 {
  margin: 0;
  font-family: var(--b2d-heading);
  line-height: 0.98;
  text-transform: uppercase;
}

.b2d-service-card h3 {
  max-width: 420px;
  font-size: 2.35rem;
}

.b2d-service-card p {
  max-width: 460px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  line-height: 1.58;
}

.b2d-service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.b2d-service-card li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
}

.b2d-service-card a,
.b2d-event-card a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--b2d-white);
  color: var(--b2d-night);
  font-size: 0.88rem;
  font-weight: 950;
}

.b2d-show-programs {
  padding: 84px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 27, 103, 0.28), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(255, 154, 50, 0.2), transparent 28%),
    linear-gradient(145deg, var(--b2d-night), #2b1148 58%, #150821);
  color: var(--b2d-white);
}

.b2d-show-programs__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.b2d-show-programs__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.b2d-show-programs__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 36%, rgba(16, 7, 31, 0.84)),
    linear-gradient(120deg, rgba(216, 27, 103, 0.18), transparent 54%);
}

.b2d-show-programs__media--video::after {
  display: none;
}

.b2d-show-programs__preview-link {
  display: block;
  color: inherit;
}

.b2d-show-programs__media img,
.b2d-show-programs__media video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.b2d-show-programs__media video {
  display: block;
  background: var(--b2d-night);
}

.b2d-show-programs__video-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-orange));
  color: var(--b2d-white);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2d-show-programs__video-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid currentColor;
}

.b2d-show-programs__video-badge span {
  position: absolute;
  transform: translateY(28px);
}

.b2d-show-programs__copy {
  display: grid;
  justify-items: start;
}

.b2d-show-programs__copy .b2d-kicker {
  margin-bottom: 12px;
  color: var(--b2d-orange);
}

.b2d-show-programs h2,
.b2d-performance-hero h1,
.b2d-performance-media h2,
.b2d-performance-process h2 {
  margin: 0;
  font-family: var(--b2d-heading);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.b2d-show-programs h2 {
  max-width: 820px;
  font-size: 3rem;
}

.b2d-show-programs__copy > p:not(.b2d-kicker) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.58;
}

.b2d-show-programs__chips,
.b2d-performance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.b2d-show-programs__chips {
  margin-top: 22px;
}

.b2d-show-programs__chips span,
.b2d-performance-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 950;
}

.b2d-show-programs__chips span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.b2d-performance-hero {
  padding: 120px 0 84px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 154, 50, 0.17), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(216, 27, 103, 0.2), transparent 34%),
    linear-gradient(145deg, #fff7fb, #edf1ff);
}

.b2d-performance-hero__inner {
  display: grid;
  gap: 30px;
  align-items: center;
}

.b2d-performance-hero__copy {
  display: grid;
  justify-items: start;
}

.b2d-performance-hero h1 {
  max-width: 900px;
  color: var(--b2d-ink);
  font-size: 3.35rem;
}

.b2d-performance-hero__copy > p:not(.b2d-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4f4169;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.58;
}

.b2d-performance-hero__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  background: var(--b2d-night);
  box-shadow: var(--b2d-shadow);
}

.b2d-performance-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 0.92;
}

.b2d-performance-hero__visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(16, 7, 31, 0.78);
  color: var(--b2d-white);
  font-weight: 950;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}

.b2d-performance-overview,
.b2d-performance-process {
  padding: 84px 0;
  background: var(--b2d-night);
  color: var(--b2d-white);
}

.b2d-performance-strip {
  margin-bottom: 24px;
}

.b2d-performance-strip span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.b2d-performance-grid,
.b2d-performance-steps,
.b2d-performance-media-grid {
  display: grid;
  gap: 14px;
}

.b2d-performance-grid article,
.b2d-performance-steps article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.b2d-performance-grid span,
.b2d-performance-steps span {
  color: var(--b2d-orange);
  font-weight: 950;
}

.b2d-performance-grid h2,
.b2d-performance-steps h3 {
  margin: 16px 0 0;
  font-family: var(--b2d-heading);
  line-height: 1;
  text-transform: uppercase;
}

.b2d-performance-grid h2 {
  font-size: 2.2rem;
}

.b2d-performance-steps h3 {
  font-size: 1.8rem;
}

.b2d-performance-grid p,
.b2d-performance-steps p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
  line-height: 1.58;
}

.b2d-performance-media {
  padding: 84px 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 27, 103, 0.12), transparent 28%),
    linear-gradient(180deg, #fffafd, #edf1ff);
}

.b2d-performance-media-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--b2d-line);
  border-radius: 28px;
  background: var(--b2d-white);
  box-shadow: 0 18px 50px rgba(49, 22, 93, 0.1);
}

.b2d-performance-media-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.b2d-performance-media-grid figcaption {
  padding: 16px 18px 18px;
  color: var(--b2d-ink);
  font-weight: 950;
}

.b2d-performance-editor-content {
  border: 1px solid var(--b2d-line);
  border-radius: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(49, 22, 93, 0.1);
}

.b2d-performance-editor-content > *:first-child {
  margin-top: 0;
}

.b2d-performance-editor-content > *:last-child {
  margin-bottom: 0;
}

.b2d-performance-editor-content .wp-block-video,
.b2d-performance-editor-content .wp-block-embed,
.b2d-performance-editor-content .wp-block-gallery {
  margin: 0 0 18px;
}

.b2d-performance-editor-content iframe,
.b2d-performance-editor-content video {
  width: 100%;
  border: 0;
  border-radius: 24px;
}

.b2d-events {
  padding: 84px 0;
  background: var(--b2d-white);
}

.b2d-event-grid {
  display: grid;
  gap: 14px;
}

.b2d-event-card {
  overflow: hidden;
  border: 1px solid var(--b2d-line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 255, 0.9));
  box-shadow: 0 18px 50px rgba(49, 22, 93, 0.1);
}

.b2d-event-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.b2d-event-card div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.b2d-event-card h3 {
  color: var(--b2d-ink);
  font-size: 2.1rem;
}

.b2d-event-card p {
  margin: 0;
  color: #5d4f72;
  font-weight: 750;
  line-height: 1.55;
}

.b2d-event-card small {
  color: var(--b2d-pink);
  font-weight: 950;
}

.b2d-events__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.b2d-location {
  padding: 82px 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(238, 242, 255, 0.9)),
    url("../images/gradient-bg.jpeg") center / cover;
}

.b2d-location__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
}

.b2d-location__copy .b2d-kicker {
  margin-bottom: 0;
}

.b2d-location__copy p:not(.b2d-kicker) {
  max-width: 620px;
}

.b2d-location h2 span {
  display: block;
  white-space: nowrap;
}

.b2d-location__card {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--b2d-night), #432061);
  color: var(--b2d-white);
  box-shadow: var(--b2d-shadow);
}

.b2d-location__card--map {
  align-content: stretch;
  padding: 12px;
  overflow: hidden;
  border-radius: 28px;
}

.b2d-location__card--map iframe {
  width: 100%;
  min-height: 270px;
  aspect-ratio: 1 / 0.72;
  border: 0;
  border-radius: 24px;
  background: var(--b2d-lavender);
}

.b2d-location__details {
  display: grid;
  gap: 12px;
  padding: 22px 16px 16px;
}

.b2d-location__card span {
  color: var(--b2d-orange);
  font-family: var(--b2d-heading);
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-location__card strong {
  max-width: 560px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.b2d-location__card p {
  color: rgba(255, 255, 255, 0.72);
}

.b2d-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.b2d-location__card .b2d-contact-list a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--b2d-white);
  font-family: var(--b2d-body);
  font-size: 0.96rem;
  font-weight: 900;
}

.b2d-final-cta {
  padding: 86px 0;
  text-align: center;
  color: var(--b2d-white);
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 54%, var(--b2d-orange));
}

.b2d-final-cta h2,
.b2d-final-cta p {
  margin-inline: auto;
  color: var(--b2d-white);
}

.b2d-final-cta p {
  max-width: 650px;
  margin-top: 16px;
}

.b2d-final-cta .b2d-button {
  margin-top: 28px;
}

.b2d-footer {
  padding: 52px 0 calc(34px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 27, 103, 0.22), transparent 28%),
    linear-gradient(135deg, #11071f, #24103d 58%, #170922);
  color: var(--b2d-white);
}

.b2d-footer__inner {
  display: grid;
  gap: 32px;
}

.b2d-logo--footer {
  margin-bottom: 14px;
}

.b2d-footer .b2d-logo--footer span,
.b2d-show-programs-page .b2d-footer .b2d-logo--footer span {
  color: var(--b2d-white);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.12);
}

.b2d-footer .b2d-logo--footer strong,
.b2d-show-programs-page .b2d-footer .b2d-logo--footer strong {
  color: #ffb259;
}

.b2d-footer__brand {
  max-width: 360px;
}

.b2d-footer h3 {
  margin: 0 0 14px;
  color: var(--b2d-orange);
  font-family: var(--b2d-heading);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

.b2d-footer__nav,
.b2d-footer__contact,
.b2d-footer__social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.b2d-footer__nav a,
.b2d-footer__contact a,
.b2d-footer__social a {
  color: var(--b2d-white);
  font-weight: 900;
}

.b2d-footer__contact a:last-child {
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-orange));
  color: var(--b2d-white);
  box-shadow: 0 16px 32px rgba(216, 27, 103, 0.2);
}

.b2d-footer__social a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.b2d-footer__bottom {
  width: min(var(--b2d-max), calc(100% - (var(--b2d-gutter) * 2)));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .b2d-hero__bg-video {
    transition: none !important;
  }
}

@media (min-width: 680px) {
  :root {
    --b2d-gutter: 32px;
  }

  .b2d-schedule-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .b2d-schedule-tabs button {
    width: auto;
  }

  .b2d-hero h1,
  .b2d-section-heading h2,
  .b2d-location h2,
  .b2d-final-cta h2 {
    font-size: 4.8rem;
  }

  .b2d-class-grid,
  .b2d-price-board,
  .b2d-discount-grid,
  .b2d-service-grid,
  .b2d-event-grid,
  .b2d-performance-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-review-track {
    grid-auto-columns: clamp(280px, calc((100% - 20px) / 2), 360px);
  }

  .b2d-review-card {
    height: 310px;
  }

  .b2d-show-programs__inner,
  .b2d-performance-hero__inner {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .b2d-performance-hero__visual {
    order: 2;
  }

  .b2d-performance-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .b2d-event-card--large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .b2d-event-card--large img {
    height: 100%;
    aspect-ratio: auto;
  }

  .b2d-trainer-rail {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    margin-inline: 0;
    padding: 0;
    scroll-snap-type: none;
  }

  .b2d-trainer-card {
    scroll-snap-align: none;
  }

  .b2d-day-panel article {
    grid-template-columns: 82px minmax(0, 1fr) auto auto;
  }

  .b2d-day-panel a {
    grid-column: 4;
  }
}

@media (min-width: 1024px) {
  .b2d-hero {
    padding-top: 118px;
  }

  .b2d-hero__inner {
    grid-template-columns: 0.88fr 1.12fr;
    min-height: calc(100svh - 162px);
    gap: 48px;
  }

  .b2d-hero__copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .b2d-hero__visual {
    grid-column: 2;
    grid-row: 1;
    min-height: min(680px, calc(100svh - 170px));
  }

  .b2d-hero h1,
  .b2d-section-heading h2,
  .b2d-show-programs h2,
  .b2d-performance-hero h1,
  .b2d-performance-media h2,
  .b2d-performance-process h2,
  .b2d-location h2,
  .b2d-final-cta h2 {
    font-size: 6.2rem;
  }

  .b2d-hero h1 {
    font-size: clamp(5rem, 6vw, 6.2rem);
  }

  .b2d-hero__lead {
    font-size: 1.12rem;
  }

  .b2d-section-heading--split {
    grid-template-columns: 1fr 0.72fr;
  }

  .b2d-review-track {
    grid-auto-columns: clamp(270px, calc((100% - 60px) / 4), 380px);
  }

  .b2d-review-card {
    height: 270px;
  }

  .b2d-review-card blockquote p {
    -webkit-line-clamp: 6;
  }

  .b2d-class-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .b2d-service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .b2d-service-card {
    min-height: 340px;
  }

  .b2d-service-card--private,
  .b2d-service-card--hall {
    grid-column: span 3;
  }

  .b2d-service-card--birthday,
  .b2d-service-card--corporate,
  .b2d-service-card--wedding {
    grid-column: span 2;
    min-height: 290px;
  }

  .b2d-event-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .b2d-event-card--large {
    grid-column: span 2;
    grid-row: span 2;
    grid-template-columns: 1fr;
  }

  .b2d-show-programs__inner {
    grid-template-columns: minmax(420px, 0.78fr) minmax(520px, 1.22fr);
    gap: clamp(44px, 5vw, 82px);
  }

  .b2d-show-programs__media img {
    aspect-ratio: 1;
  }

  .b2d-performance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .b2d-event-card--large img {
    height: auto;
    aspect-ratio: 1.25;
  }

  .b2d-trainer-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .b2d-trainer-card {
    min-height: 540px;
  }

  .b2d-trainer-card--featured {
    grid-column: span 2;
  }

  .b2d-location {
    padding: 110px 0;
  }

  .b2d-location__inner {
    grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
    gap: clamp(44px, 5vw, 82px);
  }

  .b2d-location h2 {
    max-width: 760px;
    font-size: clamp(3.9rem, 5.6vw, 6rem);
  }

  .b2d-location__copy .b2d-actions {
    margin-top: 30px;
  }

  .b2d-location__card--map iframe {
    min-height: 320px;
    aspect-ratio: 16 / 9;
  }

  .b2d-location__details {
    padding: 24px 20px 20px;
  }

  .b2d-footer {
    padding-bottom: 44px;
  }

  .b2d-footer__inner {
    grid-template-columns: minmax(280px, 1.25fr) 0.72fr 0.9fr 0.72fr;
    align-items: start;
  }

}

@media (min-width: 1240px) {
  .b2d-site-header {
    padding: 18px 0;
  }

  .b2d-site-header__inner {
    gap: 18px;
  }

  .b2d-logo,
  .b2d-site-header .b2d-header-cta {
    flex: 0 0 auto;
  }

  .b2d-menu-toggle {
    display: none;
  }

  .b2d-site-header .b2d-header-cta {
    display: inline-flex;
    white-space: nowrap;
  }

  .b2d-primary-nav {
    position: static;
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .b2d-primary-nav a {
    min-height: 40px;
    padding: 0 clamp(7px, 0.58vw, 10px);
    font-size: clamp(0.86rem, 0.76vw, 0.9rem);
    white-space: nowrap;
  }
}

@media (min-width: 1440px) {
  .b2d-hero h1,
  .b2d-section-heading h2,
  .b2d-show-programs h2,
  .b2d-performance-hero h1,
  .b2d-performance-media h2,
  .b2d-performance-process h2,
  .b2d-final-cta h2 {
    font-size: 7.2rem;
  }

  .b2d-location h2 {
    font-size: 6rem;
  }

}

@media (max-width: 1023px) {
  .b2d-hero {
    min-height: 100svh;
    padding: calc(88px + env(safe-area-inset-top)) 0 28px;
    background-position: center top;
  }

  .b2d-hero__bg-video {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: clamp(260px, 42svh, 400px);
    object-fit: cover;
    object-position: right top;
  }

  .b2d-hero__inner {
    min-height: auto;
    align-content: start;
    gap: 0;
    padding-top: 18px;
  }

  .b2d-hero__visual {
    display: none;
  }

  .b2d-hero__copy {
    max-width: 620px;
  }
}

@media (max-width: 430px) {
  .b2d-hero h1,
  .b2d-section-heading h2,
  .b2d-show-programs h2,
  .b2d-performance-hero h1,
  .b2d-performance-media h2,
  .b2d-performance-process h2,
  .b2d-location h2,
  .b2d-final-cta h2 {
    font-size: 2.85rem;
  }

  .b2d-hero h1 {
    font-size: 3.08rem;
  }

  .b2d-logo span {
    display: none;
  }

  .b2d-hero {
    padding: calc(84px + env(safe-area-inset-top)) 0 24px;
  }

  .b2d-hero__visual {
    min-height: clamp(245px, 38svh, 320px);
  }

  .b2d-class-card h3,
  .b2d-service-card h3,
  .b2d-event-card h3,
  .b2d-performance-grid h2 {
    font-size: 1.85rem;
  }

  .b2d-google-summary {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .b2d-review-track {
    grid-auto-columns: 86%;
  }

  .b2d-review-card {
    height: 370px;
  }

  .b2d-review-card blockquote p {
    -webkit-line-clamp: 10;
  }

  .b2d-show-programs__video-badge {
    width: 68px;
    height: 68px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 430px) and (max-height: 760px) {
  .b2d-hero {
    padding: calc(84px + env(safe-area-inset-top)) 0 18px;
  }

  .b2d-hero__inner {
    min-height: auto;
    align-content: start;
    gap: 8px;
  }

  .b2d-hero__visual {
    min-height: clamp(190px, 28svh, 220px);
  }

  .b2d-hero h1 {
    font-size: 2.58rem;
    line-height: 0.95;
  }

  .b2d-hero__lead {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.32;
  }

  .b2d-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .b2d-hero__proof {
    margin-top: 14px;
    padding-top: 12px;
  }

  .b2d-hero__proof span {
    font-size: 0.72rem;
  }

  .b2d-hero__proof strong {
    font-size: 1.18rem;
  }

}

/* Show programs landing page */
.b2d-performance-page {
  background: #09030f;
  color: var(--b2d-white);
}

.b2d-performance-page .b2d-kicker {
  color: var(--b2d-orange);
}

.b2d-performance-page .b2d-section-heading h2,
.b2d-performance-page h1,
.b2d-performance-page h2,
.b2d-performance-page h3 {
  letter-spacing: 0;
}

.b2d-performance-hero-v2 {
  min-height: 92svh;
  padding: calc(126px + env(safe-area-inset-top)) 0 64px;
  overflow: hidden;
  isolation: isolate;
  background: #09030f;
}

.b2d-performance-hero-v2::before,
.b2d-performance-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.b2d-performance-hero-v2::before {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 154, 50, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(9, 3, 15, 0.96) 0%, rgba(9, 3, 15, 0.72) 34%, rgba(9, 3, 15, 0.38) 66%, rgba(9, 3, 15, 0.9) 100%);
}

.b2d-performance-hero-v2::after {
  opacity: 0.22;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(0,0,0,0.78) 100%);
  mix-blend-mode: screen;
}

.b2d-performance-hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.b2d-performance-hero-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.08) brightness(0.76);
  transform: scale(1.05);
}

.b2d-performance-hero-v2__inner {
  min-height: calc(92svh - 190px);
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  align-content: end;
}

.b2d-performance-hero-v2__copy {
  max-width: 1040px;
}

.b2d-performance-hero-v2 h1 {
  max-width: 980px;
  margin: 0;
  color: var(--b2d-white);
  font-family: var(--b2d-heading);
  font-size: clamp(3.35rem, 9vw, 8.7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.b2d-performance-hero-v2__copy > p:not(.b2d-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 760;
  line-height: 1.58;
}

.b2d-performance-hero-v2__panel {
  width: min(100%, 420px);
  align-self: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(16, 7, 31, 0.68);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.b2d-performance-hero-v2__panel span,
.b2d-performance-package-grid span,
.b2d-performance-show-grid span {
  color: var(--b2d-orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2d-performance-hero-v2__panel strong {
  display: block;
  margin-top: 10px;
  font-family: var(--b2d-heading);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.b2d-performance-hero-v2__panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
  line-height: 1.5;
}

.b2d-performance-proof {
  padding: 18px 0;
  background: linear-gradient(90deg, #09030f, #211039 50%, #09030f);
}

.b2d-performance-proof__grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.b2d-performance-proof__grid div {
  display: grid;
  gap: 5px;
  min-height: 110px;
  align-content: center;
  padding: 18px;
  background: rgba(9, 3, 15, 0.72);
}

.b2d-performance-proof__grid strong {
  color: var(--b2d-orange);
  font-family: var(--b2d-heading);
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-performance-proof__grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.b2d-performance-about,
.b2d-performance-styles,
.b2d-performance-media-v2 {
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(216, 27, 103, 0.12), transparent 28%),
    linear-gradient(180deg, #fffafd, #edf1ff);
  color: var(--b2d-ink);
}

.b2d-performance-about__inner {
  display: grid;
  gap: 26px;
  align-items: center;
}

.b2d-performance-about__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  background: var(--b2d-night);
  box-shadow: var(--b2d-shadow);
}

.b2d-performance-about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 7, 31, 0.68));
}

.b2d-performance-about__visual img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.b2d-performance-about__copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.b2d-performance-about h2,
.b2d-performance-styles h2,
.b2d-performance-shows h2,
.b2d-performance-packages h2,
.b2d-performance-media-v2 h2,
.b2d-performance-process-v2 h2,
.b2d-performance-cta-v2 h2 {
  margin: 0;
  font-family: var(--b2d-heading);
  font-size: clamp(3rem, 6.2vw, 6.9rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.b2d-performance-about__copy > p:not(.b2d-kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: #5d4f72;
  font-size: 1.04rem;
  font-weight: 760;
  line-height: 1.65;
}

.b2d-performance-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.b2d-performance-values span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--b2d-line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--b2d-ink);
  font-size: 0.84rem;
  font-weight: 950;
}

.b2d-performance-style-grid,
.b2d-performance-show-grid,
.b2d-performance-package-grid,
.b2d-performance-steps-v2,
.b2d-performance-media-v2__grid {
  display: grid;
  gap: 14px;
}

.b2d-performance-style-grid article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--b2d-night);
  color: var(--b2d-white);
  box-shadow: 0 20px 60px rgba(49, 22, 93, 0.16);
}

.b2d-performance-style-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(9, 3, 15, 0.9));
}

.b2d-performance-style-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.b2d-performance-style-grid div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.b2d-performance-style-grid span {
  display: block;
  color: var(--b2d-orange);
  font-family: var(--b2d-heading);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.b2d-performance-style-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 780;
  line-height: 1.48;
}

.b2d-performance-shows,
.b2d-performance-process-v2 {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 154, 50, 0.12), transparent 28%),
    linear-gradient(180deg, #09030f, #1b0a2e);
  color: var(--b2d-white);
}

.b2d-performance-shows .b2d-section-heading--split > p,
.b2d-performance-process-v2 .b2d-section-heading--split > p {
  color: rgba(255, 255, 255, 0.74);
}

.b2d-performance-show-grid article,
.b2d-performance-steps-v2 article {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
}

.b2d-performance-show-grid h3,
.b2d-performance-steps-v2 h3 {
  margin: 30px 0 0;
  color: var(--b2d-white);
  font-family: var(--b2d-heading);
  font-size: 2.15rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.b2d-performance-show-grid p,
.b2d-performance-steps-v2 p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
  line-height: 1.56;
}

.b2d-performance-packages {
  padding: 86px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 27, 103, 0.1), transparent 26%),
    linear-gradient(180deg, #fffafd, #f6eef7);
  color: var(--b2d-ink);
}

.b2d-performance-package-grid article {
  display: grid;
  min-height: 280px;
  align-content: start;
  border: 1px solid rgba(49, 22, 93, 0.14);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(49, 22, 93, 0.1);
}

.b2d-performance-package-grid h3 {
  margin: 18px 0 0;
  color: var(--b2d-ink);
  font-family: var(--b2d-heading);
  font-size: 2.3rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.b2d-performance-package-grid p {
  margin: 16px 0 0;
  color: #665979;
  font-weight: 760;
  line-height: 1.56;
}

.b2d-performance-package-grid strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-performance-media-v2__inner {
  display: grid;
  gap: 22px;
}

.b2d-performance-media-v2 .b2d-performance-editor-content {
  padding: 20px;
}

.b2d-performance-media-v2__grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 30px;
  background: var(--b2d-night);
  box-shadow: 0 20px 56px rgba(49, 22, 93, 0.14);
}

.b2d-performance-media-v2__grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 3, 15, 0.86));
}

.b2d-performance-media-v2__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.b2d-performance-media-v2__featured img {
  aspect-ratio: 1.35;
}

.b2d-performance-media-v2__grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--b2d-white);
  font-weight: 950;
  line-height: 1.35;
}

.b2d-performance-media-v2__grid figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--b2d-orange);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2d-performance-cta-v2 {
  padding: 92px 0;
  text-align: center;
  color: var(--b2d-white);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 55%, var(--b2d-orange));
}

.b2d-performance-cta-v2 h2,
.b2d-performance-cta-v2 p {
  margin-inline: auto;
  color: var(--b2d-white);
}

.b2d-performance-cta-v2 p:not(.b2d-kicker) {
  max-width: 660px;
  margin-top: 18px;
  font-size: 1.04rem;
  font-weight: 760;
  line-height: 1.62;
}

.b2d-performance-cta-v2 .b2d-button {
  margin-top: 28px;
}

@media (min-width: 680px) {
  .b2d-performance-proof__grid,
  .b2d-performance-show-grid,
  .b2d-performance-package-grid,
  .b2d-performance-steps-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-performance-style-grid,
  .b2d-performance-media-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-performance-media-v2__featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .b2d-performance-hero-v2__inner {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: end;
  }

  .b2d-performance-proof__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .b2d-performance-about__inner {
    grid-template-columns: minmax(420px, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(44px, 5vw, 86px);
  }

  .b2d-performance-style-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .b2d-performance-show-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .b2d-performance-package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .b2d-performance-media-v2__grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    align-items: stretch;
  }

  .b2d-performance-media-v2__featured {
    grid-column: auto;
    grid-row: span 2;
  }

  .b2d-performance-media-v2__featured img,
  .b2d-performance-media-v2__grid img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 430px) {
  .b2d-performance-hero-v2 {
    min-height: 760px;
    padding-top: calc(102px + env(safe-area-inset-top));
  }

  .b2d-performance-hero-v2__inner {
    min-height: 620px;
  }

  .b2d-performance-hero-v2 h1 {
    font-size: clamp(3.2rem, 15vw, 4.2rem);
    line-height: 0.88;
  }

  .b2d-performance-about h2,
  .b2d-performance-styles h2,
  .b2d-performance-shows h2,
  .b2d-performance-packages h2,
  .b2d-performance-media-v2 h2,
  .b2d-performance-process-v2 h2,
  .b2d-performance-cta-v2 h2 {
    font-size: clamp(2.65rem, 12vw, 3.2rem);
    line-height: 0.94;
  }

  .b2d-performance-proof__grid div,
  .b2d-performance-show-grid article,
  .b2d-performance-package-grid article,
  .b2d-performance-steps-v2 article {
    min-height: auto;
  }

  .b2d-performance-style-grid article,
  .b2d-performance-style-grid img {
    min-height: 360px;
  }
}

/* Editable Show Programs block pattern */
.b2d-performance-page > * {
  margin-block: 0;
}

.b2d-performance-page .wp-block-group__inner-container > *:first-child,
.b2d-performance-page .wp-block-cover__inner-container > *:first-child {
  margin-top: 0;
}

.b2d-performance-page .wp-block-group__inner-container > *:last-child,
.b2d-performance-page .wp-block-cover__inner-container > *:last-child {
  margin-bottom: 0;
}

.b2d-performance-page .wp-block-button.b2d-button {
  min-height: 0;
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.b2d-performance-page .wp-block-button.b2d-button:hover,
.b2d-performance-page .wp-block-button.b2d-button:focus-visible {
  transform: none;
  box-shadow: none;
}

.b2d-performance-page .wp-block-button.b2d-button .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 58%, var(--b2d-orange));
  color: var(--b2d-white);
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 16px 34px rgba(216, 27, 103, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.b2d-performance-page .wp-block-button.b2d-button .wp-block-button__link:hover,
.b2d-performance-page .wp-block-button.b2d-button .wp-block-button__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(216, 27, 103, 0.34);
}

.b2d-performance-page .wp-block-button.b2d-button--ghost .wp-block-button__link {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--b2d-white);
  box-shadow: none;
}

.b2d-performance-page .wp-block-button.b2d-button--light .wp-block-button__link {
  background: var(--b2d-white);
  color: var(--b2d-pink);
  box-shadow: 0 18px 44px rgba(16, 7, 31, 0.16);
}

.b2d-sp-hero {
  min-height: 100svh;
  padding: calc(126px + env(safe-area-inset-top)) 0 64px;
  overflow: hidden;
  isolation: isolate;
  background: #09030f;
}

.b2d-sp-hero::before,
.b2d-sp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.b2d-sp-hero::before {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 154, 50, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(9, 3, 15, 0.96) 0%, rgba(9, 3, 15, 0.72) 34%, rgba(9, 3, 15, 0.38) 66%, rgba(9, 3, 15, 0.9) 100%);
}

.b2d-sp-hero::after {
  opacity: 0.18;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(0,0,0,0.78) 100%);
  mix-blend-mode: screen;
}

.b2d-sp-hero .wp-block-cover__image-background {
  filter: saturate(0.95) contrast(1.08) brightness(0.76);
  transform: scale(1.04);
}

.b2d-sp-hero > .wp-block-cover__inner-container {
  width: min(var(--b2d-max), calc(100% - (var(--b2d-gutter) * 2)));
  position: relative;
  z-index: 2;
  margin-inline: auto;
}

.b2d-sp-hero__columns {
  display: grid;
  gap: 28px;
  align-items: end;
}

.b2d-sp-hero__columns.wp-block-columns {
  margin-bottom: 0;
}

.b2d-sp-hero__copy {
  min-width: 0;
}

.b2d-sp-hero h1,
.b2d-sp-hero__panel h2,
.b2d-sp-about h2,
.b2d-sp-styles h2,
.b2d-sp-programs h2,
.b2d-sp-packages h2,
.b2d-sp-process h2,
.b2d-sp-cta h2 {
  margin: 0;
  font-family: var(--b2d-heading);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.b2d-sp-hero h1 {
  max-width: 980px;
  color: var(--b2d-white);
  font-size: 3.35rem;
  line-height: 0.88;
}

.b2d-sp-hero__lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.58;
}

.b2d-sp-hero__panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(16, 7, 31, 0.68);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.b2d-sp-hero__panel h2 {
  color: var(--b2d-white);
  font-size: 2rem;
}

.b2d-sp-hero__panel p:not(.b2d-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
  line-height: 1.5;
}

.b2d-sp-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 18px max(var(--b2d-gutter), calc((100vw - var(--b2d-max)) / 2 + var(--b2d-gutter)));
  background: linear-gradient(90deg, #09030f, #211039 50%, #09030f);
}

.b2d-sp-proof.wp-block-columns {
  margin-bottom: 0;
}

.b2d-sp-proof > .wp-block-column {
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 3, 15, 0.72);
}

.b2d-sp-proof h3 {
  margin: 0;
  color: var(--b2d-orange);
  font-family: var(--b2d-heading);
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-sp-proof p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.b2d-sp-about,
.b2d-sp-styles {
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(216, 27, 103, 0.12), transparent 28%),
    linear-gradient(180deg, #fffafd, #edf1ff);
  color: var(--b2d-ink);
}

.b2d-sp-about__layout.wp-block-media-text {
  display: grid;
  gap: 26px;
  align-items: center;
}

.b2d-sp-about__layout .wp-block-media-text__media {
  overflow: hidden;
  border-radius: 34px;
  background: var(--b2d-night);
  box-shadow: var(--b2d-shadow);
}

.b2d-sp-about__layout .wp-block-media-text__media img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.b2d-sp-about__layout .wp-block-media-text__content {
  padding: 0;
}

.b2d-sp-about h2,
.b2d-sp-styles h2,
.b2d-sp-programs h2,
.b2d-sp-packages h2,
.b2d-sp-process h2,
.b2d-sp-cta h2 {
  font-size: 3rem;
}

.b2d-sp-about .wp-block-media-text__content > p:not(.b2d-kicker) {
  max-width: 660px;
  color: #5d4f72;
  font-size: 1.04rem;
  font-weight: 760;
  line-height: 1.65;
}

.b2d-sp-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.b2d-sp-chip-list li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--b2d-line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--b2d-ink);
  font-size: 0.84rem;
  font-weight: 950;
}

.b2d-performance-page .wp-block-group.b2d-section-heading--split {
  display: block;
}

.b2d-performance-page .wp-block-group.b2d-section-heading--split > .wp-block-group__inner-container {
  display: grid;
  gap: 16px;
  align-items: end;
}

.b2d-performance-page .b2d-section-heading--split > .wp-block-group__inner-container > p {
  margin: 0;
  max-width: 600px;
  color: #5d4f72;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.b2d-sp-programs .b2d-section-heading--split > .wp-block-group__inner-container > p,
.b2d-sp-process .b2d-section-heading--split > .wp-block-group__inner-container > p {
  color: rgba(255, 255, 255, 0.74);
}

.b2d-sp-card-grid,
.b2d-sp-program-layout,
.b2d-sp-format-grid {
  display: grid;
  gap: 14px;
}

.b2d-sp-card-grid.wp-block-columns,
.b2d-sp-program-layout.wp-block-columns,
.b2d-sp-format-grid.wp-block-columns {
  margin-bottom: 0;
}

.b2d-sp-card-grid > .wp-block-column,
.b2d-sp-program-layout > .wp-block-column,
.b2d-sp-format-grid > .wp-block-column {
  min-width: 0;
  margin: 0;
}

.b2d-sp-style-card {
  min-height: 360px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(49, 22, 93, 0.16);
}

.b2d-sp-style-card .wp-block-cover__image-background {
  filter: saturate(0.88) contrast(1.06);
}

.b2d-sp-style-card .wp-block-cover__inner-container,
.b2d-sp-video-card .wp-block-cover__inner-container {
  align-self: flex-end;
  padding: 20px;
}

.b2d-sp-style-card h3,
.b2d-sp-video-card h3,
.b2d-sp-format-card h3,
.b2d-sp-package-card h3,
.b2d-sp-step-card h3 {
  margin: 0;
  color: inherit;
  font-family: var(--b2d-heading);
  line-height: 0.95;
  text-transform: uppercase;
}

.b2d-sp-style-card h3 {
  color: var(--b2d-orange);
  font-size: 2rem;
}

.b2d-sp-style-card p,
.b2d-sp-video-card p:not(.b2d-kicker),
.b2d-sp-format-card p,
.b2d-sp-step-card p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
  line-height: 1.52;
}

.b2d-sp-programs,
.b2d-sp-process {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 154, 50, 0.12), transparent 28%),
    linear-gradient(180deg, #09030f, #1b0a2e);
  color: var(--b2d-white);
}

.b2d-sp-programs h2,
.b2d-sp-process h2 {
  color: var(--b2d-white);
}

.b2d-sp-video-card {
  min-height: 430px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.b2d-sp-video-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--b2d-pink), var(--b2d-orange));
  box-shadow: 0 18px 42px rgba(216, 27, 103, 0.24);
}

.b2d-sp-video-card::before {
  content: "";
  position: absolute;
  right: 48px;
  top: 48px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--b2d-white);
}

.b2d-sp-video-card h3 {
  max-width: 520px;
  color: var(--b2d-white);
  font-size: 2.3rem;
}

.b2d-sp-video-card p:not(.b2d-kicker) {
  max-width: 560px;
}

.b2d-sp-format-grid {
  grid-template-columns: 1fr;
}

.b2d-sp-format-card,
.b2d-sp-step-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
}

.b2d-sp-format-card > .wp-block-group__inner-container,
.b2d-sp-step-card > .wp-block-group__inner-container,
.b2d-sp-package-card > .wp-block-group__inner-container {
  display: grid;
  min-height: 100%;
}

.b2d-sp-format-card p:first-child,
.b2d-sp-step-card p:first-child,
.b2d-sp-package-card p:first-child {
  margin: 0 0 28px;
  color: var(--b2d-orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2d-sp-format-card h3,
.b2d-sp-step-card h3 {
  color: var(--b2d-white);
  font-size: 2rem;
}

.b2d-sp-packages {
  padding: 86px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 27, 103, 0.1), transparent 26%),
    linear-gradient(180deg, #fffafd, #f6eef7);
  color: var(--b2d-ink);
}

.b2d-sp-package-card {
  min-height: 280px;
  border: 1px solid rgba(49, 22, 93, 0.14);
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(49, 22, 93, 0.1);
}

.b2d-sp-package-card--featured {
  border-color: rgba(216, 27, 103, 0.28);
  background:
    linear-gradient(160deg, rgba(216, 27, 103, 0.1), rgba(255, 154, 50, 0.08)),
    rgba(255, 255, 255, 0.9);
}

.b2d-sp-package-card h3 {
  color: var(--b2d-ink);
  font-size: 2.25rem;
}

.b2d-sp-package-card p {
  color: #665979;
  font-weight: 760;
  line-height: 1.56;
}

.b2d-sp-package-card strong {
  display: block;
  margin-top: 20px;
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-sp-cta {
  padding: 92px 0;
  text-align: center;
  color: var(--b2d-white);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 55%, var(--b2d-orange));
}

.b2d-sp-cta .b2d-kicker,
.b2d-sp-cta h2,
.b2d-sp-cta p {
  margin-inline: auto;
  color: var(--b2d-white);
}

.b2d-sp-cta p:not(.b2d-kicker) {
  max-width: 660px;
  margin-top: 18px;
  font-size: 1.04rem;
  font-weight: 760;
  line-height: 1.62;
}

.b2d-sp-cta .b2d-actions {
  justify-content: center;
}

.b2d-performance-page .wp-block-image,
.b2d-performance-page .wp-block-video,
.b2d-performance-page .wp-block-embed,
.b2d-performance-page .wp-block-gallery {
  max-width: 100%;
}

.b2d-performance-page iframe,
.b2d-performance-page video {
  max-width: 100%;
  border: 0;
  border-radius: 24px;
}

.b2d-performance-page img {
  height: auto;
}

@media (min-width: 680px) {
  .b2d-sp-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-sp-card-grid,
  .b2d-sp-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-sp-hero h1 {
    font-size: 4.8rem;
  }

  .b2d-sp-about h2,
  .b2d-sp-styles h2,
  .b2d-sp-programs h2,
  .b2d-sp-packages h2,
  .b2d-sp-process h2,
  .b2d-sp-cta h2 {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .b2d-sp-hero__columns {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

  .b2d-sp-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .b2d-sp-about__layout.wp-block-media-text {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(44px, 5vw, 86px);
  }

  .b2d-performance-page .wp-block-group.b2d-section-heading--split > .wp-block-group__inner-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  }

  .b2d-sp-program-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .b2d-sp-hero h1 {
    font-size: 6.2rem;
  }

  .b2d-sp-about h2,
  .b2d-sp-styles h2,
  .b2d-sp-programs h2,
  .b2d-sp-packages h2,
  .b2d-sp-process h2,
  .b2d-sp-cta h2 {
    font-size: 5.8rem;
  }
}

@media (min-width: 1240px) {
  .b2d-sp-style-grid,
  .b2d-sp-package-grid,
  .b2d-sp-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .b2d-sp-hero {
    padding-top: calc(102px + env(safe-area-inset-top));
  }

  .b2d-sp-hero h1 {
    font-size: 3.08rem;
  }

  .b2d-sp-about h2,
  .b2d-sp-styles h2,
  .b2d-sp-programs h2,
  .b2d-sp-packages h2,
  .b2d-sp-process h2,
  .b2d-sp-cta h2 {
    font-size: 2.85rem;
  }

  .b2d-sp-video-card h3,
  .b2d-sp-package-card h3,
  .b2d-sp-format-card h3,
  .b2d-sp-step-card h3 {
    font-size: 1.85rem;
  }
}

@media (max-width: 430px) and (max-height: 640px) {
  .b2d-sp-hero {
    min-height: 100svh;
    padding-top: calc(84px + env(safe-area-inset-top));
  }

  .b2d-sp-hero h1 {
    font-size: 2.42rem;
    line-height: 0.96;
  }

  .b2d-sp-hero__lead {
    margin-top: 12px;
    font-size: 0.96rem;
    line-height: 1.34;
  }

  .b2d-sp-hero__panel {
    padding: 16px;
  }
}

/* Show programs polish pass: align with homepage hero and fix block-card rhythm */
.b2d-show-programs-page .b2d-site-header {
  background: rgba(255, 250, 253, 0.9);
  box-shadow: 0 14px 40px rgba(49, 22, 93, 0.1);
  backdrop-filter: blur(18px);
}

.b2d-show-programs-page .b2d-primary-nav a {
  color: var(--b2d-ink-2);
}

/* Static preview support for WordPress block markup on /show-programs/. */
.b2d-static-page .wp-block-cover {
  position: relative;
  display: flex;
  box-sizing: border-box;
}

.b2d-static-page .wp-block-cover__background,
.b2d-static-page .wp-block-cover__image-background {
  position: absolute;
  inset: 0;
}

.b2d-static-page .wp-block-cover__background {
  z-index: 1;
}

.b2d-static-page .wp-block-cover__image-background {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2d-static-page .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.b2d-static-page .b2d-sp-style-card .wp-block-cover__inner-container,
.b2d-static-page .b2d-sp-video-card .wp-block-cover__inner-container {
  width: 100%;
}

.b2d-static-page .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.b2d-static-page .wp-block-button__link {
  color: inherit;
  text-decoration: none;
}

.b2d-static-page figure {
  margin: 0;
}

.b2d-static-page .wp-block-column {
  min-width: 0;
}

.b2d-performance-page {
  background: var(--b2d-paper);
  color: var(--b2d-ink);
}

.b2d-sp-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(112px + env(safe-area-inset-top)) 0 54px;
  background:
    linear-gradient(90deg, rgba(255, 250, 253, 0.9) 0%, rgba(255, 250, 253, 0.8) 46%, rgba(255, 244, 248, 0.54) 72%, rgba(255, 244, 248, 0.34) 100%),
    url("../images/performance/show-programs-bg-kling.png") center bottom / cover no-repeat;
  color: var(--b2d-ink);
}

.b2d-sp-hero::before,
.b2d-sp-hero::after {
  content: none;
  display: none;
}

.b2d-sp-hero::before {
  opacity: 0;
  background:
    repeating-radial-gradient(ellipse at 8% 20%, transparent 0 18px, rgba(89, 34, 159, 0.2) 19px 21px, transparent 22px 52px),
    repeating-radial-gradient(ellipse at 94% 88%, transparent 0 24px, rgba(216, 27, 103, 0.18) 25px 27px, transparent 28px 60px);
}

.b2d-sp-hero::after {
  inset: 22% -16% auto 40%;
  height: 46%;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.58), rgba(255, 154, 50, 0.12));
  mix-blend-mode: normal;
  transform: skewY(-8deg);
}

.b2d-sp-hero .wp-block-cover__background {
  opacity: 0 !important;
}

.b2d-sp-hero .wp-block-cover__image-background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  filter: none;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.b2d-sp-hero > .wp-block-cover__inner-container {
  align-self: center;
}

.b2d-sp-hero__columns {
  min-height: calc(100svh - 176px);
  align-content: center;
  max-width: 900px;
}

.b2d-sp-hero .b2d-kicker {
  color: var(--b2d-pink);
}

.b2d-sp-hero h1 {
  max-width: 880px;
  color: var(--b2d-ink);
  font-size: clamp(2.15rem, 5.8vw, 4.1rem);
  line-height: 1.02;
  text-transform: none;
}

.b2d-sp-hero__lead {
  max-width: 560px;
  color: #46365f;
  font-size: 1.08rem;
  font-weight: 780;
}

.b2d-sp-hero .b2d-hero__proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 38px rgba(49, 22, 93, 0.12);
  backdrop-filter: blur(12px);
}

.b2d-sp-hero .b2d-hero__proof span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #514565;
  font-size: 0.78rem;
  line-height: 1.15;
  text-shadow: none;
  white-space: nowrap;
}

.b2d-sp-hero .b2d-hero__proof strong {
  flex: 0 0 auto;
  font-size: 1.18rem;
}

.b2d-sp-hero__panel {
  max-width: 420px;
  border-color: rgba(49, 22, 93, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--b2d-ink);
  box-shadow: 0 24px 70px rgba(49, 22, 93, 0.14);
}

.b2d-sp-hero__panel h2 {
  color: var(--b2d-ink);
}

.b2d-sp-hero__panel p:not(.b2d-kicker) {
  color: #5d4f72;
}

.b2d-sp-phone-line {
  margin-top: 16px;
}

.b2d-sp-phone-line a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: linear-gradient(135deg, rgba(216, 27, 103, 0.12), rgba(255, 154, 50, 0.18));
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: 1.45rem;
  font-weight: 700;
}

.b2d-performance-page .wp-block-button.b2d-button--ghost .wp-block-button__link {
  border-color: rgba(49, 22, 93, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--b2d-ink-2);
}

.b2d-sp-proof {
  gap: 10px;
  padding-block: 24px;
  background: linear-gradient(90deg, #fffafd, #edf1ff);
}

.b2d-sp-proof > .wp-block-column {
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(49, 22, 93, 0.08);
}

.b2d-sp-proof h3 {
  color: var(--b2d-pink);
}

.b2d-sp-proof p {
  color: #5d4f72;
}

.b2d-sp-programs,
.b2d-sp-process {
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 27, 103, 0.22), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(255, 154, 50, 0.18), transparent 24%),
    linear-gradient(145deg, var(--b2d-night), #2a1148 62%, #150821);
}

.b2d-sp-programs .b2d-section-heading--split > .wp-block-group__inner-container > p,
.b2d-sp-process .b2d-section-heading--split > .wp-block-group__inner-container > p {
  color: rgba(255, 255, 255, 0.78);
}

.b2d-sp-card-grid,
.b2d-sp-program-layout,
.b2d-sp-format-grid {
  align-items: stretch;
}

.b2d-sp-card-grid > .wp-block-column,
.b2d-sp-format-grid > .wp-block-column {
  display: flex;
}

.b2d-sp-style-card,
.b2d-sp-format-card,
.b2d-sp-package-card,
.b2d-sp-step-card {
  width: 100%;
  height: 100%;
}

.b2d-sp-style-card {
  min-height: 380px;
  border-radius: 22px;
}

.b2d-sp-style-card .wp-block-cover__image-background,
.b2d-sp-video-card .wp-block-cover__image-background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.b2d-sp-style-card .wp-block-cover__background,
.b2d-sp-video-card .wp-block-cover__background {
  opacity: 1 !important;
  background:
    linear-gradient(180deg, rgba(16, 7, 31, 0.06) 0%, rgba(16, 7, 31, 0.5) 48%, rgba(16, 7, 31, 0.96) 100%) !important;
}

.b2d-sp-style-card h3,
.b2d-sp-style-card p,
.b2d-sp-video-card h3,
.b2d-sp-video-card p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.46);
}

.b2d-sp-format-grid {
  grid-auto-rows: 1fr;
}

.b2d-sp-format-card,
.b2d-sp-step-card {
  min-height: 260px;
  border-radius: 22px;
}

.b2d-sp-format-card > .wp-block-group__inner-container,
.b2d-sp-step-card > .wp-block-group__inner-container {
  grid-template-rows: auto auto 1fr;
}

.b2d-sp-format-card h3,
.b2d-sp-step-card h3 {
  font-size: 2rem;
  overflow-wrap: anywhere;
}

.b2d-sp-video-card {
  min-height: 560px;
  border-radius: 24px;
}

.b2d-sp-packages {
  overflow: visible;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 27, 103, 0.12), transparent 30%),
    linear-gradient(180deg, #fffafd, #f3f0ff);
}

.b2d-sp-package-grid {
  grid-auto-rows: 1fr;
}

.b2d-sp-package-card {
  min-height: 320px;
  display: grid;
  overflow: visible;
  border-radius: 22px;
}

.b2d-sp-package-card > .wp-block-group__inner-container {
  grid-template-rows: auto auto 1fr auto;
}

.b2d-sp-package-card h3 {
  overflow-wrap: anywhere;
  line-height: 1.12;
  padding-bottom: 2px;
}

.b2d-sp-package-card strong {
  margin-top: auto;
  padding-top: 22px;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.b2d-sp-about h2,
.b2d-sp-styles h2,
.b2d-sp-programs h2,
.b2d-sp-packages h2,
.b2d-sp-process h2,
.b2d-sp-cta h2 {
  max-width: 940px;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.b2d-sp-cta {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 55%, var(--b2d-orange));
}

@media (min-width: 680px) {
  .b2d-sp-hero h1 {
    font-size: clamp(3rem, 5vw, 4.1rem);
  }
}

@media (min-width: 1024px) {
  .b2d-sp-hero__columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .b2d-sp-program-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  }

  .b2d-sp-hero h1 {
    font-size: clamp(3.6rem, 4.7vw, 4.35rem);
  }

  .b2d-sp-about h2,
  .b2d-sp-styles h2,
  .b2d-sp-programs h2,
  .b2d-sp-packages h2,
  .b2d-sp-process h2,
  .b2d-sp-cta h2 {
    font-size: 5.2rem;
  }
}

@media (min-width: 1240px) {
  .b2d-sp-style-grid,
  .b2d-sp-package-grid,
  .b2d-sp-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .b2d-sp-hero {
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(255, 250, 253, 0.78) 0%, rgba(255, 250, 253, 0.64) 48%, rgba(255, 250, 253, 0.36) 72%, rgba(255, 250, 253, 0.18) 100%),
      url("../images/performance/show-programs-bg-kling.png") center 76% / auto 170% no-repeat;
  }

  .b2d-sp-hero .wp-block-cover__image-background {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .b2d-sp-hero__columns {
    min-height: auto;
    align-content: center;
  }

  .b2d-sp-hero__panel {
    max-width: 520px;
  }

  .b2d-sp-program-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .b2d-sp-hero {
    padding-top: calc(96px + env(safe-area-inset-top));
    padding-bottom: 44px;
  }

  .b2d-sp-hero .b2d-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .b2d-sp-hero .wp-block-button.b2d-button .wp-block-button__link {
    width: 100%;
    min-height: 46px;
    box-sizing: border-box;
    padding: 11px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .b2d-sp-hero .b2d-hero__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .b2d-sp-hero .b2d-hero__proof span {
    gap: 5px;
    font-size: 0.68rem;
  }

  .b2d-sp-hero .b2d-hero__proof strong {
    font-size: 1rem;
  }

  .b2d-sp-hero h1 {
    font-size: clamp(2.05rem, 8.2vw, 2.55rem);
  }

  .b2d-sp-hero__lead {
    font-size: 0.98rem;
  }

  .b2d-sp-hero__panel {
    padding: 18px;
    border-radius: 20px;
  }

  .b2d-sp-style-card,
  .b2d-sp-video-card {
    min-height: 360px;
  }

  .b2d-sp-format-card,
  .b2d-sp-step-card,
  .b2d-sp-package-card {
    min-height: auto;
  }
}

/* Show programs professional rewrite: dark event-stage direction */
.b2d-show-programs-page .b2d-site-header {
  background: rgba(9, 3, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 44px rgba(9, 3, 15, 0.24);
}

.b2d-show-programs-page .b2d-logo span,
.b2d-show-programs-page .b2d-primary-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.b2d-show-programs-page .b2d-primary-nav a:hover,
.b2d-show-programs-page .b2d-primary-nav a[aria-current="page"] {
  color: var(--b2d-orange);
}

.b2d-sp-hero {
  min-height: 92svh;
  align-items: center;
  padding: calc(118px + env(safe-area-inset-top)) 0 70px;
  background:
    linear-gradient(90deg, rgba(9, 3, 15, 0.98) 0%, rgba(9, 3, 15, 0.86) 42%, rgba(9, 3, 15, 0.38) 72%, rgba(9, 3, 15, 0.78) 100%),
    url("../images/performance/performance-stage-crowd.png") center center / cover no-repeat;
  color: var(--b2d-white);
}

.b2d-sp-hero .wp-block-cover__image-background {
  opacity: 0.56;
  filter: saturate(1.04) contrast(1.1) brightness(0.72);
  object-position: center center;
}

.b2d-sp-hero .wp-block-cover__background {
  opacity: 0 !important;
}

.b2d-sp-hero > .wp-block-cover__inner-container {
  align-self: center;
}

.b2d-sp-hero__columns {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  max-width: none;
  min-height: auto;
  align-items: center;
}

.b2d-sp-hero h1 {
  max-width: 780px;
  color: var(--b2d-white);
  font-size: clamp(3.1rem, 7.4vw, 7.2rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.b2d-sp-hero h1 span {
  display: block;
}

.b2d-sp-hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.b2d-sp-hero .b2d-kicker,
.b2d-sp-video-showcase .b2d-kicker,
.b2d-sp-venues .b2d-kicker,
.b2d-sp-styles .b2d-kicker,
.b2d-sp-process .b2d-kicker {
  margin: 0 0 14px;
  color: var(--b2d-orange);
}

.b2d-sp-hero .b2d-hero__proof {
  max-width: 820px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.b2d-sp-hero .b2d-hero__proof span {
  color: rgba(255, 255, 255, 0.78);
}

.b2d-sp-hero .b2d-hero__proof strong {
  color: var(--b2d-orange);
}

.b2d-sp-hero__panel {
  max-width: 450px;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(16, 7, 31, 0.74);
  color: var(--b2d-white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.b2d-sp-hero__panel h2,
.b2d-sp-hero__panel p:not(.b2d-kicker) {
  color: var(--b2d-white);
}

.b2d-sp-hero__panel h2 span {
  display: block;
}

.b2d-sp-phone-line a {
  background: linear-gradient(135deg, rgba(216, 27, 103, 0.28), rgba(255, 154, 50, 0.26));
  color: var(--b2d-white);
}

.b2d-sp-video-showcase,
.b2d-sp-venues {
  padding: 94px 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(216, 27, 103, 0.11), transparent 30%),
    linear-gradient(180deg, #fffafd, #f2f0fa);
  color: var(--b2d-ink);
}

.b2d-sp-video-layout {
  display: grid;
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
  margin-bottom: 0;
}

.b2d-sp-video-layout > .wp-block-column {
  min-width: 0;
}

.b2d-sp-video-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 22px;
  background: #09030f;
  box-shadow: 0 28px 80px rgba(49, 22, 93, 0.18);
}

.b2d-sp-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  object-fit: cover;
}

.b2d-sp-video-frame figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.45;
}

.b2d-sp-video-copy {
  display: grid;
  align-content: center;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(49, 22, 93, 0.1);
}

.b2d-sp-video-copy h3,
.b2d-sp-venue-card h3,
.b2d-sp-inquiry h3 {
  margin: 0;
  font-family: var(--b2d-heading);
  line-height: 0.98;
  text-transform: uppercase;
}

.b2d-sp-video-copy h3 {
  color: var(--b2d-ink);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.b2d-sp-video-copy p {
  max-width: 620px;
  color: #5d4f72;
  font-weight: 760;
  line-height: 1.66;
}

.b2d-sp-video-meta,
.b2d-sp-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.b2d-sp-video-meta {
  margin-bottom: 24px;
}

.b2d-sp-video-meta span,
.b2d-sp-mini-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--b2d-ink-2);
  font-size: 0.82rem;
  font-weight: 900;
}

.b2d-sp-venue-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}

.b2d-sp-venue-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(49, 22, 93, 0.08);
}

.b2d-sp-venue-card span {
  color: var(--b2d-pink);
  font-weight: 950;
}

.b2d-sp-venue-card h3 {
  color: var(--b2d-ink);
  font-size: 2.2rem;
}

.b2d-sp-venue-card p {
  color: #645773;
  font-weight: 760;
  line-height: 1.55;
}

.b2d-sp-programs,
.b2d-sp-process {
  background:
    radial-gradient(circle at 8% 10%, rgba(216, 27, 103, 0.24), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 154, 50, 0.16), transparent 25%),
    linear-gradient(145deg, #09030f, #1b0a2e 58%, #10071f);
}

.b2d-sp-package-card,
.b2d-sp-format-card,
.b2d-sp-step-card {
  border-radius: 18px;
}

.b2d-sp-package-card {
  background: rgba(255, 255, 255, 0.9);
}

.b2d-sp-logistics {
  display: grid;
  gap: 18px;
}

.b2d-sp-logistics__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2d-sp-logistics__list li,
.b2d-sp-inquiry {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.07);
}

.b2d-sp-logistics__list strong,
.b2d-sp-logistics__list span {
  display: block;
}

.b2d-sp-logistics__list strong {
  color: var(--b2d-orange);
  font-family: var(--b2d-heading);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-sp-logistics__list span,
.b2d-sp-inquiry p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 730;
  line-height: 1.56;
}

.b2d-sp-inquiry h3 {
  color: var(--b2d-white);
  font-size: clamp(2.3rem, 4vw, 4.6rem);
}

.b2d-sp-inquiry .b2d-button {
  margin-top: 18px;
}

.b2d-sp-cta {
  background:
    linear-gradient(90deg, rgba(9, 3, 15, 0.9), rgba(9, 3, 15, 0.52)),
    url("../images/performance/performance-stage-crowd.png") center 60% / cover no-repeat;
}

@media (min-width: 760px) {
  .b2d-sp-venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .b2d-sp-hero__columns {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  }

  .b2d-sp-video-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  }

  .b2d-sp-venue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .b2d-sp-logistics {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  }
}

@media (max-width: 767px) {
  .b2d-show-programs-page .b2d-site-header {
    background: rgba(9, 3, 15, 0.9);
  }

  .b2d-sp-hero {
    min-height: 88svh;
    padding-top: calc(96px + env(safe-area-inset-top));
    overflow-x: hidden;
    background:
      linear-gradient(180deg, rgba(9, 3, 15, 0.94) 0%, rgba(9, 3, 15, 0.76) 48%, rgba(9, 3, 15, 0.48) 100%),
      url("../images/performance/performance-stage-crowd.png") center center / cover no-repeat;
  }

  .b2d-sp-hero > .wp-block-cover__inner-container,
  .b2d-sp-hero__columns,
  .b2d-sp-hero__copy {
    box-sizing: border-box;
  }

  .b2d-sp-hero > .wp-block-cover__inner-container {
    width: calc(100vw - (var(--b2d-gutter) * 2));
    max-width: calc(100vw - (var(--b2d-gutter) * 2));
    margin-inline: auto;
  }

  .b2d-sp-hero__columns,
  .b2d-sp-hero__copy {
    width: 100%;
    max-width: 100%;
  }

  .b2d-sp-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3.2rem);
    line-height: 0.9;
  }

  .b2d-sp-hero .b2d-actions {
    grid-template-columns: 1fr;
  }

  .b2d-sp-hero .wp-block-button,
  .b2d-sp-hero .wp-block-button__link {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }

  .b2d-sp-hero .b2d-hero__proof {
    grid-template-columns: 1fr 1fr;
  }

  .b2d-sp-video-showcase,
  .b2d-sp-venues {
    padding: 68px 0;
  }

  .b2d-sp-hero__panel {
    width: 100%;
    max-width: calc(100vw - (var(--b2d-gutter) * 2));
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }

  .b2d-sp-hero__panel h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.2rem);
    overflow-wrap: anywhere;
  }

  .b2d-sp-hero__panel p:not(.b2d-kicker) {
    font-size: 0.96rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }
}

.b2d-reveal {
  opacity: 1;
  transform: none;
}

body.b2d-scroll-effects-ready .b2d-reveal {
  opacity: 0.001;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--b2d-reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.b2d-scroll-effects-ready .b2d-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  body.b2d-scroll-effects-ready .b2d-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Show programs reference layout: editable Gutenberg performance crew page */
.b2d-show-programs-page,
.b2d-performance-page {
  background: #060606;
  color: #f8f4ec;
}

.b2d-show-programs-page .b2d-site-header {
  background: rgba(6, 6, 6, 0.92);
  border-bottom: 1px solid rgba(201, 151, 71, 0.24);
}

.b2d-show-programs-page .b2d-primary-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.b2d-show-programs-page .b2d-primary-nav a:hover,
.b2d-show-programs-page .b2d-primary-nav a:focus-visible,
.b2d-show-programs-page .b2d-primary-nav a[aria-current="page"] {
  color: #c99747;
}

.b2d-performance-hero-v3 {
  min-height: 720px;
  position: relative;
  padding: 124px 0 54px;
  overflow: hidden;
  background: #050505;
}

.b2d-performance-hero-v3 .wp-block-cover__background {
  opacity: 1;
  background:
    radial-gradient(circle at 66% 32%, rgba(201, 151, 71, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 34%, rgba(5, 5, 5, 0.34) 66%, rgba(5, 5, 5, 0.74) 100%);
}

.b2d-performance-hero-v3 .wp-block-cover__image-background {
  object-position: center right;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
}

.b2d-performance-hero-v3 .wp-block-cover__inner-container {
  width: 100%;
}

.b2d-performance-hero-v3__inner {
  min-height: 540px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.b2d-performance-hero-v3 .b2d-kicker,
.b2d-performance-proof-v3 strong,
.b2d-performance-show-grid-v3 span,
.b2d-performance-package-grid-v3 span,
.b2d-performance-steps-v3 span {
  color: #c99747;
}

.b2d-performance-hero-v3 h1,
.b2d-performance-about-v3 h2,
.b2d-performance-styles-v3 h2,
.b2d-performance-shows-v3 h2,
.b2d-performance-packages-v3 h2,
.b2d-performance-process-v3 h2,
.b2d-performance-media-v3 h2,
.b2d-performance-cta-v3 h2 {
  margin: 0;
  font-family: var(--b2d-heading);
  letter-spacing: 0;
  text-transform: uppercase;
}

.b2d-performance-hero-v3 h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: 5.9rem;
  line-height: 0.88;
}

.b2d-performance-hero-v3 h1 mark {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: #c99747;
  font-style: italic;
}

.b2d-performance-hero-v3__lead {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  font-weight: 760;
  line-height: 1.55;
}

.b2d-performance-hero-v3 .b2d-actions {
  margin-top: 24px;
}

.b2d-performance-hero-v3 .wp-block-button.b2d-button .wp-block-button__link,
.b2d-performance-package-grid-v3 a,
.b2d-performance-fee-v3 a,
.b2d-performance-cta-v3 .wp-block-button__link {
  border: 1px solid rgba(201, 151, 71, 0.55);
  background: #c99747;
  color: #0a0704;
}

.b2d-performance-proof-v3 {
  padding: 0;
  background: #060606;
}

.b2d-performance-proof-v3__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(201, 151, 71, 0.34);
  border-bottom: 1px solid rgba(201, 151, 71, 0.34);
  background: #0b0b0b;
}

.b2d-performance-proof-v3__grid > div {
  min-height: 92px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(201, 151, 71, 0.22);
}

.b2d-performance-proof-v3__grid > div:last-child {
  border-right: 0;
}

.b2d-performance-proof-v3 strong {
  font-family: var(--b2d-heading);
  font-size: 2.2rem;
  line-height: 1;
}

.b2d-performance-proof-v3 span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.b2d-performance-about-v3,
.b2d-performance-styles-v3,
.b2d-performance-packages-v3,
.b2d-performance-media-v3 {
  padding: 72px 0;
  background: #0a0a0a;
}

.b2d-performance-about-v3__columns {
  align-items: center;
}

.b2d-performance-about-v3__image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 151, 71, 0.32);
  border-radius: 0;
}

.b2d-performance-about-v3__image img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.b2d-performance-about-v3 h2,
.b2d-performance-styles-v3 h2,
.b2d-performance-shows-v3 h2,
.b2d-performance-packages-v3 h2,
.b2d-performance-process-v3 h2,
.b2d-performance-media-v3 h2,
.b2d-performance-cta-v3 h2 {
  color: #ffffff;
  font-size: 3.25rem;
  line-height: 0.95;
}

.b2d-performance-about-v3__copy p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 730;
  line-height: 1.62;
}

.b2d-performance-values-v3 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(201, 151, 71, 0.3);
  background: rgba(201, 151, 71, 0.28);
}

.b2d-performance-values-v3 > div {
  min-height: 124px;
  padding: 18px;
  background: #101010;
}

.b2d-performance-values-v3 strong,
.b2d-performance-values-v3 span {
  display: block;
}

.b2d-performance-values-v3 strong {
  color: #c99747;
  font-family: var(--b2d-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.b2d-performance-values-v3 span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 730;
  line-height: 1.38;
}

.b2d-performance-style-grid-v3,
.b2d-performance-show-grid-v3,
.b2d-performance-package-grid-v3,
.b2d-performance-steps-v3 {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.b2d-performance-style-grid-v3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2d-performance-style-grid-v3 article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #111;
}

.b2d-performance-style-grid-v3 article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.86));
}

.b2d-performance-style-grid-v3 img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.b2d-performance-style-grid-v3 article > div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.b2d-performance-style-grid-v3 h3,
.b2d-performance-show-grid-v3 h3,
.b2d-performance-package-grid-v3 span,
.b2d-performance-steps-v3 h3,
.b2d-performance-fee-v3 h3 {
  margin: 0;
  font-family: var(--b2d-heading);
  letter-spacing: 0;
  text-transform: uppercase;
}

.b2d-performance-style-grid-v3 h3 {
  color: #c99747;
  font-size: 1.7rem;
}

.b2d-performance-style-grid-v3 p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 780;
}

.b2d-performance-shows-v3 {
  padding: 42px 0;
  background: #f4f0e8;
  color: #111;
}

.b2d-performance-shows-v3 h2,
.b2d-performance-packages-v3 h2 {
  color: #111;
}

.b2d-performance-show-grid-v3 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.b2d-performance-show-grid-v3 article {
  min-height: 150px;
  padding: 18px;
  border-right: 1px solid rgba(17, 17, 17, 0.14);
}

.b2d-performance-show-grid-v3 article:last-child {
  border-right: 0;
}

.b2d-performance-show-grid-v3 h3 {
  margin-top: 16px;
  color: #111;
  font-size: 1.35rem;
}

.b2d-performance-show-grid-v3 p {
  margin: 8px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.85rem;
  font-weight: 760;
  line-height: 1.35;
}

.b2d-performance-packages-v3 {
  background:
    radial-gradient(circle at 74% 16%, rgba(201, 151, 71, 0.16), transparent 22%),
    #0a0a0a;
}

.b2d-performance-packages-v3 h2 {
  color: #ffffff;
}

.b2d-performance-packages-v3__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  margin-top: 26px;
}

.b2d-performance-package-grid-v3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.b2d-performance-package-grid-v3 article,
.b2d-performance-fee-v3 {
  display: grid;
  align-content: start;
  min-height: 290px;
  padding: 20px;
  border: 1px solid rgba(201, 151, 71, 0.34);
  background: #0f0f0f;
  color: #fff;
}

.b2d-performance-package-grid-v3 article.is-featured {
  background: linear-gradient(180deg, rgba(201, 151, 71, 0.28), #12100b);
}

.b2d-performance-package-grid-v3 strong {
  margin-top: 12px;
  color: #ffffff;
  font-family: var(--b2d-heading);
  font-size: 2.2rem;
  line-height: 1;
}

.b2d-performance-package-grid-v3 p,
.b2d-performance-fee-v3 p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 740;
  line-height: 1.45;
}

.b2d-performance-package-grid-v3 a,
.b2d-performance-fee-v3 a {
  align-self: end;
  justify-self: start;
  margin-top: auto;
  border-radius: 0;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.b2d-performance-fee-v3 h3 {
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}

.b2d-performance-fee-v3 p strong {
  color: #c99747;
  font-family: var(--b2d-heading);
  font-size: 1.3rem;
}

.b2d-performance-process-v3 {
  padding: 62px 0;
  background: #090909;
}

.b2d-performance-process-v3__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 20px;
  margin-top: 28px;
}

.b2d-performance-steps-v3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.b2d-performance-steps-v3 article {
  min-height: 210px;
  padding: 20px;
  border-top: 1px solid rgba(201, 151, 71, 0.4);
  background: #101010;
}

.b2d-performance-steps-v3 h3 {
  margin-top: 18px;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
}

.b2d-performance-steps-v3 p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.45;
}

.b2d-performance-process-v3__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 151, 71, 0.28);
}

.b2d-performance-process-v3__image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.b2d-performance-media-v3 {
  background: #f4f0e8;
  color: #111;
}

.b2d-performance-media-v3 h2,
.b2d-performance-media-v3 p {
  color: #111;
}

.b2d-performance-media-v3__columns {
  align-items: center;
}

.b2d-performance-video-block-v3 {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: #050505;
}

.b2d-performance-video-block-v3 video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.b2d-performance-video-block-v3 figcaption {
  margin: 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.b2d-performance-cta-v3 {
  padding: 68px 0;
  text-align: center;
  background: #080808;
}

.b2d-performance-cta-v3 p {
  max-width: 660px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 760;
}

@media (min-width: 1280px) {
  .b2d-performance-hero-v3 h1 {
    font-size: 7.1rem;
  }
}

@media (max-width: 1023px) {
  .b2d-performance-proof-v3__grid,
  .b2d-performance-values-v3,
  .b2d-performance-style-grid-v3,
  .b2d-performance-show-grid-v3,
  .b2d-performance-package-grid-v3,
  .b2d-performance-steps-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-performance-packages-v3__layout,
  .b2d-performance-process-v3__layout {
    grid-template-columns: 1fr;
  }

  .b2d-performance-hero-v3 h1 {
    font-size: 4.4rem;
  }
}

@media (max-width: 767px) {
  .b2d-performance-hero-v3 {
    min-height: 680px;
    padding-top: 104px;
  }

  .b2d-performance-hero-v3 .wp-block-cover__background {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 58%, rgba(5, 5, 5, 0.56) 100%);
  }

  .b2d-performance-hero-v3 .wp-block-cover__image-background {
    object-position: 58% center;
  }

  .b2d-performance-hero-v3__inner {
    min-height: 520px;
    align-content: end;
  }

  .b2d-performance-hero-v3 h1 {
    font-size: 3.08rem;
    line-height: 0.92;
  }

  .b2d-performance-hero-v3__lead {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .b2d-performance-proof-v3__grid,
  .b2d-performance-values-v3,
  .b2d-performance-style-grid-v3,
  .b2d-performance-show-grid-v3,
  .b2d-performance-package-grid-v3,
  .b2d-performance-steps-v3 {
    grid-template-columns: 1fr;
  }

  .b2d-performance-about-v3,
  .b2d-performance-styles-v3,
  .b2d-performance-packages-v3,
  .b2d-performance-process-v3,
  .b2d-performance-media-v3 {
    padding: 54px 0;
  }

  .b2d-performance-about-v3 h2,
  .b2d-performance-styles-v3 h2,
  .b2d-performance-shows-v3 h2,
  .b2d-performance-packages-v3 h2,
  .b2d-performance-process-v3 h2,
  .b2d-performance-media-v3 h2,
  .b2d-performance-cta-v3 h2 {
    font-size: 2.45rem;
  }

  .b2d-performance-show-grid-v3 article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  }
}

/* Show programs brand-aligned editable Gutenberg page v4 */
.b2d-show-programs-page,
.b2d-show-programs-page .b2d-performance-page {
  background: var(--b2d-paper);
  color: var(--b2d-ink);
}

.b2d-show-programs-page .b2d-site-header {
  background: rgba(255, 250, 253, 0.9);
  border-bottom: 1px solid rgba(49, 22, 93, 0.1);
  box-shadow: 0 14px 40px rgba(49, 22, 93, 0.1);
  backdrop-filter: blur(18px);
}

.b2d-show-programs-page .b2d-primary-nav a {
  color: var(--b2d-ink-2);
}

.b2d-show-programs-page .b2d-primary-nav a:hover,
.b2d-show-programs-page .b2d-primary-nav a:focus-visible,
.b2d-show-programs-page .b2d-primary-nav a[aria-current="page"] {
  color: var(--b2d-pink);
  background: linear-gradient(90deg, rgba(216, 27, 103, 0.1), rgba(255, 154, 50, 0.12));
}

.b2d-show-programs-page .b2d-logo span {
  color: var(--b2d-ink);
}

.b2d-show-programs-page .b2d-logo strong {
  color: var(--b2d-pink);
}

.b2d-sp-brand-hero {
  min-height: 760px;
  position: relative;
  padding: 126px 0 48px;
  overflow: hidden;
  background: var(--b2d-lavender);
  color: var(--b2d-ink);
}

.b2d-sp-brand-hero .wp-block-cover__background {
  opacity: 1;
  background:
    radial-gradient(circle at 18% 24%, rgba(216, 27, 103, 0.24), transparent 22%),
    radial-gradient(circle at 48% 72%, rgba(255, 154, 50, 0.24), transparent 20%),
    linear-gradient(90deg, rgba(255, 250, 253, 0.98) 0%, rgba(255, 250, 253, 0.92) 34%, rgba(255, 250, 253, 0.46) 61%, rgba(255, 250, 253, 0.12) 100%);
}

.b2d-sp-brand-hero .wp-block-cover__image-background {
  object-position: center right;
  filter: saturate(1.06) contrast(1.04);
}

.b2d-sp-brand-hero .wp-block-cover__inner-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.b2d-sp-brand-hero__inner {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.b2d-sp-brand-hero__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 88px;
  left: calc(var(--b2d-gutter) * -1);
  width: min(720px, calc(100% + (var(--b2d-gutter) * 2)));
  height: min(500px, calc(100% - 90px));
  background:
    linear-gradient(90deg, rgba(255, 250, 253, 0.72) 0%, rgba(255, 250, 253, 0.48) 68%, rgba(255, 250, 253, 0) 100%);
  pointer-events: none;
}

.b2d-sp-brand-hero .b2d-kicker {
  margin: 0 0 16px;
  border: 1px solid rgba(216, 27, 103, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: var(--b2d-pink);
  box-shadow: 0 12px 30px rgba(216, 27, 103, 0.12);
}

.b2d-sp-brand-hero h1,
.b2d-sp-brand-about h2,
.b2d-sp-brand-styles h2,
.b2d-sp-brand-formats h2,
.b2d-sp-brand-packages h2,
.b2d-sp-brand-process h2,
.b2d-sp-brand-media h2,
.b2d-sp-brand-cta h2 {
  margin: 0;
  color: var(--b2d-ink);
  font-family: var(--b2d-heading);
  letter-spacing: 0;
  text-transform: uppercase;
}

.b2d-sp-brand-hero h1 {
  max-width: 680px;
  font-size: clamp(3.05rem, 5.7vw, 5.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.b2d-sp-brand-hero h1 mark {
  display: inline-block;
  padding: 0;
  background: transparent;
  color: var(--b2d-pink);
}

.b2d-sp-brand-hero__lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: #241342;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 800;
  line-height: 1.58;
  text-shadow: 0 2px 18px rgba(255, 250, 253, 0.92);
}

.b2d-sp-brand-hero .b2d-actions {
  margin-top: 30px;
}

.b2d-sp-brand-hero .wp-block-button.b2d-button--ghost .wp-block-button__link {
  border-color: rgba(49, 22, 93, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: var(--b2d-ink-2);
}

.b2d-sp-brand-proof {
  padding: 0;
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.7), var(--b2d-paper));
}

.b2d-sp-brand-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: -42px;
  position: relative;
  z-index: 4;
}

.b2d-sp-brand-proof__grid > div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(49, 22, 93, 0.12);
}

.b2d-sp-brand-proof strong,
.b2d-sp-brand-proof h3 {
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: clamp(1.55rem, 2vw, 2rem);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-sp-brand-proof span,
.b2d-sp-brand-proof p {
  margin: 0;
  color: var(--b2d-muted);
  font-weight: 800;
  line-height: 1.35;
}

.b2d-sp-brand-about,
.b2d-sp-brand-packages,
.b2d-sp-brand-media {
  padding: 84px 0;
  background: var(--b2d-paper);
}

.b2d-sp-brand-styles,
.b2d-sp-brand-process {
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 27, 103, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, var(--b2d-lavender));
}

.b2d-sp-brand-formats {
  padding: 58px 0;
  background: linear-gradient(90deg, rgba(216, 27, 103, 0.1), rgba(255, 154, 50, 0.14));
}

.b2d-sp-brand-about__columns,
.b2d-sp-brand-media__columns {
  align-items: center;
  gap: 44px;
}

.b2d-sp-brand-about__image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: var(--b2d-radius);
  box-shadow: var(--b2d-shadow);
}

.b2d-sp-brand-about__image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.b2d-sp-brand-about h2,
.b2d-sp-brand-styles h2,
.b2d-sp-brand-formats h2,
.b2d-sp-brand-packages h2,
.b2d-sp-brand-process h2,
.b2d-sp-brand-media h2,
.b2d-sp-brand-cta h2 {
  font-size: clamp(2.45rem, 4vw, 4.15rem);
  line-height: 0.96;
  text-wrap: balance;
}

.b2d-sp-brand-about__copy p,
.b2d-sp-brand-media p,
.b2d-sp-brand-cta p {
  color: var(--b2d-muted);
  font-size: 1.02rem;
  font-weight: 780;
  line-height: 1.65;
}

.b2d-sp-brand-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.b2d-sp-brand-values > div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, rgba(238, 242, 255, 0.72));
}

.b2d-sp-brand-values strong,
.b2d-sp-brand-values span,
.b2d-sp-brand-values h3,
.b2d-sp-brand-values p {
  display: block;
}

.b2d-sp-brand-values strong,
.b2d-sp-brand-values h3 {
  margin: 0;
  color: var(--b2d-ink);
  font-family: var(--b2d-heading);
  font-size: 1.22rem;
  text-transform: uppercase;
}

.b2d-sp-brand-values span,
.b2d-sp-brand-values p {
  margin-top: 8px;
  color: var(--b2d-muted);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.4;
}

.b2d-sp-brand-style-grid {
  gap: 14px;
  margin-top: 32px;
}

.b2d-sp-brand-style-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--b2d-night);
  box-shadow: 0 20px 54px rgba(49, 22, 93, 0.14);
}

.b2d-sp-brand-style-card figure {
  margin: 0;
}

.b2d-sp-brand-style-card img {
  width: 100%;
  min-height: 310px;
  aspect-ratio: 0.88;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.b2d-sp-brand-style-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(16, 7, 31, 0.88));
  pointer-events: none;
}

.b2d-sp-brand-style-card h3,
.b2d-sp-brand-style-card p {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 2;
  margin: 0;
}

.b2d-sp-brand-style-card h3 {
  bottom: 58px;
  color: var(--b2d-white);
  font-family: var(--b2d-heading);
  font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.b2d-sp-brand-style-card p {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.b2d-sp-brand-format-grid,
.b2d-sp-brand-package-grid,
.b2d-sp-brand-steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.b2d-sp-brand-format-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.b2d-sp-brand-format-grid article,
.b2d-sp-brand-package-grid article,
.b2d-sp-brand-brief,
.b2d-sp-brand-steps article {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(49, 22, 93, 0.1);
}

.b2d-sp-brand-format-grid span,
.b2d-sp-brand-steps span,
.b2d-sp-brand-number {
  margin: 0;
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: 1.35rem;
  line-height: 1;
}

.b2d-sp-brand-format-grid h3,
.b2d-sp-brand-package-grid span,
.b2d-sp-brand-package-grid h3,
.b2d-sp-brand-steps h3,
.b2d-sp-brand-brief h3 {
  margin: 14px 0 0;
  color: var(--b2d-ink);
  font-family: var(--b2d-heading);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-sp-brand-format-grid h3,
.b2d-sp-brand-steps h3,
.b2d-sp-brand-brief h3 {
  font-size: 1.45rem;
}

.b2d-sp-brand-format-grid p,
.b2d-sp-brand-package-grid p,
.b2d-sp-brand-steps p,
.b2d-sp-brand-brief p {
  color: var(--b2d-muted);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.45;
}

.b2d-sp-brand-format-grid p:not(.b2d-sp-brand-number),
.b2d-sp-brand-package-grid p:not(.b2d-sp-brand-price),
.b2d-sp-brand-steps p:not(.b2d-sp-brand-number),
.b2d-sp-brand-brief p {
  margin: 0;
}

.b2d-sp-brand-packages__layout,
.b2d-sp-brand-process__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  margin-top: 30px;
}

.b2d-sp-brand-package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.b2d-sp-brand-package-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 304px;
  padding: 24px;
  row-gap: 14px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.b2d-sp-brand-package-grid article::before,
.b2d-sp-brand-brief::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--b2d-pink), var(--b2d-orange));
}

.b2d-sp-brand-package-grid article::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 132px;
  height: 132px;
  top: -68px;
  right: -58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 154, 50, 0.2), rgba(216, 27, 103, 0.06) 58%, transparent 70%);
}

.b2d-sp-brand-package-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 27, 103, 0.28);
  box-shadow: 0 24px 56px rgba(49, 22, 93, 0.15);
}

.b2d-sp-brand-package-grid article.is-featured {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 154, 50, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 228, 239, 0.92));
  border-color: rgba(216, 27, 103, 0.34);
  box-shadow: 0 24px 60px rgba(216, 27, 103, 0.16);
}

.b2d-sp-brand-package-grid h3 {
  margin: 0;
}

.b2d-sp-brand-package-grid strong,
.b2d-sp-brand-price {
  margin: 0;
  color: var(--b2d-pink);
  font-family: var(--b2d-heading);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-sp-brand-price {
  width: fit-content;
  padding: 9px 12px 7px;
  border: 1px solid rgba(216, 27, 103, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216, 27, 103, 0.1), rgba(255, 154, 50, 0.14));
}

.b2d-sp-brand-package-grid article > p:not(.b2d-sp-brand-price),
.b2d-sp-brand-package-card > p:not(.b2d-sp-brand-price) {
  flex: 1;
  min-height: 92px;
}

.b2d-sp-brand-package-grid a,
.b2d-sp-brand-brief a,
.b2d-sp-brand-card-button .wp-block-button__link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  justify-self: start;
  margin-top: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-orange));
  color: var(--b2d-white);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(216, 27, 103, 0.2);
}

.b2d-sp-brand-package-grid .wp-block-buttons,
.b2d-sp-brand-brief .wp-block-buttons {
  align-self: end;
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
}

@media (min-width: 1024px) {
  .b2d-sp-brand-brief .wp-block-buttons {
    margin-bottom: 2px;
  }
}

.b2d-sp-brand-brief {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: auto;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 154, 50, 0.2), transparent 34%),
    linear-gradient(155deg, #31135a, var(--b2d-ink) 66%);
  color: var(--b2d-white);
  box-shadow: 0 24px 60px rgba(16, 7, 31, 0.24);
}

.b2d-sp-brand-brief h3 {
  margin-top: 0;
  color: var(--b2d-white);
}

.b2d-sp-brand-brief p {
  color: rgba(255, 255, 255, 0.78);
}

.b2d-sp-brand-brief p strong {
  color: var(--b2d-orange);
}

.b2d-sp-brand-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.b2d-sp-brand-steps article {
  grid-template-rows: auto minmax(58px, auto) 1fr;
  min-height: 210px;
  row-gap: 12px;
}

.b2d-sp-brand-steps h3 {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
}

.b2d-sp-brand-process__image {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  box-shadow: var(--b2d-shadow);
}

.b2d-sp-brand-process__image img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.b2d-sp-brand-video-block {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 24px;
  background: var(--b2d-night);
  box-shadow: var(--b2d-shadow);
}

.b2d-sp-brand-video-block video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.b2d-sp-brand-video-block figcaption {
  margin: 0;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.b2d-sp-brand-cta {
  padding: 86px 0;
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 154, 50, 0.28), transparent 24%),
    linear-gradient(135deg, var(--b2d-ink), var(--b2d-pink));
}

.b2d-sp-brand-cta h2,
.b2d-sp-brand-cta p {
  color: var(--b2d-white);
}

.b2d-sp-brand-cta p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.b2d-sp-brand-cta .wp-block-button__link {
  background: var(--b2d-white);
  color: var(--b2d-pink);
}

.b2d-sp-brand-cta .b2d-actions {
  justify-content: center;
}

@media (min-width: 1280px) {
  .b2d-sp-brand-hero__inner {
    min-height: 590px;
  }
}

@media (max-width: 1180px) {
  .b2d-sp-brand-proof__grid,
  .b2d-sp-brand-format-grid,
  .b2d-sp-brand-package-grid,
  .b2d-sp-brand-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-sp-brand-packages__layout,
  .b2d-sp-brand-process__layout {
    grid-template-columns: 1fr;
  }

  .b2d-sp-brand-brief {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .b2d-sp-brand-hero {
    min-height: 700px;
    padding: 104px 0 38px;
    background: var(--b2d-night);
  }

  .b2d-sp-brand-hero .wp-block-cover__background {
    opacity: 1 !important;
    background:
      linear-gradient(90deg, rgba(16, 7, 31, 0.82) 0%, rgba(16, 7, 31, 0.5) 56%, rgba(16, 7, 31, 0.18) 100%),
      linear-gradient(180deg, rgba(16, 7, 31, 0.18) 0%, rgba(16, 7, 31, 0.26) 100%) !important;
  }

  .b2d-sp-brand-hero .wp-block-cover__image-background {
    content: url("../images/performance/show-programs-hero-premium-mobile.jpg");
    opacity: 1;
    object-position: 58% center;
    filter: saturate(1.08) contrast(1.04);
  }

  .b2d-sp-brand-hero__inner {
    min-height: 560px;
    align-content: start;
    padding-top: 42px;
  }

  .b2d-sp-brand-hero__inner::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 8px;
    left: calc(var(--b2d-gutter) * -1);
    width: calc(100% + (var(--b2d-gutter) * 2));
    height: min(490px, calc(100% - 70px));
    background:
      linear-gradient(180deg, rgba(16, 7, 31, 0.58) 0%, rgba(16, 7, 31, 0.4) 72%, rgba(16, 7, 31, 0.08) 100%);
  }

  .b2d-sp-brand-hero h1 {
    color: var(--b2d-white);
    width: min(350px, 100%);
    max-width: 100%;
    font-size: clamp(2.32rem, 10.6vw, 3.28rem);
    line-height: 0.94;
    text-shadow: 0 3px 22px rgba(16, 7, 31, 0.48);
    overflow-wrap: break-word;
  }

  .b2d-sp-brand-hero h1 mark {
    display: block;
    width: min(350px, 100%);
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .b2d-sp-brand-hero__lead {
    max-width: min(350px, 100%);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
    text-shadow: 0 2px 16px rgba(16, 7, 31, 0.62);
  }

  .b2d-sp-brand-hero .b2d-actions {
    max-width: min(350px, 100%);
    gap: 10px;
  }

  .b2d-sp-brand-hero .wp-block-button__link {
    white-space: nowrap;
  }

  .b2d-sp-brand-proof__grid,
  .b2d-sp-brand-values,
  .b2d-sp-brand-format-grid,
  .b2d-sp-brand-package-grid,
  .b2d-sp-brand-steps {
    grid-template-columns: 1fr;
  }

  .b2d-sp-brand-about,
  .b2d-sp-brand-styles,
  .b2d-sp-brand-packages,
  .b2d-sp-brand-process,
  .b2d-sp-brand-media {
    padding: 58px 0;
  }

  .b2d-sp-brand-style-card,
  .b2d-sp-brand-style-card img {
    min-height: 280px;
  }

  .b2d-sp-brand-media__columns {
    gap: 26px;
  }

  .b2d-sp-brand-package-grid {
    gap: 14px;
  }

  .b2d-sp-brand-package-grid article,
  .b2d-sp-brand-brief {
    min-height: 0;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .b2d-sp-brand-package-grid article > p:not(.b2d-sp-brand-price),
  .b2d-sp-brand-package-card > p:not(.b2d-sp-brand-price) {
    min-height: 0;
  }

  .b2d-sp-brand-package-grid .wp-block-buttons,
  .b2d-sp-brand-brief .wp-block-buttons {
    padding-top: 12px;
  }

  .b2d-sp-brand-card-button,
  .b2d-sp-brand-card-button .wp-block-button__link {
    width: 100%;
  }
}

/* Elementor homepage draft */
.b2d-elementor-template .b2d-eh-section {
  position: relative;
  overflow: clip;
  padding: clamp(58px, 7vw, 112px) 0;
  background: var(--b2d-paper);
}

.b2d-elementor-template .b2d-eh-section > .elementor-container {
  width: min(var(--b2d-max), calc(100% - (var(--b2d-gutter) * 2)));
  max-width: var(--b2d-max);
  margin-inline: auto;
}

.b2d-elementor-template .b2d-eh-section .elementor-widget:not(:last-child) {
  margin-bottom: 18px;
}

.b2d-elementor-template .b2d-eh-kicker .elementor-widget-container,
.b2d-elementor-template .b2d-eh-card-label .elementor-widget-container {
  color: var(--b2d-pink);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2d-elementor-template .b2d-eh-section-title .elementor-heading-title,
.b2d-elementor-template .b2d-eh-hero-title .elementor-heading-title,
.b2d-elementor-template .b2d-eh-final-title .elementor-heading-title,
.b2d-elementor-template .b2d-eh-card-title .elementor-heading-title {
  margin: 0;
  color: var(--b2d-ink);
  font-family: var(--b2d-heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.b2d-elementor-template .b2d-eh-section-title .elementor-heading-title {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.b2d-elementor-template .b2d-eh-section-intro .elementor-widget-container,
.b2d-elementor-template .b2d-eh-lead .elementor-widget-container,
.b2d-elementor-template .b2d-eh-final-text .elementor-widget-container {
  max-width: 680px;
  color: var(--b2d-muted);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  font-weight: 800;
  line-height: 1.7;
}

.b2d-elementor-template .b2d-eh-button {
  display: inline-flex;
  width: auto;
  margin: 8px 10px 0 0;
}

.b2d-elementor-template .b2d-eh-button .elementor-button,
.b2d-elementor-template .b2d-eh-card-link .elementor-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral) 58%, var(--b2d-orange));
  color: var(--b2d-white);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(216, 27, 103, 0.22);
}

.b2d-elementor-template .b2d-eh-button-secondary .elementor-button {
  border: 1px solid rgba(49, 22, 93, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--b2d-ink-2);
  box-shadow: none;
}

.b2d-elementor-template .b2d-eh-button-light .elementor-button {
  background: var(--b2d-white);
  color: var(--b2d-pink);
}

.b2d-elementor-template .b2d-eh-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(110px + env(safe-area-inset-top)) 0 78px;
  background-color: var(--b2d-night);
}

.b2d-elementor-template .b2d-eh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 7, 31, 0.78) 0%, rgba(16, 7, 31, 0.5) 42%, rgba(16, 7, 31, 0.1) 78%),
    linear-gradient(180deg, rgba(16, 7, 31, 0.14) 0%, rgba(16, 7, 31, 0.6) 100%);
  pointer-events: none;
}

.b2d-elementor-template .b2d-eh-hero > .elementor-container {
  position: relative;
  z-index: 1;
}

.b2d-elementor-template .b2d-eh-hero-copy {
  max-width: 730px;
}

.b2d-elementor-template .b2d-eh-hero .b2d-eh-kicker .elementor-widget-container,
.b2d-elementor-template .b2d-eh-hero .b2d-eh-lead .elementor-widget-container,
.b2d-elementor-template .b2d-eh-hero .b2d-eh-hero-title .elementor-heading-title {
  color: var(--b2d-white);
}

.b2d-elementor-template .b2d-eh-hero .b2d-eh-kicker .elementor-widget-container {
  color: var(--b2d-orange);
}

.b2d-elementor-template .b2d-eh-hero-title .elementor-heading-title {
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 8.2rem);
  text-shadow: 0 18px 50px rgba(16, 7, 31, 0.36);
}

.b2d-elementor-template .b2d-eh-hero .b2d-eh-lead .elementor-widget-container {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.b2d-elementor-template .b2d-eh-heading-only {
  padding-bottom: 34px;
}

.b2d-elementor-template .b2d-eh-heading-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: clamp(24px, 5vw, 76px);
}

.b2d-elementor-template .b2d-eh-card-grid-section {
  padding-top: 0;
}

.b2d-elementor-template .b2d-eh-card-grid-section > .elementor-container,
.b2d-elementor-template .b2d-eh-services-grid > .elementor-container {
  display: grid;
  gap: 18px;
}

.b2d-elementor-template .b2d-eh-card-grid-section > .elementor-container {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2d-elementor-template .b2d-eh-class-card,
.b2d-elementor-template .b2d-eh-service-card {
  width: auto !important;
  min-width: 0;
  min-height: 360px;
  display: flex;
  align-items: stretch;
  border-radius: var(--b2d-radius);
  overflow: hidden;
}

.b2d-elementor-template .b2d-eh-class-card > .elementor-widget-wrap,
.b2d-elementor-template .b2d-eh-service-card > .elementor-widget-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.b2d-elementor-template .b2d-eh-class-card .elementor-widget-wrap,
.b2d-elementor-template .b2d-eh-service-card .elementor-widget-wrap {
  position: relative;
  z-index: 1;
}

.b2d-elementor-template .b2d-eh-class-card-pink {
  background: linear-gradient(160deg, #de226b, #c4115c);
}

.b2d-elementor-template .b2d-eh-class-card-purple {
  background: linear-gradient(160deg, #4c2487, #31165d);
}

.b2d-elementor-template .b2d-eh-class-card-orange {
  background: linear-gradient(160deg, #ff9a32, #f36b52);
}

.b2d-elementor-template .b2d-eh-class-card-dark {
  background: linear-gradient(160deg, #1a092e, #10071f);
}

.b2d-elementor-template .b2d-eh-class-card .b2d-eh-card-label .elementor-widget-container,
.b2d-elementor-template .b2d-eh-class-card .b2d-eh-card-title .elementor-heading-title,
.b2d-elementor-template .b2d-eh-class-card .b2d-eh-card-text .elementor-widget-container,
.b2d-elementor-template .b2d-eh-service-card .b2d-eh-card-label .elementor-widget-container,
.b2d-elementor-template .b2d-eh-service-card .b2d-eh-card-title .elementor-heading-title,
.b2d-elementor-template .b2d-eh-service-card .b2d-eh-card-text .elementor-widget-container {
  color: var(--b2d-white);
}

.b2d-elementor-template .b2d-eh-card-title .elementor-heading-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.b2d-elementor-template .b2d-eh-card-text .elementor-widget-container {
  font-weight: 850;
  line-height: 1.45;
}

.b2d-elementor-template .b2d-eh-card-link {
  display: inline-flex;
  width: auto;
  margin-top: auto;
}

.b2d-elementor-template .b2d-eh-card-link .elementor-button {
  min-height: 40px;
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.b2d-elementor-template .b2d-eh-dynamic-section {
  padding: 0;
  background: transparent;
}

.b2d-elementor-template .b2d-eh-dynamic-section > .elementor-container {
  width: 100%;
  max-width: none;
}

.b2d-elementor-template .b2d-eh-dynamic-section .elementor-column {
  width: 100% !important;
}

.b2d-elementor-template .b2d-eh-dynamic-section .elementor-widget-container > .b2d-section {
  margin: 0;
}

.b2d-elementor-template .b2d-eh-pricing {
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 27, 103, 0.11), transparent 26%),
    linear-gradient(180deg, #fffafd 0%, #f8eef8 100%);
}

.b2d-elementor-template .b2d-eh-pricing > .elementor-container > .elementor-column {
  width: 100% !important;
}

.b2d-elementor-template .b2d-eh-price-board,
.b2d-elementor-template .b2d-eh-discounts {
  display: grid;
  gap: 16px;
}

.b2d-elementor-template .b2d-eh-price-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.b2d-elementor-template .b2d-eh-price-list,
.b2d-elementor-template .b2d-eh-discounts article {
  border: 1px solid rgba(49, 22, 93, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--b2d-shadow);
}

.b2d-elementor-template .b2d-eh-price-list {
  padding: 24px;
}

.b2d-elementor-template .b2d-eh-price-list h3,
.b2d-elementor-template .b2d-eh-discounts h4 {
  margin: 0 0 16px;
  color: var(--b2d-ink);
  font-family: var(--b2d-heading);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.b2d-elementor-template .b2d-eh-price-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(49, 22, 93, 0.1);
  color: var(--b2d-muted);
  font-weight: 850;
}

.b2d-elementor-template .b2d-eh-price-list strong {
  color: var(--b2d-pink);
  white-space: nowrap;
}

.b2d-elementor-template .b2d-eh-price-list em {
  display: inline-flex;
  margin-left: 8px;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(255, 154, 50, 0.2);
  color: var(--b2d-ink);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
}

.b2d-elementor-template .b2d-eh-discounts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2d-elementor-template .b2d-eh-discounts article {
  padding: 20px;
}

.b2d-elementor-template .b2d-eh-discounts ul {
  margin: 0;
  padding-left: 18px;
  color: var(--b2d-muted);
  font-weight: 800;
  line-height: 1.6;
}

.b2d-elementor-template .b2d-eh-services-grid {
  padding-top: 0;
}

.b2d-elementor-template .b2d-eh-services-grid > .elementor-container {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.b2d-elementor-template .b2d-eh-service-card {
  position: relative;
  min-height: 340px;
  isolation: isolate;
  background: var(--b2d-night);
}

.b2d-elementor-template .b2d-eh-service-card::before,
.b2d-elementor-template .b2d-eh-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.b2d-elementor-template .b2d-eh-service-card::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.b2d-elementor-template .b2d-eh-service-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 7, 31, 0.18) 0%, rgba(16, 7, 31, 0.78) 100%),
    linear-gradient(90deg, rgba(16, 7, 31, 0.72) 0%, rgba(16, 7, 31, 0.18) 100%);
}

.b2d-elementor-template .b2d-eh-service-private,
.b2d-elementor-template .b2d-eh-service-hall {
  grid-column: span 3;
}

.b2d-elementor-template .b2d-eh-service-birthday,
.b2d-elementor-template .b2d-eh-service-corporate,
.b2d-elementor-template .b2d-eh-service-wedding {
  grid-column: span 2;
  min-height: 300px;
}

.b2d-elementor-template .b2d-eh-service-private::before {
  background-image: url("../images/instructors/instructor-lili-pilates.jpg");
}

.b2d-elementor-template .b2d-eh-service-hall::before {
  background-image: url("../images/gradient-bg.jpeg");
}

.b2d-elementor-template .b2d-eh-service-birthday::before {
  background-image: url("../images/promo-trick-treat.jpeg");
}

.b2d-elementor-template .b2d-eh-service-corporate::before {
  background-image: url("../images/brand-banner.jpeg");
}

.b2d-elementor-template .b2d-eh-service-wedding::before {
  background-image: url("../images/services/service-wedding-dance.jpg");
}

.b2d-elementor-template .b2d-eh-card-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2d-elementor-template .b2d-eh-card-tags li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--b2d-white);
  font-size: 0.8rem;
  font-weight: 950;
}

.b2d-elementor-template .b2d-eh-show-programs {
  background: var(--b2d-night);
  color: var(--b2d-white);
}

.b2d-elementor-template .b2d-eh-show-programs > .elementor-container,
.b2d-elementor-template .b2d-eh-location > .elementor-container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
}

.b2d-elementor-template .b2d-eh-show-programs .elementor-column,
.b2d-elementor-template .b2d-eh-location .elementor-column {
  width: auto !important;
}

.b2d-elementor-template .b2d-eh-show-programs .b2d-eh-section-title .elementor-heading-title,
.b2d-elementor-template .b2d-eh-show-programs .b2d-eh-section-intro .elementor-widget-container {
  color: var(--b2d-white);
}

.b2d-elementor-template .b2d-eh-show-image img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--b2d-radius);
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.b2d-elementor-template .b2d-eh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.b2d-elementor-template .b2d-eh-chips span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--b2d-white);
  font-weight: 950;
}

.b2d-elementor-template .b2d-eh-location {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 154, 50, 0.18), transparent 24%),
    var(--b2d-paper);
}

.b2d-elementor-template .b2d-eh-location .b2d-eh-section-title span {
  color: var(--b2d-pink);
}

.b2d-elementor-template .b2d-eh-map-widget .elementor-widget-container {
  overflow: hidden;
  border-radius: var(--b2d-radius);
  background: var(--b2d-white);
  box-shadow: var(--b2d-shadow);
}

.b2d-elementor-template .b2d-eh-map-widget iframe {
  width: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.b2d-elementor-template .b2d-eh-location-details {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.b2d-elementor-template .b2d-eh-location-details span {
  color: var(--b2d-pink);
  font-weight: 950;
}

.b2d-elementor-template .b2d-eh-location-details strong {
  color: var(--b2d-ink);
  font-size: 1.18rem;
}

.b2d-elementor-template .b2d-eh-final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 154, 50, 0.28), transparent 24%),
    linear-gradient(135deg, var(--b2d-ink), var(--b2d-pink));
}

.b2d-elementor-template .b2d-eh-final-cta > .elementor-container > .elementor-column {
  width: 100% !important;
}

.b2d-elementor-template .b2d-eh-final-title .elementor-heading-title,
.b2d-elementor-template .b2d-eh-final-text .elementor-widget-container {
  margin-inline: auto;
  color: var(--b2d-white);
}

.b2d-elementor-template .b2d-eh-final-title .elementor-heading-title {
  max-width: 960px;
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.b2d-elementor-template .b2d-eh-final-text .elementor-widget-container {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1023px) {
  .b2d-elementor-template .b2d-eh-heading-column,
  .b2d-elementor-template .b2d-eh-show-programs > .elementor-container,
  .b2d-elementor-template .b2d-eh-location > .elementor-container {
    grid-template-columns: 1fr;
  }

  .b2d-elementor-template .b2d-eh-card-grid-section > .elementor-container,
  .b2d-elementor-template .b2d-eh-price-board,
  .b2d-elementor-template .b2d-eh-discounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-elementor-template .b2d-eh-services-grid > .elementor-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-elementor-template .b2d-eh-service-private,
  .b2d-elementor-template .b2d-eh-service-hall,
  .b2d-elementor-template .b2d-eh-service-birthday,
  .b2d-elementor-template .b2d-eh-service-corporate,
  .b2d-elementor-template .b2d-eh-service-wedding {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .b2d-elementor-template .b2d-eh-hero {
    min-height: 760px;
    align-items: flex-end;
    padding-top: 104px;
    background-position: 62% center;
  }

  .b2d-elementor-template .b2d-eh-hero::before {
    background:
      linear-gradient(180deg, rgba(16, 7, 31, 0.18) 0%, rgba(16, 7, 31, 0.78) 68%, rgba(16, 7, 31, 0.92) 100%),
      linear-gradient(90deg, rgba(16, 7, 31, 0.44), rgba(16, 7, 31, 0.16));
  }

  .b2d-elementor-template .b2d-eh-hero-title .elementor-heading-title {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }

  .b2d-elementor-template .b2d-eh-card-grid-section > .elementor-container,
  .b2d-elementor-template .b2d-eh-services-grid > .elementor-container,
  .b2d-elementor-template .b2d-eh-price-board,
  .b2d-elementor-template .b2d-eh-discounts {
    grid-template-columns: 1fr;
  }

  .b2d-elementor-template .b2d-eh-class-card,
  .b2d-elementor-template .b2d-eh-service-card {
    min-height: 300px;
  }

  .b2d-elementor-template .b2d-eh-button {
    width: 100%;
    margin-right: 0;
  }

  .b2d-elementor-template .b2d-eh-button .elementor-button {
    width: 100%;
  }

  .b2d-elementor-template .b2d-eh-price-list p {
    display: grid;
    gap: 6px;
  }

  .b2d-elementor-template .b2d-eh-show-image img {
    aspect-ratio: 4 / 5;
  }
}

.b2d-elementor-template .b2d-eh-section.e-con {
  --container-max-width: var(--b2d-max);
  --container-default-padding-top: 0;
  --container-default-padding-right: 0;
  --container-default-padding-bottom: 0;
  --container-default-padding-left: 0;
  position: relative;
  overflow: clip;
  padding: clamp(58px, 7vw, 112px) 0;
  background: var(--b2d-paper);
}

.b2d-elementor-template .b2d-eh-section.e-con > .e-con-inner {
  width: min(var(--b2d-max), calc(100% - (var(--b2d-gutter) * 2)));
  max-width: var(--b2d-max);
  margin-inline: auto;
  padding: 0;
}

.b2d-elementor-template .b2d-eh-section.e-con > .e-con-inner > .e-con {
  width: 100%;
}

.b2d-elementor-template .b2d-eh-kicker,
.b2d-elementor-template .b2d-eh-card-label {
  color: var(--b2d-pink);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.b2d-elementor-template .b2d-eh-lead,
.b2d-elementor-template .b2d-eh-section-intro,
.b2d-elementor-template .b2d-eh-card-text,
.b2d-elementor-template .b2d-eh-final-text {
  font-weight: 800;
  line-height: 1.7;
}

.b2d-elementor-template .b2d-eh-section-intro,
.b2d-elementor-template .b2d-eh-lead,
.b2d-elementor-template .b2d-eh-final-text {
  max-width: 680px;
  color: var(--b2d-muted);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
}

.b2d-elementor-template .b2d-eh-hero.e-con {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(110px + env(safe-area-inset-top)) 0 78px;
  background-color: var(--b2d-night);
}

.b2d-elementor-template .b2d-eh-hero-copy.e-con {
  max-width: 730px;
}

.b2d-elementor-template .b2d-eh-hero .b2d-eh-kicker {
  color: var(--b2d-orange);
}

.b2d-elementor-template .b2d-eh-hero .b2d-eh-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.b2d-elementor-template .b2d-eh-heading-column.e-con {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: clamp(24px, 5vw, 76px);
}

.b2d-elementor-template .b2d-eh-card-grid-section.e-con > .e-con-inner,
.b2d-elementor-template .b2d-eh-services-grid.e-con > .e-con-inner {
  display: grid;
  gap: 18px;
}

.b2d-elementor-template .b2d-eh-card-grid-section.e-con > .e-con-inner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2d-elementor-template .b2d-eh-class-card.e-con,
.b2d-elementor-template .b2d-eh-service-card.e-con {
  --width: auto;
  min-width: 0;
  min-height: 360px;
  border-radius: var(--b2d-radius);
  overflow: hidden;
}

.b2d-elementor-template .b2d-eh-class-card.e-con,
.b2d-elementor-template .b2d-eh-class-card.e-con > .e-con-inner,
.b2d-elementor-template .b2d-eh-service-card.e-con,
.b2d-elementor-template .b2d-eh-service-card.e-con > .e-con-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.b2d-elementor-template .b2d-eh-class-card.e-con,
.b2d-elementor-template .b2d-eh-class-card.e-con > .e-con-inner,
.b2d-elementor-template .b2d-eh-service-card.e-con,
.b2d-elementor-template .b2d-eh-service-card.e-con > .e-con-inner {
  padding: 28px 24px;
}

.b2d-elementor-template .b2d-eh-class-card.e-con > .e-con-inner,
.b2d-elementor-template .b2d-eh-service-card.e-con > .e-con-inner {
  width: 100%;
  min-height: 100%;
  padding: 0;
}

.b2d-elementor-template .b2d-eh-class-card .b2d-eh-card-label,
.b2d-elementor-template .b2d-eh-class-card .b2d-eh-card-text,
.b2d-elementor-template .b2d-eh-service-card .b2d-eh-card-label,
.b2d-elementor-template .b2d-eh-service-card .b2d-eh-card-text {
  color: var(--b2d-white);
}

.b2d-elementor-template .b2d-eh-dynamic-section.e-con {
  padding: 0;
  background: transparent;
}

.b2d-elementor-template .b2d-eh-dynamic-section.e-con > .e-con-inner {
  width: 100%;
  max-width: none;
}

.b2d-elementor-template .b2d-eh-pricing.e-con > .e-con-inner > .e-con {
  width: 100%;
}

.b2d-elementor-template .b2d-eh-services-grid.e-con > .e-con-inner {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.b2d-elementor-template .b2d-eh-service-card.e-con {
  position: relative;
  min-height: 340px;
  isolation: isolate;
  background: var(--b2d-night);
}

.b2d-elementor-template .b2d-eh-show-programs.e-con > .e-con-inner,
.b2d-elementor-template .b2d-eh-location.e-con > .e-con-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 82px);
}

.b2d-elementor-template .b2d-eh-show-programs.e-con > .e-con-inner > .e-con,
.b2d-elementor-template .b2d-eh-location.e-con > .e-con-inner > .e-con {
  width: auto;
}

.b2d-elementor-template .b2d-eh-final-cta.e-con > .e-con-inner > .e-con {
  width: 100%;
}

@media (max-width: 1023px) {
  .b2d-elementor-template .b2d-eh-heading-column.e-con,
  .b2d-elementor-template .b2d-eh-show-programs.e-con > .e-con-inner,
  .b2d-elementor-template .b2d-eh-location.e-con > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .b2d-elementor-template .b2d-eh-card-grid-section.e-con > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-elementor-template .b2d-eh-services-grid.e-con > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .b2d-elementor-template .b2d-eh-hero.e-con {
    min-height: 760px;
    align-items: flex-end;
    padding-top: 104px;
    background-position: 62% center;
  }

  .b2d-elementor-template .b2d-eh-card-grid-section.e-con > .e-con-inner,
  .b2d-elementor-template .b2d-eh-services-grid.e-con > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .b2d-elementor-template .b2d-eh-class-card.e-con,
  .b2d-elementor-template .b2d-eh-service-card.e-con {
    min-height: 300px;
  }
}

/* Managed navigation, service pages, schedule/pricing, and native blog. */
.b2d-nav-item {
  display: grid;
  gap: 4px;
}

.b2d-nav-submenu {
  display: grid;
  gap: 4px;
  margin: 0 0 8px 16px;
  padding-left: 12px;
  border-left: 2px solid rgba(216, 27, 103, 0.18);
}

.b2d-nav-submenu a {
  min-height: 40px;
  font-size: 0.92rem;
}

.b2d-primary-nav .b2d-nav-mobile-cta {
  justify-content: center;
  margin-top: 8px;
  background: var(--b2d-pink);
  color: var(--b2d-white);
}

.b2d-subpage-hero {
  padding: clamp(142px, 15vw, 190px) 0 clamp(64px, 8vw, 104px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 154, 50, 0.22), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(216, 27, 103, 0.22), transparent 38%),
    var(--b2d-night);
  color: var(--b2d-white);
}

.b2d-subpage-hero h1,
.b2d-service-hero h1,
.b2d-blog-article__header h1 {
  max-width: 940px;
  margin: 8px 0 18px;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.b2d-subpage-hero p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 700;
  line-height: 1.65;
}

.b2d-kicker {
  margin: 0;
  color: var(--b2d-pink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.b2d-schedule-pricing-page .b2d-schedule {
  padding-top: clamp(72px, 9vw, 120px);
}

.b2d-page-cta {
  display: flex;
  justify-content: center;
  padding-top: 38px;
}

.b2d-service-hero {
  padding: clamp(132px, 14vw, 178px) 0 clamp(76px, 9vw, 122px);
  background: #fff8fc;
}

.b2d-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.b2d-service-hero__copy {
  min-width: 0;
}

.b2d-service-hero h1 {
  max-width: 720px;
  color: var(--b2d-night);
}

.b2d-service-prose {
  max-width: 660px;
  color: var(--b2d-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 650;
  line-height: 1.75;
}

.b2d-service-prose p {
  margin: 0 0 1em;
}

.b2d-service-hero__media {
  position: relative;
  margin: 0;
}

.b2d-service-hero__media::before {
  content: "";
  position: absolute;
  inset: -14px 18px 18px -14px;
  border: 2px solid rgba(216, 27, 103, 0.26);
  border-radius: 36px;
  transform: rotate(-2deg);
}

.b2d-service-hero__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--b2d-shadow);
}

.b2d-service-details {
  background: var(--b2d-night);
  color: var(--b2d-white);
}

.b2d-service-details__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.b2d-service-detail-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.b2d-service-detail-card--accent {
  background: linear-gradient(135deg, rgba(216, 27, 103, 0.28), rgba(255, 154, 50, 0.16));
}

.b2d-service-detail-card h2 {
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.b2d-service-detail-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2d-service-detail-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  line-height: 1.55;
}

.b2d-service-detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--b2d-orange);
  font-weight: 950;
}

.b2d-service-process {
  background: #fff;
}

.b2d-service-process__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(30px, 6vw, 90px);
}

.b2d-service-process h2 {
  margin: 8px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
}

.b2d-service-process__inner > p {
  margin: 0;
  color: var(--b2d-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
  line-height: 1.75;
}

.b2d-service-contact {
  text-align: center;
  background: linear-gradient(135deg, #fce8f2, #fff0df);
}

.b2d-service-contact .b2d-section__inner {
  max-width: 800px;
}

.b2d-service-contact h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
}

.b2d-service-contact p {
  margin: 0 auto 28px;
  color: var(--b2d-muted);
  font-weight: 700;
}

.b2d-profile-placeholder {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding-top: clamp(150px, 17vw, 220px);
  text-align: center;
  background: #fff8fc;
}

.b2d-profile-placeholder .b2d-section__inner {
  max-width: 760px;
}

.b2d-profile-placeholder h1 {
  margin: 10px 0 18px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
}

.b2d-profile-placeholder p:not(.b2d-kicker) {
  margin: 0 auto 30px;
  color: var(--b2d-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.7;
}

.b2d-blog-list {
  background: #fff8fc;
}

.b2d-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.b2d-blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(49, 22, 93, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(49, 22, 93, 0.08);
}

.b2d-blog-card__media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-orange));
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
}

.b2d-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.b2d-blog-card:hover .b2d-blog-card__media img {
  transform: scale(1.035);
}

.b2d-blog-card__body {
  padding: 24px;
}

.b2d-blog-meta {
  margin: 0 0 10px;
  color: var(--b2d-muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.b2d-blog-meta a {
  color: inherit;
}

.b2d-blog-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.b2d-blog-card h2 a {
  color: var(--b2d-night);
}

.b2d-blog-excerpt {
  color: var(--b2d-muted);
  line-height: 1.65;
}

.b2d-blog-excerpt p {
  margin: 0 0 18px;
}

.b2d-text-link {
  color: var(--b2d-pink);
  font-weight: 900;
}

.b2d-blog-pagination,
.b2d-blog-empty {
  margin-top: 42px;
}

.b2d-blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.b2d-blog-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--b2d-night);
  font-weight: 900;
}

.b2d-blog-pagination .current {
  background: var(--b2d-pink);
  color: #fff;
}

.b2d-blog-article__header {
  padding: clamp(140px, 15vw, 190px) 0 66px;
  background: var(--b2d-night);
  color: #fff;
}

.b2d-blog-article__header-inner {
  max-width: 930px;
}

.b2d-blog-article__header .b2d-blog-meta {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.b2d-blog-article__lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.65;
}

.b2d-blog-article__featured {
  max-width: 1080px;
  margin-top: clamp(40px, 6vw, 76px);
}

.b2d-blog-article__featured img {
  width: 100%;
  height: auto;
  max-height: 720px;
  border-radius: 28px;
  object-fit: cover;
}

.b2d-blog-article__content,
.b2d-blog-article__footer {
  max-width: 780px;
}

.b2d-blog-article__content {
  padding-top: clamp(46px, 7vw, 88px);
  padding-bottom: clamp(46px, 7vw, 88px);
  color: #382f43;
  font-size: clamp(1.04rem, 1.25vw, 1.16rem);
  line-height: 1.82;
}

.b2d-blog-article__content h2,
.b2d-blog-article__content h3 {
  margin-top: 1.7em;
  color: var(--b2d-night);
  line-height: 1.1;
}

.b2d-blog-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.b2d-blog-article__footer {
  padding-bottom: 90px;
}

.b2d-blog-article__footer .post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.b2d-blog-article__footer .post-navigation a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--b2d-line);
  border-radius: 18px;
}

.b2d-blog-article__footer .post-navigation span {
  color: var(--b2d-muted);
  font-size: 0.8rem;
}

@media (min-width: 1240px) {
  .b2d-nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .b2d-nav-services-link::after {
    content: "⌄";
    margin-left: 5px;
    color: var(--b2d-pink);
    font-size: 0.9em;
  }

  .b2d-nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 12;
    width: 250px;
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--b2d-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--b2d-shadow);
    transform: translate(-50%, -8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .b2d-nav-item--services:hover .b2d-nav-submenu,
  .b2d-nav-item--services:focus-within .b2d-nav-submenu {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .b2d-nav-submenu a {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .b2d-primary-nav .b2d-nav-mobile-cta {
    display: none;
  }
}

@media (max-width: 1100px) {
  .b2d-service-hero__grid,
  .b2d-service-process__inner {
    grid-template-columns: 1fr;
  }

  .b2d-service-hero__media {
    max-width: 760px;
  }

  .b2d-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 679px) {
  .b2d-service-details__grid,
  .b2d-blog-grid,
  .b2d-blog-article__footer .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .b2d-service-hero__media::before {
    inset: -8px 10px 10px -8px;
    border-radius: 24px;
  }

  .b2d-service-hero__media img {
    border-radius: 22px;
  }

  .b2d-blog-card__body {
    padding: 20px;
  }
}
@media (max-width: 1239px) {
  .b2d-primary-nav {
    max-height: calc(100svh - 104px);
    overflow-y: auto;
  }
}

/* Unified editorial header, accessible services menu, and page rhythm (v1.4). */
.b2d-site-header,
.b2d-show-programs-page .b2d-site-header {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(49, 22, 93, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(49, 22, 93, 0.07);
  color: var(--b2d-ink);
  backdrop-filter: blur(18px);
}

.b2d-site-header.is-scrolled,
.b2d-site-header.is-open,
.b2d-show-programs-page .b2d-site-header.is-scrolled,
.b2d-show-programs-page .b2d-site-header.is-open {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(49, 22, 93, 0.12);
}

body.admin-bar .b2d-site-header {
  top: 32px;
}

.b2d-site-header__inner {
  position: relative;
  min-height: 58px;
}

.b2d-logo,
.b2d-show-programs-page .b2d-logo span {
  color: var(--b2d-ink);
}

.b2d-logo img {
  width: 46px;
  height: 46px;
}

.b2d-profile-shortcut {
  width: 56px;
  min-height: 52px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 14px;
  color: var(--b2d-pink);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.b2d-profile-shortcut svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.b2d-profile-shortcut:hover,
.b2d-profile-shortcut:focus-visible {
  background: rgba(216, 27, 103, 0.1);
  color: var(--b2d-ink);
  transform: translateY(-1px);
}

.b2d-nav-services-toggle {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--b2d-ink-2);
  font-weight: 800;
  cursor: pointer;
}

.b2d-nav-services-toggle:hover,
.b2d-nav-services-toggle:focus-visible,
.b2d-nav-services-toggle[aria-expanded="true"] {
  background: linear-gradient(90deg, rgba(216, 27, 103, 0.12), rgba(255, 154, 50, 0.14));
  color: var(--b2d-pink);
}

.b2d-nav-services-toggle svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.b2d-nav-services-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.b2d-nav-submenu {
  max-height: 0;
  overflow: hidden;
  margin: 0 8px;
  padding: 0 0 0 12px;
  opacity: 0;
  visibility: hidden;
  transition: max-height 240ms ease, margin 180ms ease, opacity 160ms ease, visibility 160ms ease;
}

.b2d-nav-item--services.is-open .b2d-nav-submenu,
.b2d-nav-submenu.is-open {
  max-height: 360px;
  margin-top: 4px;
  margin-bottom: 8px;
  opacity: 1;
  visibility: visible;
}

.b2d-nav-submenu a {
  min-height: 38px;
  border-radius: 10px;
}

.b2d-menu-toggle {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--b2d-pink), var(--b2d-coral));
  box-shadow: 0 10px 24px rgba(216, 27, 103, 0.24);
}

.b2d-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.b2d-menu-toggle span:nth-child(2) {
  transform: none;
}

.b2d-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.b2d-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.b2d-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: scaleX(0);
}

.b2d-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.b2d-service-hero {
  padding: clamp(148px, 13vw, 188px) 0 clamp(76px, 8vw, 116px);
  background:
    radial-gradient(circle at 8% 18%, rgba(216, 27, 103, 0.09), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(255, 154, 50, 0.11), transparent 34%),
    #fffafc;
}

.b2d-service-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  line-height: 0.96;
}

.b2d-service-details {
  padding: clamp(76px, 8vw, 112px) 0;
}

.b2d-service-details__grid {
  gap: clamp(20px, 3vw, 34px);
}

.b2d-service-detail-card {
  min-height: 100%;
  border-radius: 30px;
}

.b2d-service-process {
  padding: clamp(82px, 9vw, 126px) 0;
}

.b2d-service-contact {
  padding: clamp(76px, 8vw, 108px) 0;
}

.b2d-service-contact .b2d-button {
  min-width: 190px;
}

.b2d-blog-hero {
  padding: clamp(148px, 13vw, 184px) 0 clamp(70px, 8vw, 104px);
  background:
    linear-gradient(115deg, rgba(216, 27, 103, 0.09), rgba(255, 154, 50, 0.1)),
    #fffafc;
  color: var(--b2d-ink);
}

.b2d-blog-hero h1 {
  color: var(--b2d-ink);
}

.b2d-blog-hero p:last-child {
  color: var(--b2d-muted);
}

.b2d-blog-list {
  padding: clamp(72px, 8vw, 112px) 0;
}

.b2d-blog-card {
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.b2d-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(49, 22, 93, 0.14);
}

.b2d-blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.b2d-blog-card__body .b2d-text-link {
  margin-top: auto;
}

.b2d-blog-article__header {
  padding: clamp(148px, 13vw, 186px) 0 44px;
  background: #fff;
  color: var(--b2d-ink);
  text-align: center;
}

.b2d-blog-article__header-inner {
  max-width: 1050px;
}

.b2d-blog-article__header h1 {
  max-width: 1020px;
  margin: 22px auto 20px;
  color: var(--b2d-ink);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.b2d-blog-article__header .b2d-blog-meta {
  margin: 0 0 12px;
  color: var(--b2d-muted);
}

.b2d-blog-article__lead {
  margin: 0 auto;
  color: var(--b2d-muted);
}

.b2d-blog-article__featured {
  max-width: 1180px;
  margin-top: 28px;
}

.b2d-blog-article__featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(49, 22, 93, 0.14);
}

.b2d-blog-article__content {
  padding-top: clamp(56px, 7vw, 92px);
}

.b2d-blog-article__footer {
  padding-bottom: clamp(64px, 8vw, 104px);
}

.b2d-blog-related {
  padding: clamp(70px, 8vw, 106px) 0;
  background: linear-gradient(135deg, #f8f3f7, #fff8f0);
}

.b2d-blog-related__heading {
  margin: 0 0 34px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1;
}

.b2d-blog-related .b2d-section__inner {
  max-width: 1180px;
}

.b2d-blog-related .b2d-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.b2d-blog-related .b2d-blog-card {
  border-radius: 20px;
}

.b2d-blog-related .b2d-blog-card__media {
  aspect-ratio: 16 / 9;
}

.b2d-blog-related .b2d-blog-card__body {
  padding: 18px;
}

.b2d-blog-related .b2d-blog-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.6vw, 1.48rem);
  line-height: 1.12;
}

.b2d-blog-related .b2d-blog-meta {
  font-size: 0.76rem;
}

@media (max-width: 1239px) {
  .b2d-site-header__inner {
    gap: 10px;
  }

  .b2d-primary-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    max-height: calc(100svh - 104px);
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.99);
  }

  .b2d-primary-nav a,
  .b2d-nav-services-toggle {
    min-height: 42px;
  }

  .b2d-primary-nav .b2d-nav-mobile-cta {
    min-height: 44px;
    margin-top: 4px;
    color: #fff;
  }
}

@media (min-width: 1240px) {
  .b2d-site-header,
  .b2d-show-programs-page .b2d-site-header {
    padding: 10px 0;
  }

  .b2d-site-header__inner {
    gap: clamp(8px, 1vw, 16px);
  }

  .b2d-primary-nav {
    gap: 0;
  }

  .b2d-primary-nav a,
  .b2d-nav-services-toggle,
  .b2d-show-programs-page .b2d-primary-nav a {
    min-height: 40px;
    padding: 0 clamp(6px, 0.52vw, 10px);
    color: var(--b2d-ink-2);
    font-size: clamp(0.78rem, 0.72vw, 0.88rem);
    white-space: nowrap;
  }

  .b2d-nav-services-toggle {
    width: auto;
    justify-content: center;
  }

  .b2d-nav-item--services::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 10px;
  }

  .b2d-nav-submenu {
    top: calc(100% - 1px);
    width: 286px;
    max-height: none;
    overflow: visible;
    margin: 0;
    padding: 10px;
    border-left: 1px solid var(--b2d-line);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
  }

  .b2d-nav-item--services:hover .b2d-nav-submenu,
  .b2d-nav-item--services:focus-within .b2d-nav-submenu,
  .b2d-nav-item--services.is-open .b2d-nav-submenu,
  .b2d-nav-submenu.is-open {
    max-height: none;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .b2d-nav-submenu a,
  .b2d-show-programs-page .b2d-nav-submenu a {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.83rem;
  }
}

@media (max-width: 782px) {
  body.admin-bar .b2d-site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .b2d-logo img {
    width: 42px;
    height: 42px;
  }

  .b2d-logo span {
    font-size: 0.86rem;
  }

  .b2d-profile-shortcut {
    width: 44px;
    min-height: 44px;
    margin-left: auto;
  }

  .b2d-profile-shortcut span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    font-size: 0.56rem;
    white-space: nowrap;
  }

  .b2d-service-hero {
    padding: 132px 0 68px;
  }

  .b2d-service-hero__grid {
    gap: 48px;
  }

  .b2d-service-hero h1 {
    margin-top: 10px;
    font-size: clamp(2.25rem, 9.5vw, 4.2rem);
    overflow-wrap: normal;
    hyphens: none;
  }

  .b2d-service-details,
  .b2d-service-process,
  .b2d-service-contact {
    padding: 62px 0;
  }

  .b2d-service-detail-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .b2d-blog-hero,
  .b2d-blog-article__header {
    padding-top: 132px;
  }

  .b2d-blog-article__header {
    padding-bottom: 30px;
  }

  .b2d-blog-article__header h1 {
    font-size: clamp(2.5rem, 13vw, 4.1rem);
  }

  .b2d-blog-article__featured {
    margin-top: 18px;
  }

  .b2d-blog-article__featured img {
    border-radius: 20px;
  }

  .b2d-blog-related .b2d-blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 459px) {
  .b2d-site-header__inner {
    width: min(100% - 24px, var(--b2d-max));
  }

  .b2d-logo {
    gap: 7px;
  }

  .b2d-logo span {
    font-size: 0.76rem;
  }

  .b2d-logo strong {
    font-size: 0.61rem;
  }

  .b2d-menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

.b2d-blog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--b2d-pink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2d-blog-breadcrumb::before {
  content: "←";
  font-size: 1rem;
  letter-spacing: 0;
}

.b2d-blog-article__content > :first-child {
  margin-top: 0;
}

.b2d-blog-article__content p,
.b2d-blog-article__content ul,
.b2d-blog-article__content ol,
.b2d-blog-article__content blockquote {
  margin-bottom: 1.45em;
}

.b2d-blog-article__content li + li {
  margin-top: 0.55em;
}

.b2d-blog-article__content blockquote {
  margin-inline: 0;
  padding: 22px 26px;
  border-left: 4px solid var(--b2d-pink);
  border-radius: 0 18px 18px 0;
  background: #fff3f8;
  color: var(--b2d-ink);
  font-size: 1.08em;
  font-weight: 800;
}

.b2d-blog-article__content blockquote p:last-child {
  margin-bottom: 0;
}

.b2d-article-cta {
  margin-top: clamp(48px, 7vw, 74px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 154, 50, 0.24), transparent 34%),
    linear-gradient(135deg, #251044, #110820);
  color: #fff;
}

.b2d-blog-article__content .b2d-article-cta h2 {
  margin: 0 0 12px;
  color: #fff;
}

.b2d-article-cta p:last-child {
  margin-bottom: 0;
}

.b2d-blog-related__empty {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--b2d-muted);
  font-weight: 700;
}

@media (max-width: 679px) {
  .b2d-blog-article__content ul,
  .b2d-blog-article__content ol {
    padding-left: 24px;
  }

  .b2d-blog-article__content blockquote {
    padding: 20px;
  }

  .b2d-article-cta {
    border-radius: 22px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .b2d-blog-related .b2d-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .b2d-nav-item--services:focus-within:not(:hover):not(.is-open) .b2d-nav-submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
