/**
 * BTY theme main stylesheet — Figma tokens & layouts.
 */

:root {
  --bty-navy: #14233c;
  --bty-navy-deep: #0b1322;
  --bty-gold: #b89a5a;
  --bty-cream: #f8f6f2;
  --bty-sage: #5c6d60;
  --bty-ink: #2b2a27;
  --bty-muted: #4a5568;
  --bty-border: #c9c1b5;
  --bty-line: #e8e2d9;
  --bty-soft: #9b8f80;
  --bty-white: #ffffff;
  --bty-font-serif: "Cormorant Garamond", Georgia, serif;
  --bty-font-sans: "Inter", system-ui, sans-serif;
  /* Frame 1440; content 1280 (= 1440 − 80×2). Side inset grows on wide viewports. */
  --bty-max: 1440px;
  --bty-content: 1280px;
  --bty-pad: 80px;
  --bty-section-x: max(var(--bty-pad), calc((100% - var(--bty-content)) / 2));
  --bty-header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background: var(--bty-cream);
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--bty-font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--bty-ink);
  background: var(--bty-cream);
  -webkit-font-smoothing: antialiased;
}
main#main {
  margin: 0;
  padding: 0;
}

/* WP admin bar — offset fixed header below the toolbar (same on mobile + tablet ≤782).
   Must match WP bump: 32px desktop, 46px ≤782px. */
@media screen and (min-width: 783px) {
  body.admin-bar .bty-header {
    top: 32px;
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .bty-header {
    top: 45px;
  }
}

/*
 * Phones only (≤600px): WP core sets #wpadminbar { position:absolute }, so the bar
 * scrolls away while html { margin-top:46px } remains — sticky header looks 46px low.
 * Tablet keeps the bar position:fixed; mirror that on mobile.
 */
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--bty-font-serif); font-weight: 400; margin: 0; color: var(--bty-navy); }
p { margin: 0; }
button, input, textarea { font: inherit; }


/* Contact form deep-link (header Apply Now) */
#contact-form,
#application-form {
  scroll-margin-top: calc(var(--bty-header-h) + 24px);
}
.bty-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: var(--bty-navy);
  color: #fff;
}
.bty-skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto;
  overflow: visible;
  white-space: normal;
}

/* Buttons */
.bty-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  font-family: var(--bty-font-sans); font-weight: 500; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; line-height: 1; white-space: nowrap;
  padding: 16px 36px; transition: opacity .2s ease, background .2s ease;
}
.bty-btn:hover { opacity: .92; }
.bty-btn--gold { background: var(--bty-gold); color: var(--bty-navy); font-weight: 600; letter-spacing: 1.5px; font-size: 13px; padding: 18px 40px; }
.bty-btn--navy { background: var(--bty-navy); color: #fff; }
.bty-btn--outline { background: transparent; border-color: var(--bty-navy); color: var(--bty-navy); }
.bty-btn--outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.bty-btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.9); padding: 18px 24px; gap: 8px; letter-spacing: 1.5px; font-size: 13px; }
.bty-btn--sm { padding: 16px 36px; }
.bty-btn--full { width: 100%; }

img.bty-icon,
.bty-btn img,
.bty-header__social img,
.bty-guide__feature img,
.bty-carousel__btn img,
.bty-meta-item img,
.bty-lang img,
.bty-enquiries__email img,
.bty-why__badge img,
.bty-search button img,
.bty-footer__tiktok-icon img {
  max-width: none;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.bty-guide__feature img,
.bty-programme-card__check img { width: 10px !important; height: 10px !important; }
.bty-carousel__btn img { width: 18px !important; height: 18px !important; }
.bty-header__social img,
.bty-footer__tiktok-icon img { width: 20px !important; height: 20px !important; }
.bty-why__badge img { width: 24px !important; height: 24px !important; }
.bty-meta-item img,
.bty-search button img { width: 14px !important; height: 14px !important; }
.bty-lang img { width: 16px !important; height: 16px !important; }
.bty-enquiries__email img { width: 18px !important; height: 18px !important; }

/* Section label */
.bty-section-label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.bty-section-label--left { justify-content: flex-start; }
.bty-section-label__line { width: 16px; height: 1px; background: var(--bty-navy); }
.bty-section-label__line--lg { width: 32px; background: rgba(255,255,255,.4); }
.bty-section-label__line--sage { background: var(--bty-sage); }
.bty-section-label__text {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--bty-navy); white-space: nowrap;
}
.bty-section-label__text--light { color: rgba(255,255,255,.9); letter-spacing: 3px; font-size: 14px; }
.bty-section-label__text--sage { color: var(--bty-sage); font-size: 13px; }

/* Header — fixed overlay; solid footer navy after scroll.
   Inner aligns to --bty-content / --bty-section-x like footer & sections. */
