/* Styles for WooCommerce and inner pages */

.bfm-inner-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px); height: 76px;
  background: rgba(13,13,20,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bfm-inner-nav__logo {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 500;
  letter-spacing: 0.12em; color: white; text-transform: uppercase;
}
.bfm-inner-nav__logo span { color: var(--gold); }
.bfm-inner-nav__links { display: flex; gap: 32px; align-items: center; }
.bfm-inner-nav__link {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); transition: color 0.2s;
  text-decoration: none;
}
.bfm-inner-nav__link:hover { color: white; }
.bfm-inner-nav__cart {
  position: relative;
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.55); transition: color 0.2s;
  text-decoration: none;
}
.bfm-inner-nav__cart:hover { color: white; }
.bfm-inner-nav__cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--charcoal);
  font-size: 8px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.bfm-inner-main {
  min-height: 60vh; padding: 64px 56px; background: var(--cream);
}

/* WooCommerce base resets */
.woocommerce,
.woocommerce-page {
  font-family: 'Outfit', sans-serif;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 14px 32px !important;
  border: 1px solid var(--gold) !important;
  transition: opacity 0.2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--gold) !important;
  opacity: 0.85 !important;
}
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--gold) !important;
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
  color: var(--gold) !important;
}

.bfm-inner-footer {
  background: oklch(10% 0.01 240); padding: 40px var(--px);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.bfm-inner-footer__grid {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.bfm-inner-footer__brand {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 400;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.3); text-transform: uppercase;
}
.bfm-inner-footer__brand span { color: var(--gold); }
.bfm-inner-footer__links { display: flex; gap: 36px; }
.bfm-inner-footer__link {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,0.25); letter-spacing: 0.14em;
  text-transform: uppercase; transition: color 0.2s; text-decoration: none;
}
.bfm-inner-footer__link:hover { color: var(--gold); }
.bfm-inner-footer__copy {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: rgba(255,255,255,0.15); letter-spacing: 0.1em; text-align: right;
}

@media (max-width: 900px) {
  .bfm-inner-nav { padding: 0 24px; }
  .bfm-inner-nav__links { gap: 12px; }
  .bfm-inner-nav__link { display: none; }
  .bfm-inner-main { padding: 40px 24px; }
  .bfm-inner-footer { padding: 32px 24px; }
  .bfm-inner-footer__grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .bfm-inner-footer__links { justify-content: center; }
  .bfm-inner-footer__copy { text-align: center; }
}
@media (max-width: 600px) {
  .bfm-inner-nav { padding: 0 16px; }
  .bfm-inner-nav__logo { font-size: 13px; letter-spacing: 0.05em; }
  .bfm-inner-nav__links { gap: 8px; }
  .bfm-inner-nav a.btn-accent { padding: 8px 14px !important; font-size: 9px !important; letter-spacing: 0.14em !important; }

  /* Cart table → responsive grid rows */
  .woocommerce table.shop_table thead { display: none; }
  .woocommerce table.shop_table,
  .woocommerce table.shop_table tbody { display: block; width: 100%; }
  .woocommerce table.shop_table tr.cart_item {
    display: grid;
    grid-template-columns: 28px 72px 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "remove thumb name  subtotal"
      ".      .     qty   qty";
    gap: 4px 12px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }
  .woocommerce table.shop_table tr.cart_item td { padding: 0; border: none; font-size: 13px; }
  .woocommerce table.shop_table td.product-remove   { grid-area: remove;   align-self: start; padding-top: 6px; }
  .woocommerce table.shop_table td.product-thumbnail { grid-area: thumb; }
  .woocommerce table.shop_table td.product-thumbnail img { width: 72px; height: 72px; object-fit: cover; }
  .woocommerce table.shop_table td.product-name     { grid-area: name;     align-self: start; }
  .woocommerce table.shop_table td.product-price    { display: none; }
  .woocommerce table.shop_table td.product-quantity { grid-area: qty; }
  .woocommerce table.shop_table td.product-subtotal { grid-area: subtotal; align-self: start; text-align: right; font-size: 15px; }
  .woocommerce table.shop_table tr.actions          { display: block; padding: 16px 0; }
  .woocommerce table.shop_table tr.actions td       { padding: 0; border: none; }
}

/* ─────────────────────────────────────────
   SINGLE PRODUCT PAGE
───────────────────────────────────────── */

.bfm-product-hero {
  background: var(--dark);
  padding: 120px var(--px) 80px;
}
.bfm-product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
}
.bfm-product-hero__left .label { margin-bottom: 20px; }
.bfm-product-hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.bfm-product-hero__title {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.bfm-product-hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}
.bfm-product-hero__price .woocommerce-Price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 40px;
}
.bfm-product-hero .quantity { display: none; }
.bfm-product-hero .single_add_to_cart_button {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 16px 48px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: opacity 0.2s !important;
}
.bfm-product-hero .single_add_to_cart_button:hover { opacity: 0.85 !important; }

.bfm-product-desc {
  background: var(--cream);
  padding: 80px var(--px);
}
.bfm-product-desc__inner { max-width: 720px; }
.bfm-product-desc__inner .label { margin-bottom: 24px; }
.bfm-product-desc__body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--taupe);
  font-weight: 300;
}
.bfm-product-desc__body p { margin-bottom: 16px; }
.bfm-product-desc__body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.bfm-product-desc__body ul li { margin-bottom: 6px; }

/* WooCommerce product tabs */
.woocommerce-tabs { background: var(--cream); padding: 80px var(--px); }
.woocommerce-tabs ul.tabs {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: flex; gap: 32px;
  border-bottom: 1px solid var(--line);
}
.woocommerce-tabs ul.tabs li {
  padding: 0 0 14px;
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(0,0,0,0.35); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--charcoal); }
.woocommerce-tabs ul.tabs li.active a { color: var(--charcoal); }
.woocommerce-tabs ul.tabs li a { color: inherit; text-decoration: none; }
.woocommerce-tabs .woocommerce-Tabs-panel {
  font-size: 15px; line-height: 1.85;
  color: var(--taupe); font-weight: 300; max-width: 760px;
}
.woocommerce-tabs .woocommerce-Tabs-panel p { margin-bottom: 14px; }
.product_meta {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 20px;
}

