:root {
  --wb-green-950: #071f1b;
  --wb-green-900: #0e332c;
  --wb-green-800: #173b36;
  --wb-green-700: #245945;
  --wb-green-600: #2f7d59;
  --wb-sand: #e8ddc8;
  --wb-sand-soft: #f6f1e8;
  --wb-bg: #f4f7f5;
  --wb-white: #ffffff;
  --wb-text: #1f2933;
  --wb-muted: #62706b;
  --wb-border: rgba(23, 59, 54, .14);
  --wb-shadow: 0 18px 45px rgba(7, 31, 27, .12);
  --wb-radius: 22px;
  --wb-radius-sm: 14px;
  --wb-container: 1180px;
  --wb-font: Georgia, "Times New Roman", serif;
  --wb-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--wb-font);
  color: var(--wb-text);
  background: var(--wb-bg);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--wb-green-600); }
img { max-width: 100%; height: auto; }
.screen-reader-text, .wb-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.wb-skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--wb-white);
  border-radius: 10px;
}
.wb-container {
  width: min(var(--wb-container), calc(100% - 40px));
  margin: 0 auto;
}
.wb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 31, 27, .96);
  backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-bar .wb-header { top: 32px; }
.wb-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wb-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.wb-brand:hover { color: #fff; }
.wb-brand__mark {
  width: 54px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.wb-brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wb-brand__text { line-height: 1.05; font-size: 18px; }
.wb-brand__text strong { color: #75c79b; }
.custom-logo { max-height: 54px; width: auto; }
.wb-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.wb-nav__list a {
  display: inline-flex;
  align-items: center;
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 14px;
}
.wb-nav__list a:hover,
.wb-nav__list .current-menu-item > a,
.wb-nav__list .current_page_item > a {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.wb-menu-toggle { display: none; }
.wb-main { min-height: 60vh; }

.wb-home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: transparent;
  background-image: radial-gradient(circle at 70% 30%, #4d675d 0, #213b34 45%, #071f1b 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: normal !important;
  filter: none !important;
}
.wb-home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wb-home-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wb-home-hero::before,
.wb-home-hero::after,
.wb-home-hero__overlay {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.wb-home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 28px 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(7,31,27,.38), rgba(7,31,27,.20));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(7,31,27,.14);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.wb-home-hero__content::before {
  content: none !important;
  display: none !important;
}
.wb-home-hero h1 {
  max-width: 720px;
  margin: 14px 0 18px;
  font-family: var(--wb-serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: .98;
  letter-spacing: -.05em;
}
.wb-home-hero p:not(.wb-eyebrow) {
  max-width: 500px;
  font-size: 18px;
  color: rgba(255,255,255,.9);
}
.wb-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
  color: var(--wb-sand);
}
.wb-eyebrow--dark { color: #8b7653; }
.wb-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.wb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.wb-button:hover { transform: translateY(-1px); color: inherit; }
.wb-button--primary { background: var(--wb-green-600); color: #fff; box-shadow: 0 12px 28px rgba(47,125,89,.25); }
.wb-button--primary:hover { background: var(--wb-green-700); color: #fff; }
.wb-button--light { background: var(--wb-white); color: var(--wb-green-900); }
.wb-button--light:hover { color: var(--wb-green-700); }

.wb-section { padding: 70px 0; background: var(--wb-white); }
.wb-section--sand { background: linear-gradient(180deg, var(--wb-sand-soft), #fff); }
.wb-section--split { padding-top: 40px; }
.wb-section-head { text-align: center; margin-bottom: 30px; }
.wb-section-head h2 {
  margin: 0;
  font-family: var(--wb-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: #1d201e;
}
.wb-course-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.wb-course-grid--wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wb-course-card {
  background: #fff;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(7,31,27,.08);
  display: flex;
  flex-direction: column;
}
.wb-course-card__media {
  display: block;
  height: 170px;
  overflow: hidden;
  background: linear-gradient(135deg, #58756a, #233d36);
}
.wb-course-card__image,
.wb-course-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}
.wb-course-card__image {
  object-fit: cover;
}
.wb-course-card__placeholder {
  background: linear-gradient(135deg, #58756a, #233d36);
}
.wb-course-card--large .wb-course-card__media { height: 220px; }
.wb-course-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.wb-course-card h2,
.wb-course-card h3 { margin: 0 0 9px; font-size: 22px; line-height: 1.16; color: #19231f; }
.wb-course-card h3 { font-family: var(--wb-serif); font-size: 22px; }
.wb-course-card p { color: var(--wb-muted); font-size: 14px; margin: 0 0 18px; }
.wb-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 9px;
  padding: 11px 13px;
  color: #fff;
  background: var(--wb-green-900);
  font-size: 13px;
  font-weight: 850;
}
.wb-card-link:hover { color: #fff; background: var(--wb-green-600); }

.wb-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.wb-benefits span {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(23,59,54,.25);
  border-radius: 50%;
  color: var(--wb-green-700);
  font-size: 28px;
  background: rgba(255,255,255,.56);
}
.wb-benefits h3 { margin: 0 0 8px; font-size: 18px; }
.wb-benefits p { margin: 0; color: var(--wb-muted); font-size: 14px; }
.wb-gallery-grid .gallery {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 !important;
}
.wb-gallery-grid .gallery-item { margin: 0 !important; width: auto !important; }
.wb-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 0 !important;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(7,31,27,.08);
}
.wb-gallery-grid .gallery-caption { display: none; }
.wb-center { text-align: center; margin-top: 26px; }
.wb-split-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; align-items: stretch; }
.wb-video-card {
  position: relative;
  display: block;
  text-decoration: none;
  min-height: 340px;
  border-radius: var(--wb-radius);
  padding: 42px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,31,27,.86) 0%, rgba(7,31,27,.62) 48%, rgba(7,31,27,.18) 100%),
    url('../images/kurs-video-image-optimized.webp') center center / cover no-repeat,
    radial-gradient(circle at 80% 20%, #58756a, #071f1b 65%);
  box-shadow: var(--wb-shadow);
}
.wb-video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.08));
  pointer-events: none;
}
.wb-video-card > * { position: relative; z-index: 1; }
.wb-video-card h2 { max-width: 420px; margin: 0 0 12px; font-family: var(--wb-serif); font-size: 42px; line-height: 1.05; text-shadow: 0 2px 18px rgba(0,0,0,.42); }
.wb-video-card p:not(.wb-eyebrow) { max-width: 380px; color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(0,0,0,.42); }
.wb-video-card:hover,
.wb-video-card:focus { color: #fff; transform: translateY(-2px); }
.wb-video-card:focus-visible { outline: 3px solid rgba(255,255,255,.86); outline-offset: 5px; }
.wb-course-video-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 110px;
  visibility: hidden;
}

.wb-course-video-embed {
  max-width: 640px;
  margin: 18px 0 0;
}
.wb-course-video-embed .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.wb-course-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wb-testimonials { background: var(--wb-sand-soft); border-radius: var(--wb-radius); padding: 36px; }
.wb-testimonials h2 { margin: 0 0 22px; font-family: var(--wb-serif); font-size: 38px; }
.wb-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.wb-testimonial-grid blockquote { margin: 0; padding: 22px; border-radius: 16px; background: #fff; color: var(--wb-text); box-shadow: 0 8px 20px rgba(7,31,27,.06); }
.wb-testimonial-grid blockquote:before { content: '“'; font-size: 40px; line-height: .6; color: var(--wb-green-600); display: block; }
.wb-testimonial-grid cite { display: block; margin-top: 14px; font-style: normal; font-weight: 850; color: var(--wb-green-900); }
.wb-final-cta {
  padding: 64px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(7,31,27,.96), rgba(23,59,54,.84)), radial-gradient(circle at 80% 0%, #4c635b, #071f1b 62%);
}
.wb-final-cta h2 { margin: 0 0 10px; font-family: var(--wb-serif); font-size: clamp(34px, 4vw, 54px); }
.wb-final-cta p { margin: 0 auto 24px; max-width: 680px; color: rgba(255,255,255,.84); }

.wb-page-hero {
  position: relative;
  padding: 92px 0 88px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,31,27,.92), rgba(7,31,27,.55)),
    var(--wb-page-hero-image, radial-gradient(circle at 70% 20%, #64786f, #173b36 55%, #071f1b));
  background-size: cover;
  background-position: center;
}
.wb-page-hero__content { max-width: var(--wb-container); }
.wb-breadcrumbs { margin-bottom: 16px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 750; }
.wb-breadcrumbs a { color: #fff; }
.wb-breadcrumbs span { margin: 0 5px; }
.wb-page-hero h1 {
  max-width: 840px;
  margin: 0 0 14px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.05em;
}
.wb-page-hero p { max-width: 680px; color: rgba(255,255,255,.88); font-size: 18px; }
.wb-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  padding: 46px 0 80px;
}
.wb-content-card {
  background: #fff;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius);
  box-shadow: 0 16px 45px rgba(7,31,27,.08);
  padding: clamp(26px, 4vw, 56px);
}
.wb-entry-content h2,
.wb-entry-content h3,
.wb-entry-content h4 { line-height: 1.2; color: var(--wb-green-900); }
.wb-entry-content h2 { margin-top: 1.4em; font-size: 32px; }
.wb-entry-content h3 { font-size: 24px; }
.wb-entry-content p { margin: 0 0 1.1em; }
.wb-entry-content ul,
.wb-entry-content ol { padding-left: 1.35em; }
.wb-entry-content li { margin-bottom: .35em; }
.wb-entry-content a { color: var(--wb-green-600); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.wb-entry-content img { border-radius: 14px; }
.wb-entry-content .wp-block-gallery { gap: 12px; }
.wb-entry-content .wp-block-image { margin: 1.3em 0; }
.wb-sidebar { display: flex; flex-direction: column; gap: 22px; }
.wb-side-card {
  background: #fff;
  border: 1px solid var(--wb-border);
  border-radius: var(--wb-radius-sm);
  padding: 24px;
  box-shadow: 0 14px 35px rgba(7,31,27,.08);
}
.wb-side-card--cta { background: linear-gradient(180deg, var(--wb-sand-soft), #fff); }
.wb-side-card h2 { margin: 0 0 10px; color: var(--wb-green-900); font-size: 24px; }
.wb-side-card p { color: var(--wb-muted); margin: 0 0 18px; }
.wb-side-links { list-style: none; margin: 0; padding: 0; }
.wb-side-links li + li { border-top: 1px solid var(--wb-border); }
.wb-side-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; font-weight: 800; }

.wb-footer {
  color: rgba(255,255,255,.9);
  background: var(--wb-green-950);
  padding: 54px 0 24px;
}
.wb-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .95fr 1.1fr 1fr;
  gap: 42px;
}
.wb-footer h2 { margin: 0 0 14px; font-size: 16px; color: #fff; }
.wb-footer p { color: rgba(255,255,255,.72); margin: 14px 0 0; max-width: 300px; }
.wb-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.wb-footer__links a { color: rgba(255,255,255,.78); line-height: 1.45; }
.wb-footer__links a:hover { color: #fff; }
.wb-footer__bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.wb-footer__bottom p { margin: 0; max-width: none; font-size: 13px; }
.wb-footer__bottom a + a { margin-left: 18px; }

@media (max-width: 1100px) {
  .wb-course-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wb-benefits { grid-template-columns: repeat(2, 1fr); }
  .wb-split-grid { grid-template-columns: 1fr; }
  .wb-page-layout { grid-template-columns: 1fr; }
  .wb-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 782px) {
  .admin-bar .wb-header { top: 46px; }
}
@media (max-width: 760px) {
  .wb-container { width: min(100% - 28px, var(--wb-container)); }
  .wb-header__inner { min-height: 68px; }
  .wb-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: #fff;
  }
  .wb-menu-toggle span:not(.screen-reader-text) { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 99px; }
  .wb-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--wb-green-950);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 14px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .admin-bar .wb-nav { top: 114px; }
  .wb-menu-open .wb-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .wb-nav__list { flex-direction: column; align-items: stretch; }
  .wb-nav__list a { justify-content: center; }
  .wb-home-hero { min-height: 560px; }
  .wb-home-hero h1 { font-size: clamp(32px, 8.8vw, 42px); }
  .wb-course-grid, .wb-course-grid--wide { grid-template-columns: 1fr; }
  .wb-benefits { grid-template-columns: 1fr; }
  .wb-gallery-grid .gallery { grid-template-columns: repeat(2, 1fr); }
  .wb-testimonial-grid { grid-template-columns: 1fr; }
  .wb-sidebar { grid-template-columns: 1fr; }
  .wb-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .wb-page-hero { padding: 70px 0; }
  .wb-page-hero h1 { font-size: clamp(38px, 12vw, 52px); }
}
@media (max-width: 480px) {
  .wb-actions { flex-direction: column; align-items: stretch; }
  .wb-button { width: 100%; }
  .wb-video-card { padding: 28px; min-height: 310px; }
  .wb-video-card h2 { font-size: 34px; }
  .wb-gallery-grid .gallery { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  .wb-home-hero__content {
    max-width: 100%;
    padding: 22px 20px;
    border-radius: 26px;
  }
}
@media (min-width: 769px) {
  .wb-home-hero .wb-home-hero__content {
    width: min(760px, calc(100% - 100px));
    margin-left: 50px;
    margin-right: auto;
  }
}



@media (max-width: 1100px) {
  .wb-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .wb-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* H26B: mobile hero rope trimmed higher so no rope is visible below the climber. */
.wb-home-hero-scroll {
  position: relative;
}

@media (max-width: 760px) {
  .wb-home-hero-scroll {
    --wb-hero-scroll-distance: 380px;
    --wb-hero-rope-right: 26px;
    position: relative;
  }

  .wb-home-hero-scroll .wb-home-hero {
    position: sticky;
    top: 68px;
    min-height: calc((100svh - 68px) + var(--wb-hero-scroll-distance));
    align-items: flex-start;
    padding-top: 64px;
    padding-bottom: calc(34px + var(--wb-hero-scroll-distance));
    overflow: visible;
    background-position: center top;
  }

  .admin-bar .wb-home-hero-scroll .wb-home-hero {
    top: 114px;
    min-height: calc((100svh - 114px) + var(--wb-hero-scroll-distance));
  }

  .wb-home-hero-scroll .wb-home-hero__content {
    position: relative;
    overflow: visible;
    transform: translate3d(0, var(--wb-hero-card-y, 0px), 0);
    will-change: transform;
    z-index: 2;
  }

  .wb-home-hero-scroll .wb-home-hero__content::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: calc(100% - 10px);
    right: calc(var(--wb-hero-rope-right) - 9px);
    width: 26px;
    height: 26px;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(7, 31, 27, .26);
    box-shadow: 0 10px 20px rgba(7, 31, 27, .22);
    z-index: 1;
    pointer-events: none;
  }

  .wb-home-hero-scroll .wb-home-hero__content::after {
    content: '';
    position: absolute;
    top: calc(100% + 6px);
    right: calc(var(--wb-hero-rope-right) - 8px);
    width: 26px;
    height: calc(var(--wb-hero-scroll-distance) + 400px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 640' preserveAspectRatio='none'%3E%3Cpath d='M18 2 C30 62 6 124 18 190 C30 256 8 322 18 386 C28 452 8 520 18 638' stroke='%23f1ede3' stroke-width='10' fill='none' stroke-linecap='round'/%3E%3Cpath d='M18 2 C30 62 6 124 18 190 C30 256 8 322 18 386 C28 452 8 520 18 638' stroke='%23bcaf97' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-dasharray='8 11'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    filter: drop-shadow(0 8px 16px rgba(7, 31, 27, .24));
    opacity: .95;
    pointer-events: none;
    z-index: 0;
  }

  .wb-home-hero-scroll .wb-hero-rope-climber {
    position: absolute;
    top: calc(100% + 860px);
    right: calc(var(--wb-hero-rope-right) - 66px);
    width: 124px;
    aspect-ratio: 766 / 1024;
    display: block;
    pointer-events: none;
    z-index: 2;
    background-image: url('../images/wb-mobile-rope-climber.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 12px 20px rgba(7, 31, 27, .30));
    transform: rotate(16deg);
    transform-origin: 72% 12%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wb-home-hero-scroll .wb-home-hero__content {
    transform: none !important;
  }
}


/* H33: safer mobile layout for course/subpage templates. */
.wb-page-hero h1,
.wb-entry-content,
.wb-content-card,
.wb-side-card {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 760px) {
  .wb-main {
    overflow-x: clip;
  }

  .wb-page-hero {
    padding: 38px 0 34px;
    background-position: center top;
  }

  .wb-page-hero__content {
    max-width: 100%;
  }

  .wb-breadcrumbs {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.35;
  }

  .wb-page-hero h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.03;
    letter-spacing: -.045em;
    text-wrap: balance;
    hyphens: auto;
  }

  .wb-page-hero p {
    max-width: 100%;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .wb-page-layout {
    gap: 22px;
    padding: 24px 0 46px;
  }

  .wb-content-card {
    border-radius: 18px;
    padding: 22px 18px;
  }

  .wb-entry-content {
    font-size: 15px;
    line-height: 1.65;
  }

  .wb-entry-content h2 {
    font-size: 25px;
    line-height: 1.15;
  }

  .wb-entry-content h3 {
    font-size: 21px;
  }

  .wb-entry-content ul,
  .wb-entry-content ol {
    padding-left: 1.15em;
  }

  .wb-entry-content li {
    margin-bottom: .45em;
  }

  .wb-sidebar {
    gap: 16px;
  }

  .wb-side-card {
    border-radius: 16px;
    padding: 20px 18px;
  }

  .wb-side-card h2 {
    font-size: 21px;
  }
}

@media (max-width: 380px) {
  .wb-container {
    width: min(100% - 20px, var(--wb-container));
  }

  .wb-page-hero h1 {
    font-size: clamp(27px, 9.5vw, 36px);
    letter-spacing: -.04em;
  }

  .wb-content-card {
    padding: 20px 16px;
  }
}


/* H34: mobile subpage content width + responsive legacy embeds safety. */
.wb-page-layout > *,
.wb-content-card,
.wb-sidebar,
.wb-entry-content > * {
  min-width: 0;
}

.wb-entry-content::after {
  content: '';
  display: block;
  clear: both;
}

.wb-entry-content center,
.wb-entry-content figure,
.wb-entry-content .wp-block-embed,
.wb-entry-content .wp-block-embed__wrapper {
  max-width: 100%;
}

.wb-entry-content iframe,
.wb-entry-content video,
.wb-entry-content embed,
.wb-entry-content object {
  display: block;
  max-width: 100%;
}

.wb-entry-content iframe {
  width: 100%;
  border: 0;
}

.wb-entry-content iframe[src*="youtube.com"],
.wb-entry-content iframe[src*="youtube-nocookie.com"],
.wb-entry-content iframe[src*="youtu.be"] {
  aspect-ratio: 16 / 9;
  height: auto;
}

.wb-entry-content iframe[src*="facebook.com/plugins/video.php"] {
  aspect-ratio: 269 / 591;
  height: auto;
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .wb-container {
    width: min(100% - 24px, var(--wb-container));
  }

  .wb-page-layout {
    gap: 18px;
  }

  .wb-content-card,
  .wb-side-card,
  .wb-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .wb-entry-content {
    overflow-x: hidden;
  }

  .wb-entry-content > *,
  .wb-entry-content p,
  .wb-entry-content ul,
  .wb-entry-content ol,
  .wb-entry-content li,
  .wb-entry-content blockquote,
  .wb-entry-content center {
    max-width: 100%;
  }

  .wb-entry-content center {
    display: block;
    width: 100%;
    margin: 1.25em 0;
    text-align: initial;
  }

  .wb-entry-content iframe,
  .wb-entry-content iframe[src*="facebook.com/plugins/video.php"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .wb-entry-content ul,
  .wb-entry-content ol {
    padding-left: 1.1em;
    margin-left: 0;
  }

  .wb-side-card .wb-button {
    width: 100%;
    justify-content: center;
  }

  .wb-side-links,
  .wb-side-links li,
  .wb-side-links a {
    min-width: 0;
    max-width: 100%;
  }

  .wb-side-links a {
    gap: 10px;
    padding: 13px 0;
  }
}

@media (max-width: 380px) {
  .wb-container {
    width: min(100% - 18px, var(--wb-container));
  }

  .wb-content-card,
  .wb-side-card {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* H6: decorative desktop/laptop rope climber, revealed progressively on scroll. */
.wb-home-desktop-rope {
  display: none;
}

@media (min-width: 961px) {
  .wb-home-hero-scroll {
    --wb-desktop-climber-progress: 0;
    --wb-desktop-climber-shift: 0px;
    --wb-desktop-climber-opacity: 0;
    overflow: visible;
  }

  .wb-home-desktop-rope {
    position: absolute;
    top: clamp(445px, 50vw, 520px);
    right: clamp(24px, 6vw, 112px);
    width: 112px;
    height: clamp(540px, 48vw, 760px);
    display: block;
    pointer-events: none;
    z-index: 3;
  }

  .wb-home-desktop-rope::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
    border: 3px solid rgba(255, 255, 255, .92);
    border-radius: 50%;
    background: rgba(7, 31, 27, .38);
    box-shadow: 0 10px 22px rgba(7, 31, 27, .24);
  }

  .wb-home-desktop-rope::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    width: 28px;
    height: 100%;
    transform: translateX(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 900' preserveAspectRatio='none'%3E%3Cpath d='M18 2 C28 96 8 168 18 256 C28 342 10 432 18 520 C26 612 12 728 18 896' stroke='%23f1ede3' stroke-width='9' fill='none' stroke-linecap='round'/%3E%3Cpath d='M18 2 C28 96 8 168 18 256 C28 342 10 432 18 520 C26 612 12 728 18 896' stroke='%23bcaf97' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-dasharray='8 11'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 100%;
    filter: drop-shadow(0 8px 18px rgba(7, 31, 27, .18));
    opacity: .96;
  }

  .wb-home-desktop-rope__climber {
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: clamp(82px, 7vw, 108px);
    aspect-ratio: 766 / 1024;
    display: block;
    background-image: url('../images/wb-mobile-rope-climber.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 14px 22px rgba(7, 31, 27, .24));
    transform: translate3d(-50%, calc(42px + var(--wb-desktop-climber-shift)), 0) rotate(11deg);
    transform-origin: 72% 12%;
    opacity: var(--wb-desktop-climber-opacity);
    will-change: transform, opacity;
  }
}

@media (min-width: 961px) and (max-width: 1240px) {
  .wb-home-desktop-rope {
    right: 18px;
    width: 96px;
    height: clamp(500px, 52vw, 680px);
  }

  .wb-home-desktop-rope__climber {
    width: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wb-home-desktop-rope__climber {
    transform: translate3d(-50%, 0, 0) rotate(11deg) !important;
    opacity: .92 !important;
  }
}



/* WB-HOME-2H3: below-fold homepage sections are skipped until close to viewport. */
@supports (content-visibility: auto) {
  .wb-home-hero-scroll + .wb-section,
  .wb-home-hero-scroll + .wb-section ~ .wb-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}
