/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  --ink:     #1a1a1a;
  --ink-2:   #2a2a2a;
  --ink-3:   #3d3d3d;
  --muted:   #6a6a6a;
  --line:    rgba(26,26,26,.12);
  --red:     #c8102e;
  --red-dk:  #a10d25;
  --bg:      #ffffff;
  --bg-alt:  #f6f4f2;
  --maxw:    1180px;
}

/* ── Reset ────────────────────────────────────────────────────── */
.bpl-page *, .bpl-page *::before, .bpl-page *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.bpl-page { font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.7; font-size: 16.5px; -webkit-font-smoothing: antialiased; }
.bpl-page img { max-width: 100%; display: block; }
.bpl-page a { color: var(--red); text-decoration: none; transition: color .2s ease; }
.bpl-page a:hover { color: var(--red-dk); }

/* ── Shared ───────────────────────────────────────────────────── */
.bpl-wrap { max-width: var(--maxw); margin: 0 auto; }
.bpl-script { font-family: 'Great Vibes', cursive; color: var(--red); font-size: 42px; line-height: 1; display: block; margin-bottom: 2px; }
.bpl-section-head { text-align: center; margin-bottom: 56px; }
.bpl-section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px); font-weight: 500; color: var(--ink); letter-spacing: -.3px; line-height: 1.2; }
.bpl-divider { width: 48px; height: 2px; background: var(--red); margin: 22px auto 0; border: 0; }
.bpl-eyebrow { font-family: 'Great Vibes', cursive; color: var(--red); font-size: 44px; line-height: 1; margin-bottom: 6px; }

/* ── Buttons ──────────────────────────────────────────────────── */
.bpl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 34px;
  font-family: 'Lato', sans-serif; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; font-size: 12.5px;
  border: 2px solid; border-radius: 2px;
  transition: all .22s ease; cursor: pointer; text-decoration: none;
}
.bpl-btn--primary { background: var(--red); color: #fff !important; border-color: var(--red); }
.bpl-btn--primary:hover { background: var(--red-dk); border-color: var(--red-dk); color: #fff; }
.bpl-btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.bpl-btn--ghost:hover { background: var(--ink); color: #fff; }
.bpl-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Topbar ───────────────────────────────────────────────────── */
.bpl-topbar {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 16px 28px; position: sticky; top: 0; z-index: 50;
  transition: box-shadow .25s ease;
}
.bpl-topbar.scrolled { box-shadow: 0 4px 20px rgba(26,26,26,.08); }
.bpl-topbar__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: nowrap; flex-direction: row; }
.bpl-topbar__brand img { height: 48px; width: auto; }
.bpl-topbar__contact { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--muted); }
.bpl-topbar__addr { display: none; }
@media(min-width:720px) { .bpl-topbar__addr { display: inline; } }
.bpl-topbar__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
.bpl-topbar__ph { color: var(--red); font-weight: 700; letter-spacing: .4px; font-size: 15.5px; display: inline-flex; align-items: center; gap: 7px; }

/* ── Hero ─────────────────────────────────────────────────────── */
.bpl-hero { padding: 100px 28px 110px; background: var(--bg); text-align: center; }
.bpl-hero__inner { max-width: 880px; margin: 0 auto; }
.bpl-hero__ornament { display: block; margin: 0 auto 18px; height: 42px; opacity: .55; }
.bpl-hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px,5.2vw,60px);
  font-weight: 500; line-height: 1.1; color: var(--ink);
  margin-bottom: 26px; letter-spacing: -.4px;
}
.bpl-hero__lead { font-size: 18.5px; color: var(--ink-3); max-width: 720px; margin: 0 auto 34px; line-height: 1.75; }
.bpl-hero__phone {
  display: inline-block; margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 34px; color: var(--red); font-weight: 600; letter-spacing: .3px;
}
.bpl-hero__phone:hover { color: var(--red-dk); }
.bpl-hero__sub { font-size: 12px; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 34px; }
.bpl-hero .bpl-cta-row { margin-top: 0; }

/* ── About ────────────────────────────────────────────────────── */
.bpl-about { background: var(--bg-alt); padding: 90px 28px; }
.bpl-about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.bpl-about__img { position: relative; }
.bpl-about__img img { width: 100%; height: auto; object-fit: cover; border-radius: 2px; position: relative; z-index: 1; }
.bpl-about__img::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--red); z-index: 0; border-radius: 2px; }
.bpl-about__copy .bpl-script { text-align: left; margin-bottom: 0; }
.bpl-about__copy h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,42px); font-weight: 500; color: var(--ink); letter-spacing: -.3px; line-height: 1.2; text-align: left; margin-bottom: 24px; }
.bpl-about__copy p { color: var(--ink-3); margin-bottom: 18px; font-size: 16.5px; line-height: 1.85; }
.bpl-about__copy p:last-of-type { margin-bottom: 0; }