/* ─────────────────────────────────────────
   ARCHIVE / CATEGORY PAGE
───────────────────────────────────────── */

.bfm-archive-hero {
  background: var(--dark);
  padding: 100px var(--px) 72px;
}
.bfm-archive-hero__inner .label { margin-bottom: 16px; }
.bfm-archive-hero .woocommerce-breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
  display: block;
}
.bfm-archive-hero .woocommerce-breadcrumb a { color: rgba(255,255,255,0.4); }
.bfm-archive-hero__title {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bfm-archive-hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.7;
}

.bfm-archive-grid {
  background: var(--cream);
  padding: 80px var(--px);
}
.bfm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-bottom: 64px;
}
.bfm-product-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bfm-product-card__cat {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.bfm-product-card__name {
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.bfm-product-card__price .woocommerce-Price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.bfm-product-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--taupe);
  font-weight: 300;
  flex: 1;
}
.bfm-archive-pagination { text-align: center; }
.bfm-archive-pagination .page-numbers {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--taupe);
  padding: 8px 12px;
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.bfm-archive-pagination .page-numbers.current,
.bfm-archive-pagination .page-numbers:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.bfm-archive-empty {
  font-size: 15px;
  color: var(--taupe);
  font-weight: 300;
  padding: 40px 0;
}

/* ─────────────────────────────────────────
   CART (Option B — CSS overrides)
───────────────────────────────────────── */

.woocommerce-cart .bfm-inner-main,
.woocommerce-checkout .bfm-inner-main {
  background: var(--cream);
  padding: 80px var(--px);
}
.woocommerce table.shop_table {
  border: none;
  border-collapse: collapse;
  width: 100%;
}
.woocommerce table.shop_table th {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  padding: 0 16px 16px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.woocommerce table.shop_table td {
  padding: 24px 16px 24px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 15px;
  color: var(--charcoal);
}
.woocommerce table.shop_table .product-name a { color: var(--charcoal); font-weight: 500; }
.woocommerce table.shop_table .product-price .woocommerce-Price-amount,
.woocommerce table.shop_table .product-subtotal .woocommerce-Price-amount { color: var(--gold); }
.woocommerce table.shop_table a.remove {
  color: var(--taupe) !important;
  font-size: 18px;
  font-weight: 300;
}
.woocommerce table.shop_table a.remove:hover { color: var(--charcoal) !important; }
.woocommerce .cart-collaterals { margin-top: 48px; }
.woocommerce .cart_totals h2 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  margin-bottom: 24px;
}
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.woocommerce .cart_totals .order-total .woocommerce-Price-amount {
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
}
.woocommerce .wc-proceed-to-checkout { padding-top: 24px; }
.woocommerce button.button[disabled],
.woocommerce button.button:disabled {
  opacity: 0.4 !important; cursor: default !important;
  background: var(--gold) !important;
}
.woocommerce .cart_totals .wc-proceed-to-checkout { display: flex; flex-direction: column; gap: 12px; }
.woocommerce .paypal-button-container,
.woocommerce .paypal-button { max-width: 100% !important; border-radius: 0 !important; }

/* Desktop: totals below the product table, constrained width */
@media (min-width: 769px) {
  .woocommerce-cart .cart-collaterals { margin-top: 48px !important; }
  .woocommerce-cart .cart_totals { float: none !important; width: 380px !important; }
}

/* Table column sizing */
.woocommerce table.shop_table td.product-thumbnail { width: 88px; }
.woocommerce table.shop_table td.product-thumbnail img { width: 72px; height: 72px; object-fit: cover; }
.woocommerce table.shop_table th.product-quantity,
.woocommerce table.shop_table td.product-quantity { width: 100px; }
.woocommerce .quantity input.qty { width: 56px !important; text-align: center; }

/* Booking session meta (Date, Time, Class) inside cart item name */
.woocommerce table.shop_table .product-name .wc-item-meta { list-style: none; margin: 8px 0 0; padding: 0; }
.woocommerce table.shop_table .product-name .wc-item-meta li {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 3px;
}
.woocommerce table.shop_table .product-name .wc-item-meta strong { font-weight: 400; }

/* Actions: hide coupon + Update Cart, position Continue Shopping */
.woocommerce-cart-form .actions { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; flex-wrap: wrap; gap: 16px; }
.woocommerce-cart-form .actions .coupon { display: flex; align-items: center; gap: 8px; }
.woocommerce-cart-form .actions .coupon input#coupon_code {
  border: 1px solid var(--line); background: white;
  padding: 10px 14px; font-family: 'Outfit', sans-serif;
  font-size: 13px; color: var(--charcoal); border-radius: 0;
  outline: none; transition: border-color 0.2s; width: 160px;
}
.woocommerce-cart-form .actions .coupon input#coupon_code:focus { border-color: var(--gold); }
.woocommerce-cart-form .actions .coupon .button {
  font-size: 9px !important; padding: 10px 20px !important; letter-spacing: 0.14em !important;
}
.woocommerce-cart-form .actions .button[name="update_cart"] { display: none !important; }
.bfm-continue-shopping {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none; transition: color 0.2s;
}
.bfm-continue-shopping:hover { color: var(--charcoal); }

/* ─────────────────────────────────────────
   CHECKOUT (Option B — CSS overrides)
───────────────────────────────────────── */

.woocommerce-checkout h3 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.woocommerce-checkout .form-row { margin-bottom: 20px; }
.woocommerce-checkout .form-row label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 8px;
}
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus { border-color: var(--gold); }
.woocommerce-checkout #payment {
  background: var(--cream-mid);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  font-size: 14px;
  color: var(--charcoal);
}
.woocommerce-checkout #order_review table tfoot tr:last-child .woocommerce-Price-amount {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
}

/* ─────────────────────────────────────────
   MY ACCOUNT
───────────────────────────────────────── */