.bty-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  color: #fff;
  height: var(--bty-header-h);
  box-sizing: border-box;
  background: transparent;
  padding: 0 var(--bty-section-x);
  transition: background-color .28s ease, box-shadow .28s ease;
}
.bty-header.is-sticky {
  background: var(--bty-navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .14);
}
.bty-header__inner {
  width: 100%;
  max-width: var(--bty-content);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 24px;
  box-sizing: border-box;
}
.bty-header__logo {
  display: block;
  position: relative;
  width: 118px;
  height: 52px;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.bty-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  /* Knock out any residual black canvas against dark heroes */
  mix-blend-mode: screen;
}
.bty-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.bty-nav-list a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.bty-nav-list .current-menu-item > a,
.bty-nav-list .current_page_item > a {
  font-weight: 600;
}
.bty-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.bty-header__social {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}
.bty-header__social img {
  width: 20px !important;
  height: 20px !important;
}
.bty-header .bty-btn--outline-light {
  height: 42px;
  padding: 12px 28px;
  gap: 10px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  box-sizing: border-box;
}
.bty-nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  box-sizing: border-box;
}
.bty-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform .28s ease, opacity .28s ease;
}
/* Open → X (bars meet at center: 2px + 5px gap = 7px) */
.bty-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.bty-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.bty-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Footer — keep outer full-bleed; constrain rows like header content */
.bty-footer {
  background: var(--bty-navy); color: #fff;
  padding: 80px var(--bty-section-x) 30px;
}
.bty-footer__top {
  max-width: var(--bty-content); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.bty-footer__brand { width: 320px; display: flex; flex-direction: column; gap: 24px; }
.bty-footer__brand p { font-size: 14px; }
.bty-footer__logo { display: block; width: 70px; height: 42px; overflow: hidden; }
.bty-footer__logo img { width: 140px; max-width: none; margin-left: -40px; margin-top: -50px; }
.bty-footer__heading {
  color: var(--bty-gold); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.bty-footer__col ul { display: flex; flex-direction: column; gap: 16px; }
.bty-footer__col a { font-size: 14px; letter-spacing: .5px; }
.bty-footer__social { width: 280px; display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; }
.bty-footer__tiktok { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.bty-footer__tiktok-icon {
  width: 32px; height: 32px; border-radius: 16px; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.bty-footer__email {
  font-size: 14px;
  display: inline-block;
  position: relative;
  z-index: 2;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  word-break: break-word;
}
.bty-footer__divider {
  max-width: var(--bty-content); margin: 30px auto 0; height: 1px; background: var(--bty-sage);
}
.bty-footer__bottom {
  max-width: var(--bty-content); margin: 30px auto 0;
}
.bty-footer__bottom p { font-size: 13px; }

/* Final CTA */
.bty-final-cta {
  background: var(--bty-white);
  padding: 120px var(--bty-section-x);
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.bty-final-cta__content {
  max-width: 800px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.bty-final-cta__content h2 { font-size: 44px; }
.bty-final-cta__content p { font-size: 18px; color: var(--bty-ink); }
.bty-final-cta__steps {
  display: flex; gap: 40px; max-width: 900px; width: 100%;
}
.bty-final-cta__step { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.bty-final-cta__step-title { display: flex; align-items: center; gap: 12px; }
.bty-final-cta__step-title .num { font-family: var(--bty-font-serif); font-size: 28px; color: var(--bty-gold); }
.bty-final-cta__step-title span:last-child { font-weight: 600; font-size: 16px; color: var(--bty-navy); }
.bty-final-cta__step p { font-size: 14px; color: var(--bty-ink); }
.bty-final-cta__action { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bty-final-cta__note { font-size: 12px; color: var(--bty-border); }

/* Page heroes — start at document top; absolute header overlays (Figma). */
.bty-page-hero {
  position: relative;
  min-height: 644px;
  margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 140px var(--bty-section-x) 100px;
  overflow: hidden;
}
.bty-page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.bty-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.bty-page-hero__overlay {
  position: absolute; inset: 0; background: rgba(11,27,42,.72); z-index: 1;
}
.bty-page-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: 1080px;
}
.bty-page-hero__content h1 {
  color: #fff; font-size: 64px; font-weight: 300; line-height: 1.1;
}
.bty-page-hero__content p { font-size: 18px; max-width: 720px; color: rgba(255,255,255,.9); }
/* Home hero — Figma section-hero: 1440×757 */
.bty-page-hero--home {
  height: 757px;
  min-height: 757px;
  max-height: 757px;
  margin: 0;
  padding: 0;
  justify-content: center;
  overflow: hidden;
  /* White base kills cream hairline at the curve/next-section seam */
  background: #fff;
}
.bty-page-hero--home + .bty-situations {
  margin-top: -1px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.bty-page-hero--home .bty-page-hero__bg,
.bty-page-hero--home .bty-page-hero__overlay {
  inset: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 860px;
}
.bty-page-hero--home .bty-page-hero__overlay {
  background: linear-gradient(180deg, rgba(20,35,60,.72) 0%, rgba(20,35,60,.55) 45%, rgba(11,19,34,.82) 100%);
}
.bty-page-hero--home .bty-page-hero__content {
  gap: 36px;
  width: 100%;
  max-width: var(--bty-max);
  margin: 0 auto;
  height: 100%;
  padding:40px 0px 0px 0px;
  justify-content: center;
  box-sizing: border-box;
}
.bty-page-hero--home h1 {
  font-size: 76px;
  font-weight: 400;
  letter-spacing: -1.5px;
  max-width: 1040px;
  line-height: 1.05;
}
.bty-page-hero--home .bty-hero-body {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  max-width: 680px;
}
.bty-hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
/* Curve — Figma 6:27: 1506×97 @ x=-33 on 1440 artboard (wide/flat full-bleed) */
.bty-page-hero--home .bty-hero-curve {
  position: absolute;
  left: calc(100% * -33 / 1440);
  right: auto;
  bottom: 0;
  top: auto;
  z-index: 3;
  width: calc(100% * 1506 / 1440);
  /* Keep Figma aspect (97/1440) at every viewport — flatter, not deep/narrow */
  height: calc(100vw * 97 / 1440);
  margin: 0;
  padding: 0;
  transform: none;
  pointer-events: none;
  line-height: 0;
  overflow: hidden;
  background: transparent;
}
.bty-page-hero--home .bty-hero-curve__svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom;
  shape-rendering: geometricPrecision;
}

/* Home: Is this you */
.bty-situations {
  background: #fff; padding: 120px var(--bty-section-x);
  display: flex; flex-direction: column; gap: 64px;
}
.bty-situations__header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.bty-situations__header h2 { font-size: 44px; }
.bty-situations__header p { font-size: 18px; max-width: 720px; color: var(--bty-ink); }
.bty-situations__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 0;
  width: 100%;
  max-width: var(--bty-content);
  margin: 0 auto;
}
.bty-situations__col {
  padding: 32px; display: flex; flex-direction: column; gap: 40px;
  border-right: 1px solid rgba(201,193,181,.6);
}
.bty-situations__col:last-child { border-right: 0; }
.bty-situations__num { font-family: var(--bty-font-serif); font-weight: 300; font-size: 40px; color: var(--bty-sage); }
.bty-situations__col p:last-child { font-size: 16px; font-weight: 500; color: var(--bty-navy); }
.bty-situations__close {
  text-align: center; font-family: var(--bty-font-serif); font-style: italic;
  font-size: 28px; color: var(--bty-sage);
}

/* Empathy — Figma 8:2: navy 606px; photo 568×656 at left 40 / top 70, hangs below navy into white.
   Photo/text stay inside a centered 1440 frame on wide screens. */
.bty-empathy {
  position: relative;
  background: #fff;
  height: 714px;
  min-height: 714px;
  overflow: visible;
}
.bty-empathy__panel {
  position: relative;
  background: var(--bty-navy);
  height: 606px;
  min-height: 606px;
  margin: 0;
  overflow: visible;
}
.bty-empathy__photo {
  position: absolute;
  left: max(40px, calc((100% - var(--bty-max)) / 2 + 40px));
  top: 70px;
  z-index: 2;
  width: 568px;
  height: 656px;
}
.bty-empathy__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.bty-empathy__text {
  color: #fff;
  box-sizing: border-box;
  margin-left: max(608px, calc((100% - var(--bty-max)) / 2 + 608px));
  width: 832px;
  max-width: calc(100% - max(608px, calc((100% - var(--bty-max)) / 2 + 608px)));
  height: 606px;
  min-height: 606px;
  padding: 96px 100px 96px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.bty-empathy__text h2 { color: #fff; font-size: 46px; line-height: 1.15; font-weight: 400; }
.bty-empathy__text p { font-size: 15px; color: rgba(255,255,255,.92); line-height: 1.6; }

/* Method teaser */
.bty-method-teaser {
  background: #fff; padding: 80px var(--bty-section-x) 120px;
  display: flex; flex-direction: column; gap: 64px; align-items: center;
}
.bty-method-teaser__header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; }
.bty-method-teaser__header h2 { font-size: 44px; }
.bty-method-teaser__header p { font-size: 18px; max-width: 720px; }
.bty-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; max-width: var(--bty-content);
}
.bty-step-card {
  background: var(--bty-cream); border-top: 4px solid var(--bty-navy);
  border-radius: 2px 2px 0 0; padding: 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.bty-step-card h3 { font-size: 24px; font-weight: 500; }
.bty-step-card p { font-size: 14px; }

/* Why BTY */
.bty-why {
  background: var(--bty-cream); padding: 120px var(--bty-section-x);
  display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start;
}
.bty-why__intro { display: flex; flex-direction: column; gap: 32px; }
.bty-why__intro h2 { font-size: 44px; line-height: 1.15; }
.bty-why__intro > p { font-size: 16px; }
.bty-why__divider { height: 1px; background: var(--bty-border); width: 100%; }
.bty-why__badge { display: flex; align-items: center; gap: 16px; }
.bty-why__badge img { width: 24px; height: 24px; }
.bty-why__badge span { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--bty-navy); }
.bty-principles { display: flex; flex-direction: column; gap: 24px; }
.bty-principle {
  background: #fff; border: 1px solid var(--bty-border); border-radius: 2px;
  padding: 24px; display: flex; align-items: center; gap: 24px;
}
.bty-principle__num {
  width: 40px; height: 40px; background: var(--bty-navy); color: #fff;
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.bty-principle__text { display: flex; flex-direction: column; gap: 4px; }
.bty-principle__text h3 { font-size: 20px; font-weight: 500; }
.bty-principle__text p { font-size: 14px; }

/* Parent Voices carousel — Figma 3:134 */
.bty-testimonials {
  background: #fff;
  padding: 120px var(--bty-section-x);
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
.bty-testimonials__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.bty-testimonials__header h2 {
  font-size: 44px;
  font-weight: 400;
  margin: 0;
}
.bty-carousel {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--bty-content);
}
.bty-carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1.5px solid var(--bty-navy);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .06);
  padding: 0;
}
.bty-carousel__btn:hover { opacity: .92; }
.bty-carousel__btn--next {
  background: var(--bty-navy);
  border-color: var(--bty-navy);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .09);
}
.bty-carousel__btn img {
  width: 18px;
  height: 18px;
  pointer-events: none;
  display: block;
}
.bty-carousel__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  touch-action: pan-y;
}
.bty-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 19px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
/* Pagination dots — shown on mobile only (≤767) */
.bty-carousel__dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bty-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  margin: 0;
  background: var(--bty-line);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.bty-carousel__dot:hover {
  background: var(--bty-soft);
}
.bty-carousel__dot.is-active,
.bty-carousel__dot[aria-current="true"] {
  background: var(--bty-navy);
  transform: scale(1.2);
}
.bty-testimonial-card {
  flex: 0 0 366px;
  box-sizing: border-box;
  width: 366px;
  max-width: 366px;
  height: 349px;
  background: #fff;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
}
.bty-testimonial-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 48px;
  overflow: hidden;
  flex-shrink: 0;
}
.bty-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bty-testimonial-card__quote {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bty-testimonial-card__quote p {
  margin: 0;
  font-size: 15px;
  line-height: normal;
  color: var(--bty-ink);
  text-align: center;
  overflow: hidden;
}
.bty-testimonial-card__line {
  width: 100%;
  height: 1px;
  background: var(--bty-line);
  flex-shrink: 0;
}
.bty-testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.bty-testimonial-card__author {
  margin: 0;
  font-family: var(--bty-font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--bty-navy);
  line-height: normal;
}
.bty-testimonial-card__loc {
  margin: 0;
  font-size: 12px;
  letter-spacing: .5px;
  color: var(--bty-soft);
  line-height: normal;
}

/* Free guide */
.bty-guide {
  background: var(--bty-cream); padding: 120px var(--bty-section-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.bty-guide__info { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.bty-guide__info h2 { font-size: 44px; line-height: 1.15; }
.bty-guide__info > p { font-size: 16px; }
.bty-guide__features { display: flex; flex-direction: column; gap: 16px; }
.bty-guide__feature { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.bty-guide__feature img { width: 16px; height: 16px; }
.bty-guide__visual {
  background: var(--bty-navy); border-radius: 4px; min-height: 480px;
  display: flex; align-items: center; justify-content: center; padding: 48px;
  box-shadow: 0 16px 16px rgba(20,35,60,.15);
}
.bty-guide__book {
  background: var(--bty-cream); width: 280px; height: 384px; padding: 32px;
  border: 2px solid var(--bty-gold); border-radius: 2px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0,0,0,.25); text-align: left;
}
.bty-guide__book-top { display: flex; flex-direction: column; gap: 16px; }
.bty-guide__book-kicker {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--bty-sage);
}
.bty-guide__book-line { height: 1px; width: 100%; background: var(--bty-gold); }
.bty-guide__book h3 { font-size: 28px; line-height: 1.2; color: var(--bty-navy); margin: 0; }
.bty-guide__book-desc { font-size: 11px; color: var(--bty-ink); line-height: 1.45; }
.bty-guide__book-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; font-weight: 500; color: var(--bty-navy); letter-spacing: .5px;
}
.bty-guide__book-foot img { width: 20px; height: 20px; }

/* Method page — Figma bty-method-page (38:4) */
.bty-page-hero--method {
  height: 644px;
  min-height: 644px;
  max-height: 644px;
  box-sizing: border-box;
  padding: 180px var(--bty-section-x) 100px;
  justify-content: center;
  overflow: hidden;
  gap: 0;
}
.bty-page-hero__overlay--method {
  background: linear-gradient(180deg, rgba(20,35,60,.72), rgba(20,35,60,.55) 45%, rgba(11,19,34,.82));
}
.bty-page-hero__content--method {
  gap: 36px;
  max-width: 1040px;
}
.bty-page-hero__content--method h1 {
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
  max-width: 1000px;
}
.bty-page-hero__content--method p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 678px;
  color: rgba(255,255,255,.82);
}

/* Guiding principle (54:51) */
.bty-guiding {
  background: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--bty-section-x);
  overflow: hidden;
}
.bty-guiding__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--bty-content);
}
.bty-guiding__photo {
  width: 348px;
  height: 318px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}