/* Stats */
.bpl-stat-row { display: flex; gap: 24px; flex-wrap: nowrap; justify-content: center; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 28px; }
.bpl-stat__n { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--red); font-weight: 600; line-height: 1; }
.bpl-stat__l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.6px; margin-top: 6px; }

/* ── Classes Grid ─────────────────────────────────────────────── */
.bpl-classes { background: #fff; padding: 90px 28px; }
.bpl-class-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bpl-class-card {
  display: block; background: #fff;
  border: 1px solid var(--line); border-radius: 2px;
  text-decoration: none; color: var(--ink); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.bpl-class-card:hover { transform: translateY(-4px); box-shadow: 0 22px 45px rgba(26,26,26,.09); border-color: var(--red); }
.bpl-class-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; }
.bpl-class-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.bpl-class-card:hover .bpl-class-card__img img { transform: scale(1.06); }
.bpl-class-card__body { padding: 22px 20px 24px; text-align: center; }
.bpl-class-card__body h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 19px; color: var(--ink); margin-bottom: 10px; letter-spacing: -.2px; }
.bpl-class-card:hover .bpl-class-card__body h3 { color: var(--red); }
.bpl-class-more { font-size: 11.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--red); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.bpl-class-more::after { content: ""; width: 14px; height: 1px; background: var(--red); transition: width .25s ease; display: inline-block; }
.bpl-class-card:hover .bpl-class-more::after { width: 24px; }

/* ── Why Strip ────────────────────────────────────────────────── */
.bpl-why { background: var(--ink); color: #eee; padding: 70px 28px; }
.bpl-why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: var(--maxw); margin: 0 auto; }
.bpl-why__item { text-align: center; }
.bpl-why__ic { width: 44px; height: 44px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--red); }
.bpl-why__ic svg { width: 32px; height: 32px; }
.bpl-why__item h4 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 17px; color: #fff; margin-bottom: 6px; letter-spacing: .2px; }
.bpl-why__item p { font-size: 14px; color: #b9b9b9; line-height: 1.6; }

/* ── Visit ────────────────────────────────────────────────────── */
.bpl-visit { background: var(--bg-alt); padding: 90px 28px; text-align: center; }
.bpl-visit__lead { max-width: 720px; margin: 0 auto 50px; color: var(--ink-3); font-size: 17px; line-height: 1.8; }
.bpl-info-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 880px; margin: 0 auto 48px;
  padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.bpl-info-label { font-family: 'Great Vibes', cursive; color: var(--red); font-size: 28px; line-height: 1; margin-bottom: 6px; }
.bpl-info-val { font-family: 'Playfair Display', serif; font-size: 17.5px; color: var(--ink); font-weight: 500; line-height: 1.55; }
.bpl-info-val a { color: var(--ink); }
.bpl-info-val a:hover { color: var(--red); }

/* ── Footer ───────────────────────────────────────────────────── */
.bpl-footer { background: var(--ink); color: #bdbdbd; text-align: center; padding: 36px 28px; font-size: 13px; letter-spacing: .3px; }
.bpl-footer__brand { font-family: 'Playfair Display', serif; color: #fff; font-size: 18px; letter-spacing: .5px; margin-bottom: 10px; display: inline-flex; align-items: center; gap: 10px; }
.bpl-footer__sc { font-family: 'Great Vibes', cursive; color: var(--red); font-size: 26px; }
.bpl-footer a { color: #fff; }
.bpl-footer p { opacity: .85; margin-top: 4px; }
.bpl-footer__copy { font-size: 12px; opacity: .6 !important; margin-top: 10px !important; }

/* ── Editor preview blocks ────────────────────────────────────── */
.bpl-editor-block { border: 2px dashed #c8102e; padding: 16px 20px; border-radius: 4px; background: #fff8f8; }
.bpl-editor-block--dark { background: #1a1a1a; color: #eee; border-color: #c8102e; }
.bpl-editor-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 980px) {
  .bpl-about__grid { grid-template-columns: 1fr; gap: 44px; }
  .bpl-about__img::before { inset: 14px -14px -14px 14px; }
  .bpl-class-grid { grid-template-columns: repeat(3, 1fr); }
  .bpl-why__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 720px) {
  .bpl-about, .bpl-classes, .bpl-visit { padding: 70px 22px; }
  .bpl-hero { padding: 72px 22px 90px; }
  .bpl-class-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bpl-info-row { grid-template-columns: 1fr; gap: 26px; padding: 28px 0; }
  .bpl-stat-row { gap: 16px; }
  .bpl-hero__phone { font-size: 28px; }
}
@media (max-width: 480px) {
  .bpl-topbar { padding: 12px 16px; }
  .bpl-topbar__contact { width: 100%; justify-content: flex-end; }
  .bpl-cta-row { flex-direction: column; align-items: stretch; }
  .bpl-btn { width: 100%; }
  .bpl-class-grid { grid-template-columns: 1fr; }
}