.woocommerce-account .bfm-inner-main { padding: 80px var(--px); }
.woocommerce-MyAccount-navigation {
  margin-bottom: 48px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  text-decoration: none;
  transition: color 0.2s;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover { color: var(--gold); }
.woocommerce-MyAccount-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
}
.woocommerce-MyAccount-content h2 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.woocommerce-orders-table th {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  padding: 0 16px 16px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.woocommerce-orders-table td {
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--charcoal);
}
.woocommerce-orders-table td a { color: var(--charcoal); font-weight: 500; }
.woocommerce-orders-table .woocommerce-Price-amount { color: var(--gold); }

/* ─────────────────────────────────────────
   GENERIC PAGE (Terms, Privacy Policy, etc.)
───────────────────────────────────────── */

.bfm-page-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--taupe);
  font-weight: 300;
  max-width: 720px;
}
.bfm-page-content p { margin-bottom: 16px; }
.bfm-page-content h2, .bfm-page-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.bfm-page-content h2 { font-size: 24px; }
.bfm-page-content h3 { font-size: 18px; }
.bfm-page-content a { color: var(--gold); text-decoration: underline; }
.bfm-page-content ul, .bfm-page-content ol { padding-left: 20px; margin-bottom: 16px; }
.bfm-page-content li { margin-bottom: 6px; }

@media (max-width: 900px) {
  .bfm-product-hero { padding: 80px 24px 60px; }
  .bfm-product-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .bfm-product-desc { padding: 60px 24px; }
  .bfm-archive-hero { padding: 72px 24px 56px; }
  .bfm-archive-grid { padding: 60px 24px; }
  .bfm-products-grid { grid-template-columns: 1fr; }
  .woocommerce-cart .bfm-inner-main,
  .woocommerce-checkout .bfm-inner-main { padding: 48px 24px; }
}

/* ─────────────────────────────────────────
   SPECIALITY PAGE
───────────────────────────────────────── */

.bfm-speciality-hero {
  position: relative;
  min-height: 72vh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--px) 80px;
}
.bfm-speciality-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,13,20,0.65) 0%, rgba(13,13,20,0.3) 50%, rgba(13,13,20,0.92) 100%);
}
.bfm-speciality-hero__bg img, .bfm-speciality-hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.bfm-speciality-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.bfm-speciality-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
  transition: color 0.2s;
  text-decoration: none;
}
.bfm-speciality-hero__back:hover { color: rgba(255,255,255,0.7); }
.bfm-speciality-hero__content .label { display: block; margin-bottom: 8px; }
.bfm-speciality-hero__content h1 {
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 900;
  line-height: 0.88;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  margin-top: 20px;
}
.bfm-speciality-hero__content h1 span { color: var(--gold); }
.bfm-speciality-hero__sub {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 40px;
}
.bfm-speciality-hero__tags { display: flex; gap: 12px; flex-wrap: wrap; }
.bfm-speciality-hero__tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
}

.bfm-disciplines {
  background: var(--cream);
  padding: 120px var(--px);
}
.bfm-disciplines__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.bfm-disciplines__header .label { margin-bottom: 12px; display: block; }
.bfm-disciplines__header h2 {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
.bfm-disciplines__intro {
  max-width: 320px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--taupe);
  font-weight: 300;
}
.bfm-disciplines__divider { height: 1px; background: var(--line); }
.bfm-disc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.bfm-disc-row:hover { background: oklch(95% 0.008 78); }
.bfm-disc-row:hover .bfm-disc-row__idx { color: var(--gold); }
.bfm-disc-row__idx {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--taupe);
  letter-spacing: 0.12em;
  transition: color 0.2s;
}
.bfm-disc-row__name { font-size: 28px; font-weight: 500; margin-bottom: 6px; }
.bfm-disc-row__origin { font-size: 12px; color: var(--taupe); font-style: italic; }
.bfm-disc-row__desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--taupe);
  font-weight: 300;
  max-width: 380px;
}
.bfm-disc-row__cta { text-align: right; }
.bfm-disc-row__cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Amelia calendar section */
.bfm-amelia-calendar {
  background: var(--dark);
  padding: 100px var(--px);
}
.bfm-amelia-calendar__inner { max-width: 1200px; margin: 0 auto; }
.bfm-amelia-calendar__inner .label { display: block; margin-bottom: 12px; }
.bfm-amelia-calendar__inner h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-top: 16px;
  margin-bottom: 48px;
}

.bfm-speciality-how {
  background: var(--charcoal);
  padding: 120px var(--px);
}
.bfm-speciality-how__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.bfm-speciality-how__inner .label { display: block; margin-bottom: 8px; }
.bfm-speciality-how__inner h2 {
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 0.9;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  margin-top: 20px;
}
.bfm-speciality-how__body {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-bottom: 40px;
}
.bfm-speciality-how__steps { display: flex; flex-direction: column; }
.bfm-speciality-how__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.bfm-speciality-how__step-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  padding-top: 3px;
}
.bfm-speciality-how__step-title { font-size: 16px; font-weight: 500; color: white; margin-bottom: 4px; }
.bfm-speciality-how__step-desc { font-size: 16px; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.6; }

.bfm-speciality-contact {
  background: var(--dark);
  padding: 120px var(--px);
}
.bfm-speciality-contact__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.bfm-speciality-contact__inner h2 {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.9;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  margin-top: 20px;
}
.bfm-speciality-contact__inner h2 span { color: var(--gold); }
.bfm-speciality-contact__inner > p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-bottom: 48px;
}
.bfm-speciality-contact__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 48px;
}
.bfm-speciality-contact__option { background: var(--dark); padding: 40px 32px; text-align: center; }
.bfm-speciality-contact__icon { font-size: 28px; margin-bottom: 16px; }
.bfm-speciality-contact__title { font-size: 18px; font-weight: 600; color: white; margin-bottom: 8px; }
.bfm-speciality-contact__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
}
.bfm-speciality-contact__legal {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
}