.bty-guiding__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.bty-guiding__text {
  width: 638px;
  height: 318px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #fff;
}
.bty-guiding__divider {
  display: block;
  width: 60px;
  height: 1px;
  background: #c9a96e;
  flex-shrink: 0;
}
.bty-guiding__quote {
  margin: 0;
  font-family: var(--bty-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  color: var(--bty-navy);
  text-align: center;
  max-width: 520px;
}

/* Five stages (38:19) */
.bty-stages {
  background: #fff;
  padding: 0 var(--bty-section-x) 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
}
.bty-stages__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--bty-content);
  margin: 0 auto;
}
.bty-stages__header h2 { font-size: 44px; line-height: 1.15; }
.bty-stages__header p {
  font-size: 16px;
  max-width: 720px;
  color: #3c3a36;
  margin: 0;
}
.bty-stages__grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  max-width: var(--bty-content);
  margin: 0 auto;
  box-sizing: border-box;
}
.bty-stage-card {
  flex: 1 0 0;
  min-width: 0;
  box-sizing: border-box;
  background: var(--bty-cream);
  border-style: solid;
  border-color: var(--bty-border);
  border-width: 4px 1px 1px;
  border-radius: 4px 4px 2px 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.bty-stage-card__num {
  margin: 0;
  padding: 0;
  font-family: var(--bty-font-serif);
  font-weight: 300;
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0;
  color: var(--bty-sage);
  white-space: nowrap;
  flex-shrink: 0;
}
.bty-stage-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.bty-stage-card__body h3 {
  margin: 0;
  font-family: var(--bty-font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--bty-navy);
  line-height: normal;
}
.bty-stage-card__body p {
  margin: 0;
  font-family: var(--bty-font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #3c3a36;
  line-height: normal;
}

/* Why the Method Works / foundations (38:57) */
.bty-section-label__line--soft { background: #8a9a8c; }
.bty-section-label__text--soft {
  color: #8a9a8c;
  font-size: 11px;
  letter-spacing: 3px;
}
.bty-foundations {
  background: var(--bty-cream);
  padding: 100px var(--bty-section-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.bty-foundations__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: var(--bty-content);
}
.bty-foundations__header h2 { font-size: 56px; line-height: 1.1; }
.bty-foundations__header p {
  font-size: 15px;
  max-width: 580px;
  color: #5c5850;
  margin: 0;
}
.bty-foundations__grid {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: var(--bty-content);
}
.bty-foundations__divider {
  width: 1px;
  align-self: stretch;
  background: #ddd8cf;
  flex-shrink: 0;
}
.bty-foundation {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 28px 36px;
  text-align: center;
}
.bty-foundation__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
}
.bty-foundation__icon img {
  width: 48px;
  height: 48px;
  display: block;
}
.bty-foundation__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.bty-foundation h3 {
  margin: 0;
  font-family: var(--bty-font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--bty-navy);
}
.bty-foundation p {
  margin: 0;
  font-size: 13px;
  color: #6b6660;
  line-height: 1.45;
}

/* Origin / How the Method Was Created (38:96) */
.bty-origin {
  background: #fff;
  padding: 120px var(--bty-section-x);
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: none;
}
.bty-origin__content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.bty-origin__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.bty-origin__intro h2 { font-size: 44px; line-height: 1.15; }
.bty-origin__intro > p {
  margin: 0;
  font-size: 16px;
  color: #3c3a36;
  line-height: 1.5;
}
.bty-origin__timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.bty-origin__row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.bty-origin__label {
  margin: 0;
  width: 140px;
  flex-shrink: 0;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--bty-gold);
  line-height: 1.3;
}
.bty-origin__detail {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bty-origin__detail h3 {
  margin: 0;
  font-family: var(--bty-font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--bty-navy);
}
.bty-origin__detail p {
  margin: 0;
  font-size: 14px;
  color: #6b6660;
  line-height: 1.45;
}
.bty-origin__visuals {
  width: 520px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bty-origin__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.bty-origin__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.bty-origin__photo--lg {
  width: 520px;
  height: 348px;
}
.bty-origin__row-photos {
  display: flex;
  gap: 20px;
  width: 100%;
}
.bty-origin__photo--sm {
  width: 250px;
  height: 180px;
  flex-shrink: 0;
}

/* Founder (38:129) */
.bty-founder {
  background: var(--bty-cream);
  padding: 80px var(--bty-section-x);
  display: grid;
  grid-template-columns: minmax(280px, 479px) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  min-height: 714px;
  box-sizing: border-box;
}
.bty-founder__photo {
  width: 100%;
  max-width: 479px;
  height: 557px;
  border-radius: 4px;
  overflow: hidden;
}
.bty-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 4px;
}
.bty-founder__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 640px;
}
.bty-founder__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}
.bty-founder__intro h2,
.bty-founder__text h2 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0;
}
.bty-founder__role {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--bty-sage);
  line-height: 1.4;
}
.bty-founder__bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.bty-founder__bio p {
  margin: 0;
  font-size: 15px;
  color: #3d3a35;
  line-height: 1.55;
}