.bfm-speciality-cta {
  background: var(--charcoal);
  padding: 100px var(--px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bfm-speciality-cta__bg { position: absolute; inset: 0; opacity: 0.03; }
.bfm-speciality-cta__inner { position: relative; z-index: 1; }
.bfm-speciality-cta__inner .label { display: block; margin-bottom: 8px; }
.bfm-speciality-cta__inner h2 {
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 300;
  line-height: 0.9;
  color: white;
  margin-bottom: 36px;
  margin-top: 20px;
}
.bfm-speciality-cta__btns { display: flex; gap: 16px; justify-content: center; }

@media (max-width: 900px) {
  .bfm-speciality-hero { padding: 0 24px 64px; }
  .bfm-disciplines { padding: 72px 24px; }
  .bfm-disciplines__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bfm-disc-row { grid-template-columns: 48px 1fr; gap: 12px 16px; }
  .bfm-disc-row__desc { display: none; }
  .bfm-disc-row__cta { grid-column: 2; text-align: left; padding-bottom: 8px; }
  .bfm-disc-row__cta-label { display: none; }
  .bfm-amelia-calendar { padding: 72px 24px; }
  .bfm-speciality-how { padding: 72px 24px; }
  .bfm-speciality-how__inner { grid-template-columns: 1fr; gap: 48px; }
  .bfm-speciality-contact { padding: 72px 24px; }
  .bfm-speciality-contact__options { grid-template-columns: 1fr; }
  .bfm-speciality-cta { padding: 72px 24px; }
  .bfm-speciality-cta__btns { flex-direction: column; align-items: center; }
}

/* ─────────────────────────────────────────
   SERVICE PAGES — SHARED
───────────────────────────────────────── */

.bfm-svc-hero {
  position: relative; min-height: 72vh; background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--px) 80px;
}
.bfm-svc-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,13,20,0.7) 0%, rgba(13,13,20,0.4) 50%, rgba(13,13,20,0.92) 100%);
}
.bfm-svc-hero__bg img, .bfm-svc-hero__bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.bfm-svc-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.bfm-svc-hero__back {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 40px;
  transition: color 0.2s; text-decoration: none;
}
.bfm-svc-hero__back:hover { color: rgba(255,255,255,0.7); }
.bfm-svc-hero h1 {
  font-size: clamp(52px, 7vw, 108px); font-weight: 900;
  line-height: 0.88; color: white; letter-spacing: -0.02em;
  margin-bottom: 28px; margin-top: 20px;
}
.bfm-svc-hero h1 span { color: var(--gold); }
.bfm-svc-hero__tagline {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.bfm-svc-hero__sub {
  font-size: 19px; line-height: 1.75;
  color: rgba(255,255,255,0.5); font-weight: 300;
  max-width: 520px; margin-bottom: 40px;
}
.bfm-svc-hero__meta {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.bfm-svc-hero__meta-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 6px;
}
.bfm-svc-hero__meta-val { font-size: 16px; color: rgba(255,255,255,0.7); }

.bfm-svc-section-header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 80px;
}
.bfm-svc-section-header h2 {
  font-size: clamp(48px,5vw,80px); font-weight: 800;
  line-height: 0.9; letter-spacing: -0.03em; margin-top: 20px;
}
.bfm-svc-section-intro { max-width: 340px; font-size: 17px; line-height: 1.8; color: var(--taupe); font-weight: 300; }

.bfm-svc-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.bfm-svc-card { background: var(--cream); padding: 40px 36px; }
.bfm-svc-card__num { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 20px; }
.bfm-svc-card__title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.bfm-svc-card__desc { font-size: 17px; line-height: 1.75; color: var(--taupe); font-weight: 300; }

.bfm-svc-about { background: var(--cream); padding: 120px var(--px); }
.bfm-svc-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.bfm-svc-about h2 {
  font-size: clamp(44px,4.5vw,68px); font-weight: 800;
  line-height: 0.9; letter-spacing: -0.03em; margin-bottom: 36px; margin-top: 20px;
}
.bfm-svc-about__body { font-size: 18px; line-height: 1.9; color: var(--taupe); font-weight: 300; margin-bottom: 20px; }
.bfm-svc-about__quote {
  font-size: 17px; line-height: 1.8; color: var(--gold); font-weight: 300; font-style: italic;
  padding-top: 24px; border-top: 1px solid var(--line);
}

.bfm-svc-benefits { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.bfm-svc-benefit {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.bfm-svc-benefit__num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; padding-top: 2px; }
.bfm-svc-benefit__title { font-size: 17px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.bfm-svc-benefit__desc { font-size: 16px; color: var(--taupe); font-weight: 300; line-height: 1.6; }

.bfm-svc-schedule { background: var(--charcoal); padding: 120px var(--px); }
.bfm-svc-schedule__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.bfm-svc-schedule h2 {
  font-size: clamp(44px,4.5vw,68px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-bottom: 24px; margin-top: 20px;
}
.bfm-svc-schedule__body { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 16px; }
.bfm-svc-schedule__price {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 40px;
}
.bfm-svc-sched-block { border-top: 1px solid rgba(255,255,255,0.08); }
.bfm-svc-sched-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bfm-svc-sched-day { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.bfm-svc-sched-class { font-size: 17px; color: white; }
.bfm-svc-sched-class--gold { color: var(--gold); }
.bfm-svc-sched-time { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.1em; }

.bfm-svc-cta {
  background: var(--charcoal); padding: 100px var(--px);
  text-align: center; position: relative; overflow: hidden;
}
.bfm-svc-cta__bg { position: absolute; inset: 0; opacity: 0.03; }
.bfm-svc-cta__inner { position: relative; z-index: 1; }
.bfm-svc-cta h2 {
  font-size: clamp(48px,5.5vw,88px); font-weight: 300;
  line-height: 0.9; color: white; margin-bottom: 36px; margin-top: 20px;
}
.bfm-svc-cta__btns { display: flex; gap: 16px; justify-content: center; }
.bfm-svc-cta__sub {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.5); font-weight: 300;
  max-width: 560px; margin: 0 auto 40px;
}

/* ─────────────────────────────────────────
   PERSONAL TRAINING PAGE
───────────────────────────────────────── */

.bfm-pt-expect { background: var(--cream); padding: 120px var(--px); }
.bfm-pt-trainers { background: oklch(14% 0.013 240); padding: 100px var(--px); }
.bfm-pt-trainers h2 {
  font-size: clamp(40px,4vw,60px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-top: 16px; margin-bottom: 40px;
}
.bfm-pt-trainers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.07); }
.bfm-pt-trainer { background: oklch(14% 0.013 240); padding: 40px 36px; }
.bfm-pt-trainer__num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 16px; }
.bfm-pt-trainer__name { font-size: 28px; font-weight: 600; color: white; margin-bottom: 12px; }
.bfm-pt-trainer__avail { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.9; }
.bfm-pt-trainer[data-trainer] { cursor: pointer; transition: background 0.2s, border-left 0.2s; border-left: 3px solid transparent; }
.bfm-pt-trainer[data-trainer]:hover { background: oklch(17% 0.018 240); }
.bfm-pt-trainer--active { border-left-color: var(--gold) !important; background: oklch(17% 0.018 240); }

.bfm-pt-process { background: var(--charcoal); padding: 120px var(--px); }
.bfm-pt-process h2 {
  font-size: clamp(48px,5vw,76px); font-weight: 800;
  line-height: 0.9; letter-spacing: -0.03em; color: white; margin-bottom: 64px; margin-top: 20px;
}
.bfm-pt-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 40px;
  padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start;
}
.bfm-pt-step__num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; padding-top: 4px; }
.bfm-pt-step__title { font-size: 22px; font-weight: 500; color: white; margin-bottom: 8px; }
.bfm-pt-step__desc { font-size: 19px; line-height: 1.75; color: rgba(255,255,255,0.4); font-weight: 300; }

.bfm-pt-pricing { background: var(--dark); padding: 120px var(--px); }
.bfm-pt-pricing__header { text-align: center; margin-bottom: 64px; }
.bfm-pt-pricing h2 {
  font-size: clamp(48px,5vw,80px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-top: 20px; margin-bottom: 16px;
}
.bfm-pt-pricing h2 span { color: var(--gold); }
.bfm-pt-pricing__note { font-size: 17px; color: rgba(255,255,255,0.35); font-weight: 300; }
.bfm-pt-pricing__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: rgba(255,255,255,0.07); max-width: 900px; margin: 0 auto 48px;
}
.bfm-pt-card {
  background: var(--dark); padding: 48px 32px; text-align: center; position: relative;
}
.bfm-pt-card--popular { background: oklch(17% 0.015 240); }
.bfm-pt-card--popular::before {
  content: 'BEST VALUE'; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em;
  color: var(--gold); border: 1px solid var(--gold); padding: 3px 10px; white-space: nowrap;
}
.bfm-pt-card__label { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.bfm-pt-card__price { font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.bfm-pt-card__unit { font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.bfm-pt-card .btn-accent { width: 100%; text-align: center; font-size: 10px; padding: 12px 20px; display: block; }
.bfm-pt-pricing__legal { text-align: center; font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; }

/* ─────────────────────────────────────────
   GROUP CLASSES PAGE
───────────────────────────────────────── */

.bfm-gc-classes { background: var(--cream); padding: 120px var(--px); }
.bfm-gc-class-item {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px;
  align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line);
}
.bfm-gc-class__idx { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--taupe); letter-spacing: 0.12em; }
.bfm-gc-class__name { font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.bfm-gc-class__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--taupe); }
.bfm-gc-class__dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; }
.bfm-gc-class__sched { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.1em; margin-top: 8px; }
.bfm-gc-class__badge { display: inline-block; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; margin-top: 6px; }
.bfm-gc-class__badge--in { color: var(--gold); border: 1px solid rgba(255,200,50,0.35); }
.bfm-gc-class__badge--sep { color: rgba(255,180,50,0.65); border: 1px solid rgba(255,180,50,0.25); }
.bfm-gc-class__desc { font-size: 19px; line-height: 1.75; color: var(--taupe); font-weight: 300; max-width: 380px; }

.bfm-gc-sched { background: var(--charcoal); padding: 80px var(--px); }
.bfm-gc-sched__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.bfm-gc-sched h3 { font-size: 32px; font-weight: 700; color: white; }
.bfm-gc-sched__note { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; }
.bfm-gc-sched-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: rgba(255,255,255,0.07); }
.bfm-gc-sched-col { background: var(--charcoal); padding: 28px 24px; }
.bfm-gc-sched-col__day { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.bfm-gc-sched-item { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bfm-gc-sched-item:last-child { border-bottom: none; }
.bfm-gc-sched-item--spin { border-left: 2px solid rgba(255,200,50,0.4); padding-left: 8px; }
.bfm-gc-sched-item--spin .bfm-gc-sched-item__name { color: rgba(255,200,50,0.7); }
.bfm-gc-sched-item__time { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 3px; }
.bfm-gc-sched-item__name { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 400; }

/* ─────────────────────────────────────────
   OPEN TRAINING PAGE
───────────────────────────────────────── */

.bfm-ot-equip { background: var(--cream); padding: 120px var(--px); }
.bfm-ot-equip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); }
.bfm-ot-equip-card { background: var(--cream); padding: 36px 28px; }
.bfm-ot-equip-card__num { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 16px; }
.bfm-ot-equip-card__title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.bfm-ot-equip-card__desc { font-size: 16px; line-height: 1.7; color: var(--taupe); font-weight: 300; }