/* Get Support — Our Programmes (Figma 86:91) */
.bty-section-label__line--soft-opacity { opacity: .6; }
.bty-section-label__text--programmes {
  font-size: 12px;
  letter-spacing: 3px;
}
.bty-programmes {
  background: #fff;
  padding: 100px var(--bty-section-x) 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: stretch;
}
.bty-programmes__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--bty-content);
  margin: 0 auto;
}
.bty-programmes__header h2 {
  font-size: 44px;
  font-weight: 400;
  line-height: normal;
  color: var(--bty-navy);
}
.bty-programmes__header p {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.5;
  color: #6b6660;
}
.bty-programmes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  width: 100%;
  max-width: var(--bty-content);
  margin: 0 auto;
}
.bty-programme-card {
  box-sizing: border-box;
  min-height: 687px;
  padding: 48px;
  border-radius: 4px;
  border-style: solid;
  border-width: 4px 1px 1px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.bty-programme-card--intensive {
  background: var(--bty-cream);
  border-color: var(--bty-sage);
  color: var(--bty-ink);
}
.bty-programme-card--private {
  background: var(--bty-navy);
  border-color: var(--bty-gold);
  color: #fff;
}
.bty-programme-card__title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
.bty-programme-card__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bty-programme-card__title h3 {
  margin: 0;
  font-family: var(--bty-font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  color: var(--bty-navy);
  white-space: nowrap;
}
.bty-programme-card--private .bty-programme-card__title h3 {
  color: #fff;
}
.bty-programme-card__rule {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--bty-border);
  flex-shrink: 0;
}
.bty-programme-card--private .bty-programme-card__rule {
  background: var(--bty-gold);
}
.bty-badge {
  background: var(--bty-gold);
  color: var(--bty-navy);
  font-family: var(--bty-font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  line-height: normal;
  white-space: nowrap;
}
.bty-programme-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 0 auto;
  width: 100%;
  min-height: 0;
}
.bty-programme-card__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  font-family: var(--bty-font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bty-ink);
}
.bty-programme-card--private .bty-programme-card__list li {
  color: #fff;
}
.bty-programme-card__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
  box-sizing: border-box;
}
.bty-programme-card__check img {
  width: 10px !important;
  height: 10px !important;
  display: block;
}
.bty-programme-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--bty-border);
  opacity: .5;
  flex-shrink: 0;
}
.bty-programme-card--private .bty-programme-card__divider {
  opacity: .2;
}
.bty-programme-card__suited {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
.bty-programme-card__suited h4 {
  margin: 0;
  font-family: var(--bty-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bty-sage);
  line-height: normal;
}
.bty-programme-card--private .bty-programme-card__suited h4 {
  color: var(--bty-gold);
}
.bty-programme-card__suited p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bty-ink);
}
.bty-programme-card--private .bty-programme-card__suited p {
  color: rgba(255, 255, 255, .82);
}
.bty-programme-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  padding-top: 16px;
  margin-top: auto;
  box-sizing: border-box;
}
.bty-programme-card__footer .bty-btn {
  width: fit-content;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
.bty-programme-card__footer .bty-btn--gold {
  font-weight: 500;
}
.bty-meta-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.bty-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
}
.bty-meta-item img { width: 14px; height: 14px; }
.bty-timeline {
  background: var(--bty-cream);
  padding: 100px var(--bty-section-x);
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
.bty-timeline__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.bty-timeline__header h2 { font-size: 44px; }
.bty-timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: var(--bty-content);
}
.bty-timeline__step { display: flex; flex-direction: column; gap: 24px; }
.bty-timeline__num { display: flex; align-items: center; gap: 12px; }
.bty-timeline__num span {
  font-family: var(--bty-font-serif);
  font-size: 36px;
  color: var(--bty-gold);
}
.bty-timeline__num .line {
  flex: 1;
  height: 1px;
  background: var(--bty-border);
  max-width: 100px;
}
.bty-timeline__step h3 {
  font-size: 20px;
  font-family: var(--bty-font-sans);
  font-weight: 600;
}
.bty-timeline__step p { font-size: 14px; color: var(--bty-muted); }
/* Contact */
.bty-support-banner {
  background: #fff; padding: 80px var(--bty-section-x);
  display: flex; justify-content: space-between; align-items: center; gap: 48px;
}
.bty-support-banner__left { max-width: 680px; display: flex; flex-direction: column; gap: 24px; }
.bty-pill {
  display: inline-flex; background: var(--bty-sage); color: var(--bty-cream);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px; width: fit-content;
}
.bty-support-banner__left h2 { font-size: 38px; }
.bty-support-banner__left p { font-size: 16px; color: var(--bty-muted); }
.bty-lang { display: flex; align-items: center; gap: 8px; color: var(--bty-sage); font-size: 14px; font-weight: 500; }
.bty-lang img { width: 16px; height: 16px; }
.bty-support-banner__cta {
  width: 400px; border: 1px solid var(--bty-border); border-radius: 4px;
  padding: 40px 48px; text-align: center; display: flex; flex-direction: column; gap: 24px;
  box-shadow: 0 12px 12px rgba(20,35,60,.06); background: #fff;
}
.bty-support-banner__cta h3 { font-size: 22px; }
.bty-support-banner__cta p { font-size: 14px; color: var(--bty-muted); }
.bty-contact-form-section {
  background: var(--bty-cream); border-bottom: 1px solid #efece6;
  padding: 100px var(--bty-section-x); display: grid; grid-template-columns: 500px 1fr; gap: 80px; align-items: start;
}
.bty-enquiries { display: flex; flex-direction: column; gap: 32px; }
.bty-enquiries h2 { font-size: 40px; font-weight: 300; }
.bty-enquiries p { font-size: 16px; color: var(--bty-muted); }
.bty-enquiries__sep { height: 1px; background: var(--bty-border); opacity: .5; }
.bty-enquiries__email-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--bty-sage); text-transform: uppercase; margin-bottom: 12px; }
.bty-enquiries__email {
  display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 600; color: var(--bty-navy); text-decoration: underline;
}
.bty-enquiries__email img { width: 18px; height: 18px; }
.bty-form-card {
  background: #fff; border: 1px solid var(--bty-border); border-radius: 4px; padding: 48px;
  display: flex; flex-direction: column; gap: 24px;
}
.bty-form-card h3 { font-size: 28px; font-weight: 300; }
.bty-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.bty-field label { font-size: 14px; font-weight: 600; color: var(--bty-navy); }
.bty-field input,
.bty-field textarea {
  background: #fafaf9; border: 1px solid var(--bty-border); border-radius: 4px;
  padding: 14px 16px; font-size: 15px; color: var(--bty-navy); width: 100%;
}
.bty-field input { height: 48px; }
.bty-field textarea { min-height: 140px; resize: vertical; }
.bty-field input:focus, .bty-field textarea:focus { outline: 2px solid var(--bty-gold); border-color: var(--bty-gold); }
.bty-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.bty-alert {
  padding: 14px 18px; border-radius: 4px; font-size: 14px; margin-bottom: 8px;
}
.bty-alert--success { background: #e8f5e9; color: #1b5e20; }
.bty-alert--error { background: #fce8e6; color: #b71c1c; }

/* Articles */
.bty-articles-featured {
  background: #fff; padding: 100px var(--bty-section-x) 80px;
}
.bty-articles-toolbar {
  display: flex; justify-content: flex-end; margin-bottom: 60px;
  max-width: var(--bty-content); margin-left: auto; margin-right: auto;
}
.bty-search {
  display: flex; align-items: center; width: 380px; height: 52px;
  border: 1px solid var(--bty-border); border-radius: 4px; background: #fff; padding: 0 20px; gap: 12px;
}
.bty-search input {
  flex: 1; border: 0; background: transparent; font-size: 15px; color: var(--bty-navy); outline: none;
}
.bty-search button { background: none; border: 0; padding: 0; cursor: pointer; }
.bty-search button img { width: 18px; height: 18px; }
.bty-featured-layout {
  display: grid; grid-template-columns: minmax(0, 852px) minmax(0, 1fr); gap: 48px; align-items: start;
  max-width: var(--bty-content); margin: 0 auto; width: 100%;
}
.bty-featured-main {
  position: relative; height: 544px; border-radius: 4px; overflow: hidden; display: block; color: #fff;
}
.bty-featured-main img { width: 100%; height: 100%; object-fit: cover; }
.bty-featured-main__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,35,60,.15) 40%, rgba(20,35,60,.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px 28px;
}
.bty-cat-badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--bty-gold); color: var(--bty-navy); font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; padding: 6px 12px; border-radius: 2px;
}
.bty-featured-main__overlay h2 { color: #fff; font-size: 32px; line-height: 1.25; max-width: 614px; margin-bottom: 12px; }
.bty-meta { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.85); }
.bty-latest { display: flex; flex-direction: column; gap: 0; }
.bty-latest > h3 { font-size: 28px; margin-bottom: 28px; }
.bty-latest-item {
  display: grid; grid-template-columns: 89px 1fr; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--bty-line);
}
.bty-latest-item:last-child { border-bottom: 0; }
.bty-latest-item img { width: 89px; height: 78px; object-fit: cover; border-radius: 2px; }
.bty-latest-item__cat { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--bty-gold); margin-bottom: 6px; }
.bty-latest-item__title { font-family: var(--bty-font-serif); font-size: 16px; line-height: 1.3; color: var(--bty-navy); margin-bottom: 8px; }
.bty-latest-item__meta { font-size: 12px; color: var(--bty-soft); display: flex; gap: 6px; }
.bty-articles-grid-section {
  background: var(--bty-cream); padding: 80px var(--bty-section-x) 120px;
}
.bty-articles-grid-section__head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px;
  max-width: var(--bty-content); margin-left: auto; margin-right: auto;
}
.bty-articles-grid-section__head h2 { font-size: 36px; }
.bty-articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: var(--bty-content); margin: 0 auto; width: 100%;
}
.bty-article-card {
  background: #fff; border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 456px;
  box-shadow: 0 4px 16px rgba(20,35,60,.06);
}
.bty-article-card__media { position: relative; height: 220px; }
.bty-article-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bty-article-card__media .bty-cat-badge { top: 16px; left: 16px; }
.bty-article-card__body { padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bty-article-card__body h3 { font-size: 22px; line-height: 1.3; }
.bty-article-card__body p { font-size: 14px; color: var(--bty-muted); flex: 1; }
.bty-article-card__meta { font-size: 12px; color: var(--bty-soft); display: flex; gap: 6px; }


/* Search results page */
.bty-page-hero--search .bty-page-hero__content h1 {
  font-size: 52px;
  font-weight: 400;
  max-width: 900px;
}
.bty-page-hero--search .bty-page-hero__content p {
  font-size: 16px;
  max-width: 560px;
  color: rgba(255,255,255,.82);
}
.bty-search-results {
  background: var(--bty-cream);
  padding: 80px var(--bty-section-x) 120px;
}
.bty-search-results__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--bty-content);
  margin: 0 auto 48px;
  width: 100%;
}
.bty-search-results__back {
  font-size: 14px;
  font-weight: 500;
  color: var(--bty-navy);
  letter-spacing: .3px;
  white-space: nowrap;
}
.bty-search-results__back:hover { color: var(--bty-gold); }
.bty-search-results__grid {
  max-width: var(--bty-content);
  margin: 0 auto;
}
.bty-search-empty {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 24px;
  background: #fff;
  border: 1px solid var(--bty-border);
  border-radius: 4px;
}
.bty-search-empty h2 {
  font-size: 36px;
  margin: 0;
}
.bty-search-empty p {
  margin: 0;
  font-size: 16px;
  color: var(--bty-muted);
  line-height: 1.5;
}
.bty-pagination--links {
  margin-top: 48px;
}
.bty-pagination--links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--bty-border);
  border-radius: 2px;
  font-size: 14px;
  color: var(--bty-navy);
  background: #fff;
  margin: 0 6px;
}
.bty-pagination--links .page-numbers.current {
  background: var(--bty-navy);
  color: #fff;
  border-color: var(--bty-navy);
}
.bty-pagination--links .page-numbers.dots {
  border: 0;
  background: transparent;
  min-width: auto;
}
/* Single */
.bty-single-hero {
  position: relative;
  min-height: 644px;
  margin: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 140px var(--bty-section-x) 80px;
  overflow: hidden;
}
.bty-single-hero__bg { position: absolute; inset: 0; }
.bty-single-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.bty-single-hero__overlay { position: absolute; inset: 0; background: rgba(11,27,42,.7); }
.bty-single-hero__content { position: relative; z-index: 2; max-width: 900px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.bty-single-hero__content .bty-cat-badge { position: static; }
.bty-single-hero__content h1 { color: #fff; font-size: 52px; line-height: 1.15; font-weight: 400; }
.bty-author-row {
  display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.9);
}
.bty-author-row img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.bty-article-body {
  background: #fff; padding: 80px var(--bty-section-x);
}
.bty-article-body__inner {
  max-width: 740px; margin: 0 auto;
  font-size: 17px; line-height: 1.7; color: var(--bty-ink);
}
.bty-article-body__inner > *:first-child { margin-top: 0; }
.bty-article-body__inner p { margin-bottom: 24px; }
.bty-article-body__inner h2 {
  font-size: 32px; margin: 40px 0 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--bty-gold); display: inline-block; width: auto;
  border-bottom-width: 2px; max-width: 100%;
}
.bty-article-body__inner h2::after { content: none; }
.bty-article-body__inner blockquote {
  margin: 32px 0; padding: 12px 24px; border-left: 3px solid var(--bty-gold);
  font-family: var(--bty-font-serif); font-size: 22px; font-style: italic; color: var(--bty-navy);
}
.bty-article-body__inner ol, .bty-article-body__inner ul {
  margin: 0 0 24px; padding: 0; list-style: none;
}
.bty-article-body__inner ol { counter-reset: bty-ol; }
.bty-article-body__inner ol li {
  counter-increment: bty-ol; display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 16px; font-size: 16px;
}
.bty-article-body__inner ol li::before {
  content: counter(bty-ol);
  width: 28px; height: 28px; border-radius: 50%; background: var(--bty-navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0;
}

/* Legal pages (Privacy Policy, etc.) */
.bty-page-hero--legal {
  min-height: 420px;
  padding: 140px var(--bty-section-x) 80px;
}
.bty-page-hero--legal .bty-page-hero__content h1 {
  font-size: 52px;
  font-weight: 400;
}
.bty-legal .bty-legal__updated {
  font-size: 14px;
  color: var(--bty-soft);
  letter-spacing: .3px;
  margin-bottom: 28px;
}
.bty-legal .bty-article-body__inner ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bty-ink);
}
.bty-legal .bty-article-body__inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bty-gold);
}
.bty-legal .bty-article-body__inner a {
  color: var(--bty-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bty-legal .bty-article-body__inner a:hover {
  color: var(--bty-gold);
}

/* Thank You (post–application) */
.bty-thank-you .bty-article-body__inner {
  text-align: left;
}
.bty-thank-you__closing {
  font-family: var(--bty-font-serif);
  font-size: 24px;
  line-height: 1.4;
  color: var(--bty-navy);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 40px !important;
}
.bty-thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
.bty-author-bio {
  background: var(--bty-cream); padding: 64px var(--bty-section-x);
}
.bty-author-bio__inner {
  max-width: 740px; margin: 0 auto;
  display: grid; grid-template-columns: 120px 1fr; gap: 48px; align-items: center;
}
.bty-author-bio__inner img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.bty-author-bio__text h3 { font-size: 28px; margin-bottom: 8px; }
.bty-author-bio__text .role { font-size: 14px; color: var(--bty-gold); font-weight: 600; margin-bottom: 12px; }
.bty-author-bio__text p { font-size: 15px; color: var(--bty-muted); }
.bty-related {
  background: #fff; padding: 100px var(--bty-section-x) 120px;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.bty-related__header { text-align: center; }
.bty-related__header h2 { font-size: 36px; margin-bottom: 12px; }
.bty-related__header .line { width: 40px; height: 2px; background: var(--bty-gold); margin: 0 auto; }
.bty-related .bty-articles-grid {
  max-width: var(--bty-content);
  width: 100%;
}

/* Pagination (AJAX — buttons, no page redirects) */
.bty-articles-grid-section { scroll-margin-top: calc(var(--bty-header-h) + 24px); }
.bty-articles-grid-section.is-loading .bty-articles-grid { opacity: .45; pointer-events: none; }
.bty-articles-status {
  text-align: center;
  font-size: 15px;
  color: var(--bty-muted);
  margin: 0 0 24px;
  padding: 12px 16px;
  background: var(--bty-cream);
  border: 1px solid var(--bty-border);
  border-radius: 2px;
}
.bty-articles-status.is-error { color: #8a2f2f; }
.bty-articles-status[hidden] { display: none; }
.bty-articles-empty { grid-column: 1 / -1; text-align: center; color: var(--bty-muted); }
.bty-pagination {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 48px;
}
.bty-pagination a,
.bty-pagination span,
.bty-pagination__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--bty-border);
  border-radius: 2px; font-size: 14px; color: var(--bty-navy);
  background: #fff; cursor: pointer; font-family: var(--bty-font-sans); line-height: 1;
}
.bty-pagination__btn:hover:not(:disabled) { border-color: var(--bty-navy); }
.bty-pagination .current,
.bty-pagination__btn.is-current {
  background: var(--bty-navy); color: #fff; border-color: var(--bty-navy); cursor: default;
}
.bty-pagination__btn:disabled {
  opacity: .45; cursor: not-allowed;
}

/* Cap home hero content inset on mid widths so 200px sides don't crush copy */
@media (max-width: 1440px) {
  .bty-page-hero--home .bty-page-hero__content {
    padding-left: max(var(--bty-pad), 5vw);
    padding-right: max(var(--bty-pad), 5vw);
  }
}

/* —— Responsive (desktop ≥1441px unchanged) —— */

/* Safe overflow guards — never put overflow-x on html/body (breaks fixed headers).
   Clip only on tablet/desktop main; mobile must stay visible for position:fixed. */
body {
  max-width: 100%;
}
main#main {
  max-width: 100%;
}
@media (min-width: 768px) {
  main#main {
    overflow-x: clip;
  }
}
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}
.bty-footer__brand,
.bty-footer__social,
.bty-support-banner__cta,
.bty-search,
.bty-guide__book,
.bty-origin__visuals,
.bty-guiding__photo,
.bty-guiding__text {
  max-width: 100%;
}