.bfm-ot-rules { background: var(--charcoal); padding: 120px var(--px); }
.bfm-ot-rules__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.bfm-ot-rules h2 {
  font-size: clamp(44px,4.5vw,72px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-bottom: 32px; margin-top: 20px;
}
.bfm-ot-rules__body { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.4); font-weight: 300; }
.bfm-ot-rule {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bfm-ot-rule__label { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; padding-top: 2px; }
.bfm-ot-rule__val { font-size: 17px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.6; }

/* ─────────────────────────────────────────
   SHARED PRICING TABLE (Group + Open Training)
───────────────────────────────────────── */

.bfm-svc-pricing { background: var(--dark); padding: 120px var(--px); }
.bfm-svc-pricing__header { text-align: center; margin-bottom: 64px; }
.bfm-svc-pricing h2 {
  font-size: clamp(48px,5vw,80px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-top: 20px; margin-bottom: 16px;
}
.bfm-svc-pricing h2 span { color: var(--gold); }
.bfm-svc-pricing__note { font-size: 17px; color: rgba(255,255,255,0.35); font-weight: 300; }
.bfm-svc-pricing-table { max-width: 640px; margin: 0 auto 48px; }
.bfm-svc-pricing-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07); position: relative;
}
.bfm-svc-pricing-row--popular::before {
  content: ''; position: absolute; left: -20px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 60%; background: var(--gold);
}
.bfm-svc-pricing-row__left { display: flex; align-items: center; gap: 16px; }
.bfm-svc-pricing-row__name { font-size: 22px; font-weight: 400; color: white; }
.bfm-svc-pricing-row__badge { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; border: 1px solid var(--gold); padding: 3px 8px; }
.bfm-svc-pricing-row__right { display: flex; align-items: center; gap: 32px; }
.bfm-svc-pricing-row__price { font-size: 36px; font-weight: 400; color: var(--gold); }
.bfm-svc-pricing__legal { text-align: center; font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 0.1em; }

/* ─────────────────────────────────────────
   BOXING PAGE
───────────────────────────────────────── */

.bfm-boxing-benefits { background: var(--cream); padding: 120px var(--px); }
.bfm-boxing-benefits__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 80px; }
.bfm-boxing-benefits h2 { font-size: clamp(48px,5vw,80px); font-weight: 800; line-height: 0.9; letter-spacing: -0.03em; margin-top: 20px; }
.bfm-boxing-benefits__intro { max-width: 340px; font-size: 17px; line-height: 1.8; color: var(--taupe); font-weight: 300; }
.bfm-boxing-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.bfm-boxing-card { background: var(--cream); padding: 40px 36px; }
.bfm-boxing-card__num { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 20px; }
.bfm-boxing-card__title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.bfm-boxing-card__desc { font-size: 17px; line-height: 1.75; color: var(--taupe); font-weight: 300; }
.bfm-boxing-booking { background: var(--charcoal); padding: 120px var(--px); }
.bfm-boxing-booking__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.bfm-boxing-booking h2 {
  font-size: clamp(44px,4.5vw,68px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-bottom: 24px; margin-top: 20px;
}
.bfm-boxing-booking__body { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 40px; }
.bfm-boxing-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start;
}
.bfm-boxing-step__num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; padding-top: 3px; }
.bfm-boxing-step__title { font-size: 17px; font-weight: 500; color: white; margin-bottom: 4px; }
.bfm-boxing-step__desc { font-size: 16px; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.6; }

/* ─────────────────────────────────────────
   COSTA HYBRID TRAINING PAGE
───────────────────────────────────────── */

.bfm-ch-expect { background: var(--cream); padding: 120px var(--px); }
.bfm-ch-expect__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 80px; }
.bfm-ch-expect h2 { font-size: clamp(48px,5vw,80px); font-weight: 800; line-height: 0.9; letter-spacing: -0.03em; margin-top: 20px; }
.bfm-ch-expect__intro { max-width: 340px; font-size: 17px; line-height: 1.8; color: var(--taupe); font-weight: 300; }
.bfm-ch-expect-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.bfm-ch-card { background: var(--cream); padding: 40px 36px; }
.bfm-ch-card__num { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--gold); letter-spacing: 0.12em; margin-bottom: 20px; }
.bfm-ch-card__title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.bfm-ch-card__desc { font-size: 17px; line-height: 1.75; color: var(--taupe); font-weight: 300; }
.bfm-ch-process { background: var(--charcoal); padding: 120px var(--px); }
.bfm-ch-process__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.bfm-ch-process h2 {
  font-size: clamp(44px,4.5vw,68px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-bottom: 24px; margin-top: 20px;
}
.bfm-ch-process__body { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 40px; }
.bfm-ch-pt-note { margin-top: 32px; padding: 24px; border: 1px solid rgba(255,255,255,0.08); }
.bfm-ch-pt-note__label { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.bfm-ch-pt-note__text { font-size: 16px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.6; }

/* ─────────────────────────────────────────
   PILATES SCULPT PAGE
───────────────────────────────────────── */

.bfm-ps-machines { background: var(--dark); padding: 100px var(--px); }
.bfm-ps-machines__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.bfm-ps-machines h2 {
  font-size: clamp(40px,4vw,60px); font-weight: 800;
  line-height: 0.9; color: white; letter-spacing: -0.03em; margin-bottom: 28px; margin-top: 16px;
}
.bfm-ps-machines__body { font-size: 18px; line-height: 1.9; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 16px; }
.bfm-ps-machines__price { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 24px; }
.bfm-ps-feature {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start;
}
.bfm-ps-feature__num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.12em; padding-top: 2px; }
.bfm-ps-feature__title { font-size: 17px; font-weight: 500; color: white; margin-bottom: 4px; }
.bfm-ps-feature__desc { font-size: 16px; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.6; }

/* ─────────────────────────────────────────
   SERVICE PAGES — RESPONSIVE
───────────────────────────────────────── */

@media (max-width: 900px) {
  .bfm-svc-hero { padding: 0 24px 64px; }
  .bfm-svc-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bfm-svc-cards-grid { grid-template-columns: 1fr; }
  .bfm-svc-about__inner { grid-template-columns: 1fr; gap: 48px; }
  .bfm-svc-schedule__inner { grid-template-columns: 1fr; gap: 48px; }
  .bfm-svc-cta { padding: 72px 24px; }
  .bfm-svc-cta__btns { flex-direction: column; align-items: center; }
  .bfm-pt-trainers__grid { grid-template-columns: 1fr; }
  .bfm-pt-pricing__grid { grid-template-columns: repeat(2,1fr); }
  .bfm-gc-class-item { grid-template-columns: 48px 1fr; }
  .bfm-gc-class__desc { display: none; }
  .bfm-gc-sched-grid { grid-template-columns: 1fr 1fr; }
  .bfm-ot-equip-grid { grid-template-columns: 1fr 1fr; }
  .bfm-ot-rules__inner { grid-template-columns: 1fr; gap: 48px; }
  .bfm-boxing-benefits__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bfm-boxing-benefits-grid { grid-template-columns: 1fr; }
  .bfm-boxing-booking__inner { grid-template-columns: 1fr; gap: 48px; }
  .bfm-ch-expect__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bfm-ch-expect-grid { grid-template-columns: 1fr; }
  .bfm-ch-process__inner { grid-template-columns: 1fr; gap: 48px; }
  .bfm-ps-machines__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  /* PT packages: force single column (overrides the 900px 2-col rule above) */
  .bfm-pt-pricing { padding: 80px 24px; }
  .bfm-pt-pricing__grid { grid-template-columns: 1fr; }
  /* Inner nav: separate icons from Book Now */
  .bfm-inner-nav__links a.btn-accent { margin-left: 12px; }
}

/* ─────────────────────────────────────────
   BOOKING CALENDAR
───────────────────────────────────────── */

.bfm-cal {
  width: 100%;
  font-family: 'Outfit', sans-serif;
}

/* Header — month nav */
.bfm-cal__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.bfm-cal__nav {
  background: none; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5); font-size: 18px;
  width: 40px; height: 40px;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.bfm-cal__nav:hover { border-color: var(--gold); color: var(--gold); }
.bfm-cal__month-label {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Weekday row */
.bfm-cal__weekdays {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 8px;
}
.bfm-cal__wday {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); text-align: center;
  padding-bottom: 8px;
}

/* Day grid */
.bfm-cal__body {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}
.bfm-cal__cell {
  min-height: 88px; padding: 10px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 4px;
}
.bfm-cal__cell--empty { background: transparent; border-color: transparent; }
.bfm-cal__cell--past { opacity: 0.5; }
.bfm-cal__date {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,0.25); margin-bottom: 4px;
}

/* Session pills */
.bfm-cal__pill {
  background: rgba(255,200,50,0.08);
  border: 1px solid rgba(255,200,50,0.2);
  padding: 5px 8px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.bfm-cal__pill:hover {
  background: rgba(255,200,50,0.15);
  border-color: var(--gold);
}
.bfm-cal__pill--full  { opacity: 0.4; cursor: default; }
.bfm-cal__pill--past  { opacity: 0.3; cursor: default; }
.bfm-cal__pill-name {
  display: block; font-size: 10px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bfm-cal__pill-meta {
  display: block; font-family: 'DM Mono', monospace;
  font-size: 9px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em; margin-top: 2px;
}

/* Overlay */
.bfm-cal__overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.65);
}

/* Modal */
.bfm-cal__modal {
  position: fixed; z-index: 901;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 48px));
  max-height: 90vh; overflow-y: auto;
}
.bfm-cal__modal-inner {
  background: oklch(14% 0.013 240);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px 40px;
  position: relative;
}
.bfm-cal__modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 24px; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.bfm-cal__modal-close:hover { color: white; }
.bfm-cal__modal-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.bfm-cal__modal-date {
  font-size: clamp(20px, 3vw, 28px); font-weight: 700;
  color: white; line-height: 1.2; margin-bottom: 6px;
}
.bfm-cal__modal-time {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,0.45); letter-spacing: 0.1em; margin-bottom: 6px;
}
.bfm-cal__modal-avail {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase;
}
.bfm-cal__modal-divider {
  height: 1px; background: rgba(255,255,255,0.07); margin: 28px 0;
}
.bfm-cal__modal-price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.bfm-cal__modal-price-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.bfm-cal__modal-price-val {
  font-size: 22px; font-weight: 300; color: var(--gold);
}