/* Tablet / small desktop */
@media (max-width: 1200px) {
  :root { --bty-pad: 40px; }

  .bty-featured-layout { grid-template-columns: 1fr; }
  .bty-featured-main { width: 100%; min-height: 360px; }
  .bty-why { grid-template-columns: 1fr; gap: 48px; }

  .bty-empathy {
    height: auto;
    min-height: 0;
  }
  .bty-empathy__panel {
    height: auto;
    min-height: 0;
  }
  .bty-empathy__photo {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    padding: 40px 40px 0;
  }
  .bty-empathy__photo img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }
  .bty-empathy__text {
    margin-left: 0;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    padding: 48px 40px;
  }
  .bty-empathy__text h2 { font-size: 36px; }

  .bty-contact-form-section {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 40px;
  }
  .bty-support-banner {
    flex-direction: column;
    padding: 60px 40px;
    align-items: stretch;
  }
  .bty-support-banner__cta { width: 100%; }
  .bty-support-banner__left h2 { font-size: 32px; }

  .bty-guide {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 40px;
  }
  /* Keep book centered with desktop proportions (280×384) — do not stretch */
  .bty-guide__visual {
    justify-content: center;
  }
  .bty-guide__book {
    width: 280px;
    height: 384px;
    max-width: 280px;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .bty-founder {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 40px;
    padding: 80px 40px;
  }
  /* Tablet/mobile: text above image (desktop grid order unchanged) */
  .bty-founder__text { order: 1; }
  .bty-founder__photo {
    order: 2;
    max-width: none;
    height: auto;
    aspect-ratio: 479 / 557;
  }

  .bty-guiding { min-height: 0; padding: 80px 40px; }
  .bty-guiding__inner { flex-direction: column; gap: 40px; }
  .bty-guiding__photo {
    width: min(348px, 100%);
    height: auto;
    aspect-ratio: 348 / 318;
  }
  .bty-guiding__text { width: 100%; height: auto; }

  .bty-stages__grid { flex-wrap: wrap; }
  .bty-stage-card { flex: 1 1 calc(50% - 12px); }
  .bty-foundations__grid { flex-wrap: wrap; }
  .bty-foundations__divider { display: none; }
  .bty-foundation { flex: 1 1 calc(50% - 12px); }

  .bty-origin {
    flex-direction: column;
    gap: 48px;
    padding: 80px 40px;
  }
  .bty-origin__visuals {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }
  .bty-origin__photo--lg {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 348;
  }
  .bty-origin__row-photos {
    gap: 14px;
    flex-wrap: nowrap;
  }
  .bty-origin__photo--sm {
    width: calc(50% - 7px);
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    aspect-ratio: 250 / 180;
  }

  .bty-page-hero--method {
    height: auto;
    max-height: none;
    min-height: 480px;
    overflow: visible;
  }
  .bty-page-hero__content--method h1 { font-size: 42px; }
  .bty-foundations__header h2 { font-size: 44px; }
  .bty-founder__text h2 { font-size: 36px; }

  .bty-page-hero--home {
    height: auto;
    min-height: 560px;
    max-height: none;
    background: #fff;
  }
  .bty-page-hero--home .bty-page-hero__bg,
  .bty-page-hero--home .bty-page-hero__overlay {
    inset: 0;
    height: 100%;
  }
  .bty-page-hero--home .bty-page-hero__content {
    padding: 140px 40px 120px;
    height: auto;
  }
  .bty-page-hero--home h1 { font-size: 48px; }
  /* Hero curve: keep Figma vw-scaled height (no fixed override) */
  .bty-page-hero--home + .bty-situations {
    margin-top: -1px;
  }
  .bty-page-hero__content h1 { font-size: 42px; }

  .bty-method-teaser .bty-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .bty-timeline__grid { grid-template-columns: repeat(2, 1fr); }
  .bty-programmes__grid { gap: 24px; }
  .bty-programme-card { min-height: 0; padding: 40px; }

  .bty-footer__top { gap: 32px; }
  .bty-footer__brand {
    width: min(320px, 100%);
    min-width: 0;
  }
  .bty-footer__social {
    width: min(280px, 100%);
    min-width: 0;
  }
  .bty-final-cta { padding: 80px 40px; }
  .bty-situations,
  .bty-method-teaser,
  .bty-why,
  .bty-testimonials,
  .bty-programmes,
  .bty-timeline,
  .bty-articles-featured,
  .bty-articles-grid-section,
  .bty-related {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Leadership — tablet only: text ~90% width (desktop + mobile unchanged) */
@media (min-width: 901px) and (max-width: 1200px) {
  .bty-founder__text {
    width: 90%;
    max-width: 90%;
  }
}

/* Large phone / small tablet — hamburger + single-column grids */
@media (max-width: 900px) {
  :root {
    --bty-pad: 24px;
    --bty-header-h: 64px;
  }

  .bty-header {
    height: var(--bty-header-h);
  }
  .bty-header__inner {
    justify-content: flex-start;
    align-items: center;
    gap: 0;
  }
  .bty-header__logo {
    width: 96px;
    height: 42px;
    margin-right: auto;
    flex-shrink: 0;
  }
  .bty-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
    flex-shrink: 0;
    margin: 0 0 0 16px;
    padding: 8px;
  }
  .bty-header__right {
    order: 2;
    align-items: center;
    gap: 0;
    margin-left: 0;
    flex-shrink: 0;
  }
  .bty-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    order: 4;
    background: var(--bty-navy);
    padding: 24px var(--bty-section-x);
    z-index: 1001;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
  }
  .bty-header__nav.is-open { display: block; }
  .bty-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: var(--bty-content);
    margin: 0 auto;
    width: 100%;
  }
  .bty-header__right .bty-btn { display: none; }

  .bty-situations__grid { grid-template-columns: 1fr 1fr; }
  .bty-situations__col {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 193, 181, .6);
  }

  .bty-steps-grid,
  .bty-method-teaser .bty-steps-grid,
  .bty-programmes__grid,
  .bty-articles-grid,
  .bty-timeline__grid,
  .bty-final-cta__steps {
    grid-template-columns: 1fr !important;
    display: grid;
  }
  .bty-final-cta__steps {
    flex-direction: column;
    gap: 32px;
  }

  .bty-stages__grid { flex-direction: column; }
  .bty-stage-card { flex: 1 1 auto; width: 100%; }
  .bty-foundations__grid { flex-direction: column; }
  .bty-foundation { flex: 1 1 auto; width: 100%; }

  .bty-origin__row { flex-direction: column; gap: 8px; }
  .bty-origin__label { width: auto; }
  /* Mobile/small tablet: Origin Story visuals use full available width */
  .bty-origin__content {
    width: 100%;
    max-width: none;
  }
  .bty-origin__visuals {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    gap: 12px;
  }
  .bty-origin__row-photos {
    gap: 12px;
    flex-wrap: nowrap;
  }
  .bty-origin__photo--sm {
    width: calc(50% - 6px);
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    aspect-ratio: 250 / 180;
  }

  .bty-carousel { gap: 10px; }
  .bty-carousel__track { gap: 0; }
  .bty-carousel__btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .bty-testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: 100%;
    min-width: 0;
    padding: 32px 24px;
  }
  .bty-testimonial-card__quote {
    height: auto;
    min-height: 0;
  }

  .bty-split { grid-template-columns: 1fr; }
  .bty-author-bio__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 24px;
  }
  .bty-search { width: 100%; max-width: 100%; }

  .bty-footer {
    padding: 64px var(--bty-pad) 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .bty-footer__top {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bty-footer__brand,
  .bty-footer__social,
  .bty-footer__col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .bty-footer__tiktok {
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
  }
  .bty-footer__tiktok > span:last-child {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .bty-footer__email {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .bty-footer__divider,
  .bty-footer__bottom {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bty-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }
  .bty-footer__bottom p {
    margin: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .bty-page-hero--legal {
    min-height: 320px;
    padding: 120px var(--bty-pad) 64px;
  }
  .bty-page-hero--legal .bty-page-hero__content h1 {
    font-size: 36px;
  }
  .bty-page-hero__content h1 { font-size: 36px; }
  .bty-page-hero--home .bty-page-hero__content {
    padding: 120px 24px 100px;
  }
  .bty-page-hero--home h1 { font-size: 40px; letter-spacing: -0.5px; }
  .bty-page-hero--method { min-height: 420px; }
  .bty-page-hero__content--method h1 { font-size: 36px; }

  .bty-situations,
  .bty-method-teaser,
  .bty-why,
  .bty-testimonials,
  .bty-guide,
  .bty-programmes,
  .bty-timeline,
  .bty-final-cta,
  .bty-articles-featured,
  .bty-articles-grid-section,
  .bty-related,
  .bty-guiding,
  .bty-stages,
  .bty-foundations,
  .bty-origin,
  .bty-founder,
  .bty-support-banner,
  .bty-contact-form-section,
  .bty-search-results,
  .bty-single-hero,
  .bty-article-body,
  .bty-author-bio,
  .bty-thank-you {
    padding-left: var(--bty-pad);
    padding-right: var(--bty-pad);
  }

  .bty-empathy__photo {
    padding-left: var(--bty-pad);
    padding-right: var(--bty-pad);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bty-empathy__text {
    padding-left: var(--bty-pad);
    padding-right: var(--bty-pad);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .bty-contact-form-section {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
  }
  .bty-support-banner__cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 32px 24px;
  }
  .bty-enquiries,
  .bty-form-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .bty-enquiries__email {
    flex-wrap: wrap;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .bty-section-label {
    flex-wrap: wrap;
    max-width: 100%;
    row-gap: 6px;
  }
  .bty-section-label__text {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .bty-section-label--left .bty-section-label__text {
    text-align: left;
  }

  .bty-search {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bty-featured-layout,
  .bty-articles-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bty-featured-main {
    width: 100%;
    max-width: 100%;
    height: 400px;
    min-height: 280px;
  }

  .bty-programme-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .bty-programme-card__title h3 {
    white-space: normal;
    font-size: 28px;
    overflow-wrap: anywhere;
  }
  .bty-programme-card__footer .bty-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .bty-guiding__photo,
  .bty-guiding__text,
  .bty-guide__info,
  .bty-why__intro,
  .bty-why__principles,
  .bty-founder__photo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .bty-founder__text {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .bty-situations,
  .bty-method-teaser,
  .bty-why,
  .bty-testimonials,
  .bty-guide,
  .bty-programmes {
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 40px;
  }

  .bty-situations__header h2,
  .bty-method-teaser__header h2,
  .bty-why__intro h2,
  .bty-testimonials__header h2,
  .bty-guide__info h2,
  .bty-programmes__header h2,
  .bty-timeline__header h2,
  .bty-final-cta__content h2,
  .bty-stages__header h2,
  .bty-origin__intro h2,
  .bty-enquiries h2 {
    font-size: 32px;
  }
  .bty-foundations__header h2 { font-size: 36px; }
  .bty-empathy__text h2 { font-size: 30px; }
  .bty-founder__text h2 { font-size: 32px; }

  .bty-form-card { padding: 32px 24px; }
  .bty-programme-card { padding: 32px 24px; }

  /* Allow wrapping on small/mid widths; full mobile polish is ≤767 */
  .bty-btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bty-hero-ctas .bty-btn,
  .bty-guide__info .bty-btn,
  .bty-final-cta__action .bty-btn {
    width: 100%;
    max-width: 100%;
  }

  .bty-articles-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .bty-single-hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }
  .bty-single-hero__content h1 { font-size: 36px; }
  .bty-article-body,
  .bty-author-bio {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .bty-thank-you__closing { font-size: 22px; }
  .bty-thank-you__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bty-thank-you__actions .bty-btn {
    width: 100%;
    justify-content: center;
  }

  .bty-latest-item { grid-template-columns: 72px 1fr; }
  .bty-featured-main__overlay h2 { font-size: 26px; }
}

/* Phones / mobile only — overflow guards for fixed header (WebKit).
   Header top / sticky styles match tablet: base .bty-header + admin-bar offset above.
   Do not force top:0 here — that diverged from tablet and caused the 46px gap. */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: visible;
  }
  /* Clip page content overflow without touching the fixed header (outside main) */
  main#main {
    overflow-x: clip;
    overflow-y: visible;
    max-width: 100%;
  }

  /* Origin Story — full available width on mobile */
  .bty-origin {
    width: 100%;
    box-sizing: border-box;
  }
  .bty-origin__content,
  .bty-origin__visuals {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .bty-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    z-index: 10000;
  }
  /* Solid sticky bar: disable screen blend so logo stays visible over light content */
  .bty-header.is-sticky .bty-header__logo img {
    mix-blend-mode: normal;
  }
  .bty-header__nav {
    z-index: 10001;
  }

  /* Mobile: hide section-label decorative lines (keep label text) */
  .bty-section-label__line {
    display: none;
  }

  /* Mobile buttons — full text visible, no clip/overflow */
  .bty-btn {
    white-space: normal;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
    height: auto;
    min-height: 48px;
    max-width: 100%;
    width: auto;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: 0.8px;
    gap: 8px;
  }
  .bty-btn > span {
    min-width: 0;
    flex: 0 1 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .bty-btn--gold,
  .bty-btn--ghost-light {
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .bty-btn--sm {
    padding: 12px 18px;
    min-height: 44px;
  }
  .bty-btn--full {
    width: 100%;
  }
  .bty-hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    gap: 12px;
    box-sizing: border-box;
  }
  .bty-hero-ctas .bty-btn,
  .bty-guide__info .bty-btn,
  .bty-final-cta__action .bty-btn,
  .bty-thank-you__actions .bty-btn,
  .bty-support-banner__cta .bty-btn,
  .bty-programme-card__footer .bty-btn,
  .bty-empathy__text .bty-btn,
  .bty-form-card .bty-btn,
  .bty-method-teaser .bty-btn,
  .bty-situations .bty-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .bty-programme-card__footer .bty-btn {
    width: 100%;
    padding: 14px 20px;
  }
  .bty-final-cta__action {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }

  /* Parent Voices — hide arrows; show centered pagination dots */
  .bty-carousel {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .bty-carousel__btn {
    display: none;
  }
  .bty-carousel__viewport {
    width: 100%;
  }
  .bty-carousel__dots {
    display: flex;
  }
  .bty-testimonial-card {
    padding: 32px 24px;
    min-height: 0;
  }

  /* Complimentary Resource — mobile stack, readable text, proportional book */
  .bty-guide {
    gap: 32px;
    align-items: stretch;
  }
  .bty-guide__info {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    align-items: stretch;
    min-width: 0;
    box-sizing: border-box;
  }
  .bty-guide__info h2 {
    font-size: 28px;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .bty-guide__info > p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 100%;
  }
  .bty-guide__features {
    width: 100%;
    gap: 14px;
  }
  .bty-guide__feature {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .bty-guide__feature img {
    margin-top: 3px;
    flex-shrink: 0;
  }
  .bty-guide__feature span {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.45;
    overflow-wrap: break-word;
  }
  .bty-guide__info .bty-btn {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    justify-content: center;
    box-sizing: border-box;
  }
  .bty-guide__visual {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    padding: 28px 20px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }
  /* Keep 280×384 proportions; scale down inside narrow viewports */
  .bty-guide__book {
    width: min(280px, 100%);
    max-width: 100%;
    height: auto;
    aspect-ratio: 280 / 384;
    min-height: 0;
    padding: clamp(18px, 5.5vw, 32px);
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .bty-guide__book-top {
    gap: clamp(10px, 3vw, 16px);
    min-width: 0;
  }
  .bty-guide__book h3 {
    font-size: clamp(18px, 6vw, 28px);
    line-height: 1.2;
    overflow-wrap: break-word;
  }
  .bty-guide__book-kicker {
    font-size: clamp(8px, 2.4vw, 10px);
    letter-spacing: 1.5px;
  }
  .bty-guide__book-desc {
    font-size: clamp(10px, 2.8vw, 11px);
    line-height: 1.45;
  }
  .bty-guide__book-foot {
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
  }
  .bty-guide__book-foot span {
    min-width: 0;
    overflow-wrap: break-word;
  }
}

/* Phones — layout refinements */
@media (max-width: 600px) {
  :root { --bty-pad: 20px; }

  .bty-situations__grid { grid-template-columns: 1fr; }
  .bty-situations__col { gap: 24px; padding: 24px 0; }

  .bty-page-hero--home {
    min-height: 480px;
  }
  .bty-page-hero--home h1 { font-size: 32px; }
  .bty-page-hero--home .bty-hero-body { font-size: 16px; }
  .bty-page-hero--home .bty-page-hero__content {
    padding: 100px 20px 88px;
    gap: 24px;
  }
  .bty-page-hero__content h1 { font-size: 30px; }
  .bty-page-hero__content p { font-size: 16px; }
  .bty-single-hero__content h1 { font-size: 28px; }
  .bty-hero-ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 12px;
  }
  .bty-hero-ctas .bty-btn {
    max-width: none;
    width: 100%;
  }

  .bty-empathy__photo { padding: 24px 20px 0; }
  .bty-empathy__photo img { max-height: 320px; }
  .bty-empathy__text { padding: 36px 20px; gap: 16px; }
  .bty-empathy__text h2 { font-size: 26px; }

  .bty-step-card { padding: 28px 24px; }
  .bty-principle {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bty-origin__visuals {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
  }
  .bty-origin__row-photos {
    gap: 10px;
  }
  .bty-origin__photo--sm {
    width: calc(50% - 5px);
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    aspect-ratio: 250 / 180;
  }

  .bty-support-banner__cta { padding: 28px 24px; }
  .bty-form-card h3 { font-size: 24px; }
  .bty-enquiries h2 { font-size: 28px; }
  .bty-enquiries__email {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .bty-articles-grid { gap: 24px; }
  .bty-article-card { min-height: 0; }
  .bty-pagination { gap: 8px; }

  .bty-situations__header h2,
  .bty-method-teaser__header h2,
  .bty-why__intro h2,
  .bty-testimonials__header h2,
  .bty-guide__info h2,
  .bty-programmes__header h2,
  .bty-timeline__header h2,
  .bty-final-cta__content h2,
  .bty-stages__header h2,
  .bty-origin__intro h2,
  .bty-founder__text h2 {
    font-size: 28px;
  }
  .bty-foundations__header h2 { font-size: 30px; }
  .bty-situations__close { font-size: 22px; }

  /* Complimentary Resource — tighter phones */
  .bty-guide {
    gap: 28px;
  }
  .bty-guide__info {
    gap: 20px;
  }
  .bty-guide__info h2 {
    font-size: 26px;
  }
  .bty-guide__info > p {
    font-size: 14px;
  }
  .bty-guide__visual {
    padding: 24px 16px;
  }
  .bty-guide__book {
    padding: clamp(16px, 5vw, 28px);
  }

  .bty-btn--gold,
  .bty-btn--ghost-light,
  .bty-btn--navy,
  .bty-btn--outline,
  .bty-btn--outline-light {
    padding-left: 18px;
    padding-right: 18px;
  }
  .bty-btn {
    font-size: 12px;
    letter-spacing: 0.6px;
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 44px;
  }

  /* Extra mobile containment — prevent residual overflow */
  .bty-page-hero__content,
  .bty-page-hero__content--method,
  .bty-final-cta__content,
  .bty-final-cta__steps,
  .bty-final-cta__action,
  .bty-timeline__grid,
  .bty-stages__grid,
  .bty-foundations__grid,
  .bty-programmes__grid,
  .bty-situations__grid,
  .bty-steps-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .bty-final-cta__steps,
  .bty-timeline__grid {
    grid-template-columns: 1fr;
  }
  .bty-lang {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .bty-page-hero--home .bty-page-hero__content {
    padding-left: var(--bty-pad);
    padding-right: var(--bty-pad);
  }
  img {
    max-width: 100%;
    height: auto;
  }
}