/* Quantity row */
.bfm-cal__modal-qty-row {
  display: flex; align-items: center; gap: 20px; margin-bottom: 20px;
}
.bfm-cal__qty-btn {
  width: 40px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,0.12);
  color: white; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.bfm-cal__qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.bfm-cal__qty-display {
  font-size: 28px; font-weight: 300; color: white;
  min-width: 36px; text-align: center;
}
.bfm-cal__modal-total {
  font-size: 15px; color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.bfm-cal__modal-total strong { color: var(--gold); font-size: 20px; font-weight: 300; }
.bfm-cal__modal-book { width: 100%; text-align: center; font-size: 11px; padding: 16px 32px; }
.bfm-cal__modal-feedback {
  margin-top: 14px; font-family: 'DM Mono', monospace; font-size: 10px;
  color: #e07; letter-spacing: 0.08em; text-align: center;
}

@media (max-width: 700px) {
  .bfm-amelia-calendar { padding: 60px 16px; }
  .bfm-cal__cell { min-height: 72px; padding: 8px 4px; }
  .bfm-cal__pill { padding: 4px 5px; }
  .bfm-cal__pill-name { font-size: 9px; }
  .bfm-cal__pill-meta { display: none; }
  .bfm-cal__modal-inner { padding: 40px 24px 32px; }
  /* PT pane: stretch edge-to-edge, compensating the section's 16px padding */
  .bfm-pt-booking-pane { padding: 40px 0 64px; margin: 0 -16px; }
  .bfm-pt-booking-pane__header { padding: 0 16px 32px; }
  .bfm-pt-booking-pane .bfm-cal__pill { padding: 6px 4px; text-align: center; }
  /* PT cells: expand fully — show all slots without scroll */
  .bfm-pt-booking-pane .bfm-cal__cell--pt { max-height: none; overflow-y: visible; }
}

/* ── PT pill: gold tint ───────────────────────────────────────────────────── */
.bfm-cal__pill--pt { background: oklch(22% 0.04 60); border-left: 2px solid var(--gold); }
.bfm-cal__pill--pt:hover { background: oklch(28% 0.06 60); }
.bfm-cal__pill--pt .bfm-cal__pill-name { color: var(--gold); }

/* ── PT pane: show time only (trainer shown in header) ───────────────────── */
.bfm-pt-booking-pane .bfm-cal__pill-name { display: none; }
.bfm-pt-booking-pane .bfm-cal__pill-meta {
  display: block !important;
  color: var(--gold);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; margin-top: 0;
}

/* ── PT modal extras ─────────────────────────────────────────────────────── */
.bfm-cal__modal-trainer {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.bfm-cal__modal-price-note {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: oklch(70% 0 0);
  letter-spacing: 0.08em; margin-top: 4px;
}
.bfm-cal__modal-qty-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: oklch(55% 0 0);
  letter-spacing: 0.1em; text-align: center;
  margin-top: -4px; margin-bottom: 16px;
  text-transform: uppercase;
}

/* ── PT booking: single trainer pane ─────────────────────────────────────── */
.bfm-pt-booking-pane { padding: 48px 0 80px; background: oklch(10% 0.01 240); }
.bfm-pt-booking-pane__label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.bfm-pt-booking-pane__name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; color: white;
  margin-bottom: 32px; letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────
   LOCATION (shared with home)
───────────────────────────────────────── */
.bfm-location { background: var(--cream); padding: 120px var(--px); }
.bfm-location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.bfm-location h2 {
  font-size: clamp(52px,5vw,76px); font-weight: 800; line-height: 0.9;
  margin-bottom: 48px; letter-spacing: -0.03em; margin-top: 20px;
}
.bfm-location h2 span { color: var(--gold); }
.bfm-location-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 24px 0; border-top: 1px solid var(--line);
}
.bfm-location-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; padding-top: 2px;
}
.bfm-location-content { font-size: 17px; line-height: 1.75; color: var(--taupe); font-weight: 300; }
.bfm-location__map-label {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.bfm-location__map-wrap { overflow: hidden; border: 1px solid var(--line); margin-bottom: 16px; }
.bfm-location__map-btn { display: block; }
.bfm-location__map-btn .btn-outline { width: 100%; text-align: center; font-size: 10px; }

/* ─────────────────────────────────────────
   PROMO LANDING PAGE
───────────────────────────────────────── */
.bfm-promo-strip {
  position: relative; background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.bfm-promo-strip .bfm-hero__strip-item {
  padding: 24px 32px; display: flex; gap: 20px; align-items: flex-start;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.bfm-promo-strip .bfm-hero__strip-item:last-child { border-right: none; }
.bfm-promo-strip .bfm-hero__strip-num {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--gold); letter-spacing: 0.1em; padding-top: 2px;
}
.bfm-promo-strip .bfm-hero__strip-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em; margin-bottom: 3px;
}
.bfm-promo-strip .bfm-hero__strip-desc {
  font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 300;
}

/* Classes grid */
.bfm-promo-classes { background: var(--cream); padding: 120px var(--px); }
.bfm-promo-classes__header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.bfm-promo-classes__header h2 {
  font-size: clamp(40px,5vw,64px); font-weight: 800;
  line-height: 0.95; letter-spacing: -0.02em; margin: 8px 0 20px;
}
.bfm-promo-classes__header h2 span { color: var(--gold); }
.bfm-promo-classes__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--line); }
.bfm-svc-card__meta {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--taupe); margin-top: 14px;
}

/* Social proof */
.bfm-promo-social { background: var(--charcoal); padding: 120px var(--px); text-align: center; }
.bfm-promo-social__header { max-width: 640px; margin: 0 auto 56px; }
.bfm-promo-social__header h2 {
  font-size: clamp(36px,4.5vw,56px); font-weight: 300;
  line-height: 1; color: white; margin: 8px 0 0;
}
.bfm-promo-social__header h2 span { color: var(--gold); }
.bfm-promo-social__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto 40px;
}
.bfm-promo-social__card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 32px; text-align: left;
}
.bfm-promo-social__stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.bfm-promo-social__quote { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.65); font-weight: 300; margin-bottom: 16px; font-style: italic; }
.bfm-promo-social__name { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.bfm-promo-social__link {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); transition: opacity 0.2s;
}
.bfm-promo-social__link:hover { opacity: 0.7; }

.bfm-promo-faq { background: var(--cream); padding: 120px var(--px); }
.bfm-promo-faq__inner { max-width: 800px; margin: 0 auto; }
.bfm-promo-faq__inner h2 {
  font-size: clamp(32px,4vw,48px); font-weight: 800;
  line-height: 1; letter-spacing: -0.02em; margin: 8px 0 48px;
}
.bfm-promo-faq__list { display: flex; flex-direction: column; gap: 32px; }
.bfm-promo-faq__item { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.bfm-promo-faq__q { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.bfm-promo-faq__a { font-size: 16px; color: var(--taupe); font-weight: 300; line-height: 1.7; }

@media (max-width: 900px) {
  .bfm-promo-strip { grid-template-columns: repeat(2,1fr); }
  .bfm-promo-strip .bfm-hero__strip-item { padding: 16px 16px; }
  .bfm-promo-classes { padding: 72px 24px; }
  .bfm-promo-classes__grid { grid-template-columns: repeat(2,1fr); }
  .bfm-promo-social { padding: 72px 24px; }
  .bfm-promo-social__grid { grid-template-columns: 1fr; }
  .bfm-location__grid { grid-template-columns: 1fr; gap: 48px; }
  .bfm-promo-faq { padding: 72px 24px; }
}

/* ─────────────────────────────────────────
   CLASS TEMPORARILY UNAVAILABLE NOTICE
───────────────────────────────────────── */
.bfm-svc-unavailable {
  max-width: 520px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.bfm-svc-unavailable__badge {
  display: inline-block;
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 4px 10px; margin-bottom: 16px;
}
.bfm-svc-unavailable__text {
  font-size: 16px; line-height: 1.7; font-weight: 300;
  color: rgba(255,255,255,0.5); margin-bottom: 24px;
}
.bfm-svc-hero__meta-val--unavailable { color: var(--gold) !important; }
