@charset "UTF-8";
:root {
  --rkbd-black: #000;
  --rkbd-charcoal: #151519;
  --rkbd-white: #f5f5f0;
  --rkbd-muted: #b9b9b3;
  --rkbd-green: #5f9f61;
  --rkbd-green-dark: #3d7544;
  --rkbd-line: #242428;
  --rkbd-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rkbd-script: "Rock Salt", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--rkbd-black);
  color: var(--rkbd-white);
  font-family: var(--rkbd-body);
  font-size: 16px;
  line-height: 1.45;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: clamp(18px, 4vw, 40px);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.btn,
.button,
button,
input[type=submit],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  align-items: center;
  background: var(--rkbd-green);
  border: 1px solid var(--rkbd-green);
  border-radius: 4px;
  color: #09110a;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  text-decoration: none;
}

.btn:hover,
.button:hover,
button:hover,
input[type=submit]:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--rkbd-green-dark);
  border-color: var(--rkbd-green-dark);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  min-height: 40px;
  padding: 8px;
}

.nav-toggle span:not(.screen-reader-text) {
  background: var(--rkbd-white);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.rkbd-mobile-nav-close,
.rkbd-mobile-nav-backdrop,
.rkbd-submenu-toggle {
  display: none;
}

.content-wrap,
.shop-main .container {
  padding-block: clamp(44px, 7vw, 84px);
}

.site-main {
  background: #000;
}

.entry {
  background: #101014;
  border: 1px solid var(--rkbd-line);
  color: var(--rkbd-white);
  padding: clamp(24px, 5vw, 52px);
}

.entry + .entry {
  margin-top: 28px;
}

.entry h1,
.entry h2,
.entry h3 {
  color: var(--rkbd-white);
}

.entry a {
  color: var(--rkbd-white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry .gform_wrapper,
.gform_wrapper.gravity-theme {
  color: var(--rkbd-white);
}

.entry .gform_wrapper,
.gform_wrapper.gform-theme,
.gform_wrapper.gform-theme--foundation,
.gform_wrapper.gform-theme--framework {
  --gf-ctrl-btn-bg-color-primary: var(--rkbd-green);
  --gf-ctrl-btn-bg-color-hover-primary: var(--rkbd-green-dark);
  --gf-ctrl-btn-border-color-primary: var(--rkbd-green);
  --gf-ctrl-btn-border-color-hover-primary: var(--rkbd-green-dark);
  --gf-ctrl-btn-color-primary: #071007;
  --gf-ctrl-btn-color-hover-primary: #071007;
}

.entry .gform_wrapper .gform_heading,
.entry .gform_wrapper .gform_title,
.entry .gform_wrapper .gfield_label,
.entry .gform_wrapper .gfield_description,
.entry .gform_wrapper .ginput_complex label,
.entry .gform_wrapper .gfield_required,
.gform_wrapper.gravity-theme .gform_heading,
.gform_wrapper.gravity-theme .gform_title,
.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .ginput_complex label,
.gform_wrapper.gravity-theme .gfield_required {
  color: var(--rkbd-white);
}

.entry .gform_wrapper input[type=text],
.entry .gform_wrapper input[type=email],
.entry .gform_wrapper input[type=tel],
.entry .gform_wrapper input[type=url],
.entry .gform_wrapper textarea,
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme textarea {
  color: #111;
}

.entry .gform_wrapper .gform_button,
.entry .gform_wrapper input[type=submit],
.gform_wrapper.gravity-theme .gform_button,
.gform_wrapper.gravity-theme input[type=submit],
.gform_wrapper.gform-theme .gform-theme-button,
.gform_wrapper.gform-theme .gform_button.button,
.gform-theme--framework .gform-theme-button,
.gform-theme--framework input[type=submit].gform_button {
  background: var(--rkbd-green) !important;
  border-color: var(--rkbd-green) !important;
  border-radius: 4px;
  color: #071007 !important;
}

.entry .gform_wrapper .gform_button:hover,
.entry .gform_wrapper input[type=submit]:hover,
.gform_wrapper.gravity-theme .gform_button:hover,
.gform_wrapper.gravity-theme input[type=submit]:hover,
.gform_wrapper.gform-theme .gform-theme-button:hover,
.gform_wrapper.gform-theme .gform_button.button:hover,
.gform-theme--framework .gform-theme-button:hover,
.gform-theme--framework input[type=submit].gform_button:hover {
  background: var(--rkbd-green-dark) !important;
  border-color: var(--rkbd-green-dark) !important;
  color: #071007 !important;
}

.rkbd-home .site-main {
  min-height: 100vh;
}

.rkbd-page {
  background: var(--rkbd-black);
  color: var(--rkbd-white);
  overflow: hidden;
}

.rkbd-home-header {
  align-items: center;
  background: #000;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 1fr) auto minmax(60px, 1fr);
  min-height: 78px;
  padding-inline: clamp(24px, 5vw, 70px);
}

.rkbd-header-brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-family: var(--rkbd-script);
  font-size: clamp(1rem, 2vw, 1rem);
  gap: 16px;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.rkbd-header-brand img {
  display: block;
  height: auto;
  width: 36px;
}

.rkbd-header-nav {
  align-items: center;
  display: flex;
  justify-content: center;
}

.rkbd-header-menu {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3.6vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rkbd-header-menu li {
  position: relative;
}

.rkbd-header-nav a {
  color: #fff;
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  padding: 8px 0;
  text-decoration: none;
}

.rkbd-header-menu .current-menu-item > a,
.rkbd-header-menu .current-menu-ancestor > a,
.rkbd-header-menu .current_page_item > a,
.rkbd-header-menu .current_page_ancestor > a,
.rkbd-header-nav a.is-active {
  color: var(--rkbd-green);
}

.rkbd-header-menu .sub-menu {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0;
  left: 50%;
  list-style: none;
  margin: 0;
  min-width: 210px;
  opacity: 0;
  padding: 10px 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 50;
}

.rkbd-header-menu .sub-menu .sub-menu {
  left: 100%;
  top: -10px;
  transform: translateX(8px);
}

.rkbd-header-menu li:hover > .sub-menu,
.rkbd-header-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.rkbd-header-menu .sub-menu li:hover > .sub-menu,
.rkbd-header-menu .sub-menu li:focus-within > .sub-menu {
  transform: translateX(0);
}

.rkbd-header-menu .sub-menu a {
  font-size: 0.92rem;
  padding: 8px 16px;
  white-space: nowrap;
}

.rkbd-header-cart {
  align-items: center;
  color: #fff;
  display: inline-flex;
  justify-self: end;
  line-height: 1;
  text-decoration: none;
}

.rkbd-header-cart svg {
  display: block;
  height: 26px;
  width: 26px;
}

.rkbd-shell {
  margin-inline: auto;
  max-width: 1100px;
  padding-inline: 24px;
}

.rkbd-wide-shell {
  margin-inline: auto;
  max-width: 1120px;
  padding-inline: 24px;
}

.rkbd-logo,
.rkbd-footer-logo {
  color: var(--rkbd-white);
  font-family: var(--rkbd-script);
  font-size: clamp(2.1rem, 6.7vw, 4.0625rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.9;
  margin: 0;
  text-transform: uppercase;
  word-spacing: 0.22em;
}

.rkbd-logo {
  background: linear-gradient(90deg, #4f9f5f 0%, #b2bc96 48%, #e9c0b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 30px 0 0;
  text-align: center;
}

.rkbd-hero-intro {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 128px minmax(0, auto);
  justify-content: center;
  margin: 0 auto 38px;
}

.rkbd-mark {
  display: block;
  height: auto;
  position: relative;
  width: 128px;
  z-index: 2;
}

.rkbd-hero-intro-copy {
  min-width: 0;
  text-align: center;
}

.rkbd-hero-subheading {
  color: #dcbfd3;
  font-size: clamp(2rem, 3.3vw, 2.625rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 auto;
  text-align: center;
}

.rkbd-train-button-row {
  display: flex;
  justify-content: center;
  margin: -18px 0 32px;
}

.rkbd-train-button {
  display: flex;
  font-size: 1rem;
  margin: 0 auto;
  min-height: 48px;
  min-width: 176px;
}

.rkbd-hero {
  min-height: 880px;
}

.rkbd-hero-media {
  margin-inline: auto;
  max-width: 570px;
}

.rkbd-hero-image {
  aspect-ratio: 570/375;
  display: block;
  object-fit: cover;
  width: 100%;
}

.rkbd-hero-statement {
  color: #dcbfd3;
  font-size: clamp(2rem, 3.3vw, 2.625rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 42px auto 0;
  text-align: center;
  text-transform: uppercase;
}

.media-placeholder {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)), #1f1f22;
  border: 1px solid #38383c;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  text-transform: uppercase;
}

.rkbd-pill-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 58px;
}

.rkbd-pill-nav a {
  color: #d5d5cf;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rkbd-chevron-mark {
  color: var(--rkbd-green);
  display: inline-flex;
  height: 28px;
  width: 35px;
}

.rkbd-chevron-mark:last-child {
  display: none;
}

.rkbd-chevron-mark svg {
  display: block;
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.rkbd-button {
  align-items: center;
  background: var(--rkbd-green);
  border: 0;
  border-radius: 999px;
  color: #071008;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  min-width: 132px;
  padding: 10px 22px;
  text-decoration: none;
}

.rkbd-button-square {
  border-radius: 0;
  display: flex;
  margin: 16px auto 0;
  min-height: 38px;
  width: 136px;
}

.rkbd-why {
  padding: 28px 0 92px;
}

.rkbd-why-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 276px;
}

.rkbd-why h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  margin: 0 0 34px;
}

.rkbd-why h2::first-letter,
.rkbd-why h2 {
  font-weight: 800;
}

.rkbd-check-list {
  display: grid;
  gap: 29px;
  margin-bottom: 24px;
}

.rkbd-check-list p {
  color: #d6d6d0;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
  padding-left: 42px;
  position: relative;
}

.rkbd-why-icon {
  color: var(--rkbd-green);
  display: inline-flex;
  height: 25px;
  left: 0;
  margin: 0;
  position: absolute;
  top: -3px;
  width: 31px;
}

.rkbd-why-icon svg {
  display: block;
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.rkbd-why-copy > .rkbd-button {
  margin-left: 66px;
}

.rkbd-note {
  color: #d8d8d3;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 92px 0 0;
}

.rkbd-note a {
  display: block;
  font-weight: 900;
  margin-top: 3px;
}

.rkbd-phone-frame {
  background: #bfbfbf;
}

.rkbd-phone-media {
  aspect-ratio: 9/16;
  background: #202024;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.rkbd-phone-image,
.rkbd-phone-video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rkbd-phone-media strong {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  left: 24px;
  line-height: 1.08;
  position: absolute;
  right: 24px;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  top: 26px;
}

.rkbd-training {
  background: var(--rkbd-charcoal);
  padding: 66px 0;
}

.rkbd-training-top {
  min-height: 710px;
  position: relative;
}

.rkbd-training-top-image {
  aspect-ratio: 680/350;
  display: block;
  object-fit: cover;
  width: 680px;
}

.rkbd-training-card {
  background: #000;
  min-height: 530px;
  padding: 76px 62px;
  position: absolute;
  right: 0;
  top: 186px;
  width: 675px;
}

.rkbd-training-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin: 0 0 28px;
}

.rkbd-training-card ul,
.rkbd-training-card p,
.rkbd-topics ul {
  color: #ddd;
  font-size: 0.87rem;
  font-weight: 700;
}

.rkbd-training-card p {
  max-width: 560px;
}

.rkbd-training-card .rkbd-button {
  margin: 12px 0 0;
}

.rkbd-topics-row {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: 330px minmax(0, 430px);
  justify-content: center;
  margin-top: 24px;
}

.rkbd-topics h3 {
  font-size: 1rem;
  margin: 0 0 18px;
}

.rkbd-topics ul {
  margin: 0;
  padding-left: 18px;
}

.rkbd-bottom-media {
  text-align: center;
}

.rkbd-training-bottom-image {
  aspect-ratio: 430/302;
  display: block;
  object-fit: cover;
  width: 430px;
}

.rkbd-book-button {
  margin-top: 28px;
}

.rkbd-testimonials-title {
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1;
  margin: 64px 0 84px;
  text-align: center;
}

.rkbd-testimonial-wrap {
  align-items: center;
  display: grid;
  grid-template-columns: 44px 330px minmax(0, 520px) 44px;
  justify-content: center;
}

.rkbd-arrow {
  background: transparent;
  border: 0;
  color: var(--rkbd-green);
  font-size: 2rem;
  min-height: auto;
  padding: 0;
}

.rkbd-testimonial-image-wrap {
  align-self: end;
  display: grid;
}

.rkbd-testimonial-image {
  aspect-ratio: 330/450;
  grid-area: 1/1;
  opacity: 0;
  display: block;
  object-fit: cover;
  transition: opacity 220ms ease;
  width: 330px;
}

.rkbd-testimonial-image.is-active,
.rkbd-testimonial-image.media-placeholder {
  opacity: 1;
}

.rkbd-testimonial-track {
  display: grid;
}

.rkbd-testimonial {
  background: #000;
  grid-area: 1/1;
  margin: 0 0 -1px;
  min-height: 310px;
  opacity: 0;
  padding: 54px 48px;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.rkbd-testimonial.is-active {
  opacity: 1;
  pointer-events: auto;
}

.rkbd-testimonial p {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.33;
  margin: 0 0 36px;
}

.rkbd-testimonial p::after {
  background: #ddd;
  content: "";
  display: block;
  height: 1px;
  margin-top: 28px;
  width: 44px;
}

.rkbd-testimonial cite {
  color: #ddd;
  font-size: 0.86rem;
  font-style: normal;
}

.rkbd-testimonial-dots {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 22px 0 0;
  pointer-events: auto;
}

.rkbd-testimonial-dots button {
  background: var(--rkbd-green);
  border: 0;
  border-radius: 999px;
  height: 7px;
  min-height: auto;
  opacity: 0.78;
  padding: 0;
  width: 7px;
}

.rkbd-testimonial-dots button.is-active {
  background: transparent;
  box-shadow: 0 0 0 2px var(--rkbd-green);
  opacity: 1;
}

.rkbd-footer {
  background: #000;
}

.rkbd-footer-main {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.85fr);
  padding: 42px clamp(24px, 5vw, 64px) 28px;
}

.rkbd-contact-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.rkbd-footer-email {
  color: #d8d8d3;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-left: 30px;
}

.rkbd-socials {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.rkbd-socials a {
  align-items: center;
  color: #d8d8d3;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  text-decoration: none;
  width: 20px;
}

.rkbd-socials img {
  display: block;
  height: auto;
  max-height: 20px;
  max-width: 20px;
  width: auto;
}

.rkbd-subscribe {
  display: grid;
  gap: 10px;
  margin-top: 42px;
  max-width: 420px;
}

.rkbd-newsletter-shortcode {
  margin-top: 42px;
  max-width: 420px;
}

.rkbd-newsletter-shortcode .gform_wrapper {
  color: var(--rkbd-white);
}

.rkbd-newsletter-shortcode .gform_wrapper .gform_heading {
  display: none;
}

.rkbd-newsletter-shortcode .tnp-subscription,
.rkbd-newsletter-shortcode .tnp {
  margin: 0;
  max-width: none;
}

.rkbd-newsletter-shortcode form {
  display: grid;
  gap: 12px 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rkbd-newsletter-shortcode .tnp-field {
  margin: 0;
}

.rkbd-newsletter-shortcode .tnp-field-email,
.rkbd-newsletter-shortcode .tnp-field-privacy,
.rkbd-newsletter-shortcode .tnp-field-button {
  grid-column: 1/-1;
}

.rkbd-newsletter-shortcode .tnp-field label {
  color: #d9d9d4;
  display: block;
  font-size: 0.78rem;
  margin: 0 0 6px;
}

.rkbd-newsletter-shortcode .tnp-field input[type=text],
.rkbd-newsletter-shortcode .tnp-field input[type=email] {
  background: #000;
  border: 1px solid #d8d8d3;
  color: #fff;
  min-height: 34px;
  padding: 6px 8px;
  width: 100%;
}

.rkbd-newsletter-shortcode .tnp-field-privacy label {
  align-items: center;
  display: flex;
  gap: 8px;
}

.rkbd-newsletter-shortcode .tnp-submit {
  background: var(--rkbd-green) !important;
  border-color: var(--rkbd-green) !important;
  border-radius: 0;
  color: #061006 !important;
  min-height: 42px;
  width: 100%;
}

.rkbd-newsletter-shortcode .tnp-submit:hover {
  background: var(--rkbd-green-dark) !important;
  border-color: var(--rkbd-green-dark) !important;
}

.rkbd-subscribe label,
.rkbd-location,
.rkbd-footer-menu a,
.rkbd-copyright {
  color: #d9d9d4;
  font-size: 0.78rem;
}

.rkbd-subscribe input[type=email] {
  background: #000;
  border: 1px solid #d8d8d3;
  color: #fff;
  min-height: 34px;
  padding: 6px 8px;
}

.rkbd-checkbox {
  align-items: center;
  display: flex;
  gap: 8px;
}

.rkbd-subscribe button {
  border-radius: 0;
  color: #061006;
  min-height: 42px;
}

.rkbd-location {
  margin: 0 0 14px;
}

.rkbd-footer-nav-column {
  grid-column: 3;
  justify-self: end;
  min-width: 190px;
}

.rkbd-footer-menu {
  display: grid;
  gap: 0px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rkbd-footer-menu a {
  display: inline-block;
  line-height: 1.2;
  text-decoration: none;
}

.rkbd-footer-logo {
  font-size: clamp(2rem, 6.8vw, 4.0625rem);
  margin: 10px auto 36px;
  max-width: 1120px;
  padding-inline: 24px;
  text-align: center;
}

.rkbd-copyright {
  margin: 0;
  padding: 0 24px 42px;
  text-align: center;
}

.rkbd-training-page {
  background: var(--rkbd-charcoal);
  overflow-x: hidden;
}

.rkbd-training-page-main {
  background: var(--rkbd-charcoal);
  color: var(--rkbd-white);
  min-height: 100vh;
  overflow: hidden;
  padding-top: 44px;
}

.rkbd-training-page-hero,
.rkbd-training-courses {
  margin-inline: auto;
  max-width: 1280px;
  padding-inline: 24px;
}

.rkbd-training-page-card,
.rkbd-training-courses {
  background: #000;
}

.rkbd-training-page-card {
  min-height: 785px;
  padding: 26px 0 62px 96px;
}

.rkbd-training-page-intro {
  align-items: start;
  display: grid;
  gap: 62px;
  grid-template-columns: 270px minmax(0, 1fr);
}

.rkbd-training-page-mark {
  display: block;
  margin-left: -28px;
  width: 230px;
}

.rkbd-training-page-heading h1 {
  font-family: var(--rkbd-script);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 10px 0 78px;
  white-space: nowrap;
}

.rkbd-training-page-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.1;
  margin: 0 0 28px;
}

.rkbd-training-page-heading ul,
.rkbd-training-page-topics ul {
  color: #d9d9d4;
  font-size: 1rem;
  font-weight: 800;
}

.rkbd-training-page-body {
  align-items: start;
  display: grid;
  gap: 110px;
  grid-template-columns: 430px minmax(0, 1fr);
  margin-top: 42px;
}

.rkbd-training-page-topics h2,
.rkbd-training-page-topics h3 {
  font-size: 1.28rem;
  margin: 0 0 26px;
}

.rkbd-training-page-topics ul {
  margin: 0 0 24px;
  padding-left: 26px;
}

.rkbd-training-email-button {
  border-radius: 0;
  min-width: 150px;
}

.rkbd-training-page-featured {
  margin-right: -60px;
  max-width: calc(100vw - 48px);
}

.rkbd-training-page-featured-image {
  aspect-ratio: 720/404;
  display: block;
  object-fit: cover;
  width: min(720px, 100vw - 84px);
}

.rkbd-training-courses {
  margin-top: 22px;
  padding-block: 78px 86px;
}

.rkbd-training-courses-grid {
  display: grid;
  gap: 72px 84px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 840px;
}

.rkbd-training-course:nth-child(5) {
  grid-column: 1/-1;
  justify-self: center;
  max-width: 405px;
  width: 100%;
}

.rkbd-training-course a {
  color: #d9d9d4;
  display: grid;
  gap: 24px;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rkbd-training-course img,
.rkbd-training-course-placeholder {
  aspect-ratio: 405/300;
  display: block;
  object-fit: cover;
  width: 100%;
}

.rkbd-training-footer-nav {
  align-items: center;
  background: #000;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 1fr) auto minmax(60px, 1fr);
  margin-top: 36px;
  min-height: 82px;
  padding-inline: clamp(24px, 5vw, 70px);
}

.rkbd-training-subpage-main {
  background: var(--rkbd-charcoal);
  color: var(--rkbd-white);
  overflow: hidden;
}

.rkbd-training-subpage-hero {
  background: #000;
  padding: clamp(82px, 10vw, 132px) 24px 52px;
  text-align: center;
}

.rkbd-training-subpage-hero-inner {
  margin-inline: auto;
  max-width: 760px;
}

.rkbd-training-subpage-hero h1 {
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 34px;
}

.rkbd-training-subpage-intro {
  color: #e8e6de;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.rkbd-training-subpage-intro p {
  margin: 0 0 6px;
}

.rkbd-training-subpage-body {
  border-top: 1px solid #050505;
}

.rkbd-training-subpage-grid {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  margin-inline: auto;
  max-width: 1280px;
}

.rkbd-training-subpage-gallery {
  align-self: start;
  background: var(--rkbd-charcoal);
  display: grid;
  gap: 18px;
  padding: 22px clamp(24px, 6vw, 80px) 36px;
}

.rkbd-training-subpage-gallery figure {
  margin: 0;
}

.rkbd-training-subpage-gallery img,
.rkbd-training-subpage-gallery .media-placeholder {
  aspect-ratio: 482/288;
  display: block;
  object-fit: cover;
  width: 100%;
}

.rkbd-training-subpage-content {
  background: #000;
  color: #e8e6de;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 24px clamp(24px, 8vw, 126px) 92px;
}

.rkbd-training-subpage-content > *:first-child {
  margin-top: 0;
}

.rkbd-training-subpage-content h2,
.rkbd-training-subpage-content h3,
.rkbd-training-subpage-content h4 {
  color: var(--rkbd-white);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 24px;
}

.rkbd-training-subpage-content p {
  margin: 0 0 24px;
}

.rkbd-training-subpage-content ul,
.rkbd-training-subpage-content ol {
  margin: 0 0 88px;
  padding-left: 24px;
}

.rkbd-training-subpage-content li {
  margin: 0 0 4px;
}

.rkbd-training-subpage-content a {
  color: var(--rkbd-white);
  text-underline-offset: 3px;
}

.rkbd-training-subpage-content .button,
.rkbd-training-subpage-content .rkbd-button,
.rkbd-training-subpage-content a.button {
  background: var(--rkbd-green);
  border: 0;
  border-radius: 999px;
  color: #071007;
  display: inline-flex;
  font-weight: 400;
  letter-spacing: 0.18em;
  min-height: 42px;
  min-width: 142px;
  padding: 9px 22px;
  text-decoration: none;
}

.rkbd-training-subpage-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 8vw, 118px);
}

.rkbd-training-subpage-nav {
  margin-top: 0;
}

.rkbd-about-page {
  background: #000;
}

.rkbd-about-main {
  background: #000;
  color: var(--rkbd-white);
  min-height: 100vh;
  overflow: hidden;
}

.rkbd-about-mission {
  align-items: end;
  display: grid;
  min-height: 500px;
  padding: 90px 24px 44px;
}

.rkbd-about-mission-inner {
  margin-inline: auto;
  max-width: 790px;
  text-align: center;
}

.rkbd-about-mission h1,
.rkbd-about-copy h2,
.rkbd-about-vision h2 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1;
  margin: 0;
}

.rkbd-about-mission h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 12px 0 28px;
}

.rkbd-about-mission blockquote {
  color: #c9c9c3;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.75;
  margin: 0;
}

.rkbd-about-mission cite {
  display: block;
  font-style: normal;
}

.rkbd-about-bio {
  border: 1px solid #b8b8b2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.rkbd-about-photo {
  background: var(--rkbd-charcoal);
  display: grid;
  justify-items: center;
  padding: 0 78px 0;
}

.rkbd-about-portrait {
  aspect-ratio: 500/580;
  display: block;
  max-width: 500px;
  object-fit: cover;
  width: 100%;
}

.rkbd-about-copy {
  border-left: 1px solid #b8b8b2;
  padding: 62px clamp(48px, 8vw, 126px) 34px;
}

.rkbd-about-copy h2 {
  margin-bottom: 86px;
  text-align: center;
}

.rkbd-about-copy p,
.rkbd-about-vision p {
  color: #c9c9c3;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 24px;
}

.rkbd-about-vision {
  border-bottom: 1px solid #b8b8b2;
  border-left: 1px solid #b8b8b2;
  border-right: 1px solid #b8b8b2;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
}

.rkbd-about-vision-copy {
  padding: 64px clamp(48px, 9vw, 120px) 42px;
}

.rkbd-about-vision h2 {
  margin-bottom: 52px;
  text-align: center;
}

.rkbd-about-vision-image {
  aspect-ratio: 740/450;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rkbd-about-nav {
  margin-top: 0;
}

.rkbd-shop-page {
  background: #000;
  color: var(--rkbd-white);
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 64px) clamp(24px, 5vw, 60px);
}

.rkbd-shop-layout {
  display: grid;
  gap: clamp(30px, 4vw, 46px);
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  margin-inline: auto;
  max-width: 1240px;
}

.rkbd-shop-sidebar {
  color: #f2f0ea;
  font-size: 1rem;
}

.rkbd-shop-breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 44px;
  white-space: nowrap;
}

.rkbd-shop-breadcrumb a {
  text-decoration: none;
}

.rkbd-shop-breadcrumb span {
  color: rgba(245, 245, 240, 0.62);
  display: inline-flex;
}

.rkbd-shop-panel {
  border-bottom: 1px solid rgba(245, 245, 240, 0.22);
  padding-bottom: 28px;
}

.rkbd-shop-panel + .rkbd-shop-panel {
  margin-top: 38px;
}

.rkbd-shop-panel h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 18px;
}

.rkbd-shop-category-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rkbd-shop-category-list a {
  line-height: 1.25;
  text-decoration: none;
}

.rkbd-shop-category-list a:hover,
.rkbd-shop-category-list a.is-active {
  color: var(--rkbd-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rkbd-shop-filter form {
  display: grid;
  gap: 14px;
}

.rkbd-shop-filter-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--rkbd-white);
  display: flex;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  justify-content: space-between;
  letter-spacing: 0;
  margin: 0 0 18px;
  min-height: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.rkbd-shop-filter-toggle:hover {
  background: transparent;
  border-color: transparent;
  color: var(--rkbd-white);
}

.rkbd-shop-filter-caret {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: none;
  height: 9px;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
  width: 9px;
}

.rkbd-shop-filter label {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.rkbd-price-range {
  display: grid;
  min-height: 24px;
  position: relative;
}

.rkbd-price-range input[type=range] {
  appearance: none;
  background: transparent;
  grid-area: 1/1;
  height: 24px;
  margin: 0;
  pointer-events: none;
  width: 100%;
}

.rkbd-price-range::before {
  background: #f6f4e7;
  content: "";
  height: 2px;
  left: 4px;
  position: absolute;
  right: 4px;
  top: 11px;
}

.rkbd-price-range input[type=range]::-webkit-slider-thumb {
  appearance: none;
  background: #f6f4e7;
  border: 0;
  border-radius: 50%;
  height: 13px;
  pointer-events: auto;
  position: relative;
  width: 13px;
  z-index: 2;
}

.rkbd-price-range input[type=range]::-moz-range-thumb {
  background: #f6f4e7;
  border: 0;
  border-radius: 50%;
  height: 13px;
  pointer-events: auto;
  position: relative;
  width: 13px;
  z-index: 2;
}

.rkbd-price-values {
  display: flex;
  justify-content: space-between;
}

.rkbd-shop-filter form button {
  border-radius: 0;
  justify-self: start;
  min-height: 34px;
  padding: 6px 18px;
}

.rkbd-shop-content {
  min-width: 0;
}

.rkbd-shop-hero {
  height: clamp(190px, 22vw, 280px);
  margin-bottom: 22px;
  overflow: hidden;
  width: calc(100% + clamp(28px, 5vw, 70px));
}

.rkbd-shop-hero img,
.rkbd-shop-hero .media-placeholder {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rkbd-shop-intro {
  max-width: 760px;
}

.rkbd-shop-intro h1 {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 8px;
}

.rkbd-shop-intro p {
  color: #f2f0ea;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin: 0;
}

.rkbd-shop-intro a {
  font-weight: 500;
  text-underline-offset: 3px;
}

.rkbd-shop-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 62px 0 22px;
}

.rkbd-shop-toolbar .woocommerce-ordering {
  margin: 0;
}

.rkbd-shop-toolbar select {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--rkbd-white);
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.02em;
  padding: 4px 24px 4px 0;
}

.rkbd-shop-content ul.products {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.rkbd-shop-content ul.products::before,
.rkbd-shop-content ul.products::after {
  display: none;
}

.rkbd-shop-content ul.products li.product {
  display: block;
  float: none;
  margin: 0;
  min-width: 0;
  position: relative;
  width: 100%;
}

.woocommerce .rkbd-shop-content ul.products[class*=columns-] li.product,
.woocommerce-page .rkbd-shop-content ul.products[class*=columns-] li.product {
  float: none;
  margin: 0;
  width: 100%;
}

.rkbd-shop-content ul.products li.product a {
  color: var(--rkbd-white);
  text-decoration: none;
}

.rkbd-shop-content ul.products li.product a.woocommerce-LoopProduct-link {
  display: grid;
  gap: 16px;
  width: 100%;
}

.rkbd-shop-content ul.products li.product a.woocommerce-LoopProduct-link::after {
  align-items: center;
  background: rgba(245, 245, 240, 0.78);
  border-radius: 999px;
  color: #111;
  content: "↓";
  display: flex;
  font-size: 1.05rem;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
}

.rkbd-shop-content ul.products li.product img {
  aspect-ratio: 1/1;
  display: block;
  height: 100%;
  margin: 0;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.rkbd-shop-content .woocommerce-loop-product__title {
  color: var(--rkbd-white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  padding: 0;
}

.rkbd-shop-content ul.products li.product .price {
  color: #a1a312;
  display: block;
  font-weight: 700;
  margin-top: -8px;
}

.rkbd-shop-content ul.products li.product .button {
  display: none;
}

.rkbd-shop-page .woocommerce-pagination {
  margin-top: 44px;
}

.rkbd-shop-page .woocommerce-pagination ul {
  border: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rkbd-shop-page .woocommerce-pagination li {
  border: 0;
}

.rkbd-shop-page .woocommerce-pagination a,
.rkbd-shop-page .woocommerce-pagination span {
  align-items: center;
  border: 1px solid rgba(245, 245, 240, 0.28);
  display: flex;
  height: 36px;
  justify-content: center;
  min-width: 36px;
  text-decoration: none;
}

.rkbd-shop-page .woocommerce-pagination .current {
  background: var(--rkbd-green);
  border-color: var(--rkbd-green);
  color: #071007;
}

.rkbd-product-page {
  background: #000;
  color: var(--rkbd-white);
  overflow: hidden;
  padding: clamp(62px, 8vw, 118px) clamp(18px, 4vw, 64px) clamp(48px, 7vw, 92px);
}

.rkbd-product-shell {
  margin-inline: auto;
  max-width: 1010px;
}

.rkbd-product-topline {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 60px;
}

.rkbd-product-breadcrumb,
.rkbd-product-prev-next {
  align-items: center;
  color: #f0eee7;
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  gap: 14px;
  letter-spacing: 0.02em;
}

.rkbd-product-breadcrumb a,
.rkbd-product-prev-next a {
  text-decoration: none;
}

.rkbd-product-breadcrumb a + a::before,
.rkbd-product-breadcrumb span::before,
.rkbd-product-prev-next a[rel=prev]::before,
.rkbd-product-prev-next a[rel=next]::after {
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
  display: inline-block;
  height: 9px;
  width: 9px;
}

.rkbd-product-breadcrumb a + a::before,
.rkbd-product-breadcrumb span::before {
  margin-right: 14px;
  transform: rotate(45deg);
}

.rkbd-product-breadcrumb span {
  color: rgba(240, 238, 231, 0.48);
}

.rkbd-product-prev-next {
  justify-content: end;
}

.rkbd-product-prev-next span {
  background: rgba(240, 238, 231, 0.7);
  height: 18px;
  width: 1px;
}

.rkbd-product-prev-next a[rel=prev]::before {
  margin-right: 10px;
  transform: rotate(-135deg);
}

.rkbd-product-prev-next a[rel=next]::after {
  margin-left: 10px;
  transform: rotate(45deg);
}

.rkbd-product-grid {
  align-items: start;
  display: grid;
  gap: clamp(36px, 5vw, 58px);
  grid-template-columns: minmax(0, 500px) minmax(300px, 1fr);
}

.rkbd-product-media {
  min-width: 0;
}

.rkbd-product-media div.product {
  float: none;
}

.rkbd-product-media .woocommerce-product-gallery,
.woocommerce div.product .rkbd-product-media div.images,
.woocommerce-page div.product .rkbd-product-media div.images {
  float: none;
  margin: 0;
  width: 100%;
}

.rkbd-product-media .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.rkbd-product-media .woocommerce-product-gallery__image:first-child {
  background: #121214;
  border: 1px solid rgba(245, 245, 240, 0.08);
}

.rkbd-product-media .woocommerce-product-gallery__image:first-child img {
  aspect-ratio: 1/1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.rkbd-product-media .flex-control-thumbs {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.rkbd-product-media .flex-control-thumbs li {
  float: none;
  margin: 0;
  width: 46px;
}

.woocommerce div.product .rkbd-product-media div.images .flex-control-thumbs li {
  clear: none;
  float: none;
  margin: 0;
  width: 46px;
}

.rkbd-product-media .flex-control-thumbs img {
  aspect-ratio: 1/1;
  cursor: pointer;
  display: block;
  object-fit: cover;
  opacity: 0.72;
  width: 100%;
}

.rkbd-product-media .flex-control-thumbs img.flex-active,
.rkbd-product-media .flex-control-thumbs img:hover {
  opacity: 1;
}

.rkbd-product-description {
  color: #f1efe9;
  font-size: 1.05rem;
  letter-spacing: 0.015em;
  line-height: 1.52;
  margin-top: 28px;
}

.rkbd-product-description p {
  margin: 0 0 24px;
}

.rkbd-product-summary {
  min-width: 0;
  padding-top: 2px;
}

.rkbd-product-summary .product_title {
  color: var(--rkbd-white);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 28px;
  max-width: 420px;
}

.rkbd-product-summary .price {
  color: #f0eee7;
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 30px;
}

.rkbd-product-summary form.cart {
  margin: 0 0 40px;
}

.rkbd-product-summary form.cart::before,
.rkbd-product-summary form.cart::after {
  display: none;
}

.rkbd-product-summary .quantity {
  display: none;
}

.rkbd-product-summary .single_add_to_cart_button {
  background: var(--rkbd-green);
  border: 0;
  border-radius: 0;
  color: #071007;
  font-size: 1rem;
  font-weight: 400;
  min-height: 41px;
  width: 100%;
}

.rkbd-product-summary .single_add_to_cart_button:hover {
  background: var(--rkbd-green-dark);
}

.woocommerce .rkbd-product-summary .single_add_to_cart_button.button,
.woocommerce-page .rkbd-product-summary .single_add_to_cart_button.button {
  background: var(--rkbd-green);
  color: #071007;
}

.woocommerce .rkbd-product-summary .single_add_to_cart_button.button:hover,
.woocommerce-page .rkbd-product-summary .single_add_to_cart_button.button:hover {
  background: var(--rkbd-green-dark);
  color: #071007;
}

.rkbd-product-summary .woocommerce-product-details__short-description {
  border-top: 1px solid rgba(245, 245, 240, 0.5);
  color: #f1efe9;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding-top: 24px;
}

.rkbd-product-summary .woocommerce-product-details__short-description p {
  margin: 0 0 18px;
}

.rkbd-product-summary .woocommerce-product-details__short-description p:first-child {
  text-transform: uppercase;
}

.rkbd-product-summary .product_meta {
  display: none;
}

.rkbd-product-page .woocommerce-notices-wrapper {
  margin: 0 auto 24px;
  max-width: 1010px;
}

.rkbd-product-page .woocommerce-error,
.rkbd-product-page .woocommerce-info,
.rkbd-product-page .woocommerce-message {
  background: #101014;
  border-top-color: var(--rkbd-green);
  color: var(--rkbd-white);
}

@media (max-width: 900px) {
  body.rkbd-mobile-nav-open {
    overflow: hidden;
  }
  .rkbd-home-header {
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-items: stretch;
    padding-block: 14px;
    padding-inline: 18px;
  }
  .rkbd-header-brand {
    font-size: clamp(1rem, 4.7vw, 1.5rem);
    gap: 10px;
    min-width: 0;
  }
  .rkbd-header-brand span {
    white-space: nowrap;
  }
  .rkbd-header-brand img {
    width: 32px;
  }
  .rkbd-mobile-nav-toggle {
    align-self: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    display: inline-flex;
    flex-direction: column;
    grid-column: 2;
    justify-self: end;
    min-height: 42px;
    padding: 6px 9px;
    position: relative;
    z-index: 120;
  }
  .rkbd-mobile-nav-toggle:hover,
.rkbd-mobile-nav-close:hover,
.rkbd-submenu-toggle:hover {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--rkbd-white);
  }
  .rkbd-header-nav {
    flex-wrap: nowrap;
  }
  .rkbd-header-nav.rkbd-mobile-panel {
    align-items: stretch;
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: -22px 0 44px rgba(0, 0, 0, 0.52);
    display: block;
    height: 100dvh;
    max-width: min(86vw, 390px);
    overflow-y: auto;
    padding: 78px 22px 28px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 220ms ease;
    width: 100%;
    z-index: 130;
  }
  .rkbd-header-nav.rkbd-mobile-panel.is-open {
    transform: translateX(0);
  }
  .rkbd-mobile-nav-backdrop {
    background: rgba(0, 0, 0, 0.58);
    border: 0;
    display: block;
    inset: 0;
    min-height: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease;
    z-index: 125;
  }
  .rkbd-mobile-nav-backdrop:hover {
    background: rgba(0, 0, 0, 0.58);
    border-color: transparent;
  }
  .rkbd-mobile-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .rkbd-mobile-nav-close {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    min-height: 42px;
    padding: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
  }
  .rkbd-mobile-nav-close span {
    background: var(--rkbd-white);
    display: block;
    height: 2px;
    position: absolute;
    width: 20px;
  }
  .rkbd-mobile-nav-close span:first-child {
    transform: rotate(45deg);
  }
  .rkbd-mobile-nav-close span:last-child {
    transform: rotate(-45deg);
  }
  .rkbd-header-menu {
    align-items: stretch;
    display: grid;
    gap: 0;
    justify-content: stretch;
  }
  .rkbd-header-menu .sub-menu,
.rkbd-header-menu .sub-menu .sub-menu {
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    display: none;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 4px 0 6px 14px;
    pointer-events: auto;
    position: static;
    transform: none;
    transition: none;
  }
  .rkbd-header-menu li.is-submenu-open > .sub-menu {
    display: grid;
    transform: none;
  }
  .rkbd-header-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .rkbd-header-menu li > a {
    align-items: center;
    display: flex;
    min-height: 48px;
    padding: 12px 0;
  }
  .rkbd-header-menu li > .sub-menu {
    grid-column: 1/-1;
  }
  .rkbd-submenu-toggle {
    align-items: center;
    align-self: start;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    color: var(--rkbd-white);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    min-height: 48px;
    padding: 0;
    width: 48px;
  }
  .rkbd-submenu-toggle::before {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    display: block;
    height: 8px;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
    width: 8px;
  }
  .rkbd-header-menu li.is-submenu-open > .rkbd-submenu-toggle::before {
    transform: translateY(2px) rotate(225deg);
  }
  .rkbd-header-menu .sub-menu a {
    min-height: 42px;
    padding: 10px 0;
    white-space: normal;
  }
  .rkbd-header-cart {
    align-self: center;
    grid-column: 3;
    justify-self: end;
  }
  .rkbd-hero {
    min-height: auto;
    padding-bottom: 72px;
  }
  .rkbd-hero-intro {
    align-items: center;
    gap: 16px;
    grid-template-columns: 88px minmax(0, 1fr);
    justify-content: center;
    margin: 15px auto 32px;
    max-width: 620px;
  }
  .rkbd-mark {
    width: 88px;
  }
  .rkbd-hero-subheading {
    font-size: clamp(1.25rem, 5.2vw, 1.375rem);
    text-align: center;
  }
  .rkbd-train-button {
    margin-inline: auto;
  }
  .rkbd-train-button-row {
    margin: -10px 0 30px;
  }
  .rkbd-pill-nav,
.rkbd-why-grid,
.rkbd-topics-row,
.rkbd-testimonial-wrap,
.rkbd-footer-main {
    grid-template-columns: 1fr;
  }
  .rkbd-pill-nav {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 48px;
  }
  .rkbd-why-grid {
    display: grid;
  }
  .rkbd-phone-frame {
    justify-self: center;
    max-width: 276px;
  }
  .rkbd-training-top {
    min-height: auto;
  }
  .rkbd-training-top-image,
.rkbd-training-card,
.rkbd-training-bottom-image,
.rkbd-testimonial-image {
    width: 100%;
  }
  .rkbd-training-card {
    margin-top: -40px;
    min-height: auto;
    padding: 36px 26px;
    position: relative;
    top: auto;
  }
  .rkbd-topics-row {
    display: grid;
    margin-top: 54px;
  }
  .rkbd-testimonial-wrap {
    display: grid;
  }
  .rkbd-arrow {
    display: none;
  }
  .rkbd-testimonial {
    padding: 34px 26px;
  }
  .rkbd-testimonial-track {
    width: 100%;
  }
  .rkbd-testimonial-dots {
    margin-top: 18px;
  }
  .rkbd-location {
    text-align: left;
  }
  .rkbd-footer-nav-column {
    grid-column: auto;
    justify-self: start;
  }
  .rkbd-shop-page {
    padding-top: 24px;
  }
  .rkbd-shop-layout {
    grid-template-columns: 1fr;
  }
  .rkbd-shop-sidebar {
    display: grid;
    gap: 14px;
  }
  .rkbd-shop-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .rkbd-shop-breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .rkbd-shop-panel {
    padding-bottom: 16px;
  }
  .rkbd-shop-panel h2 {
    font-size: clamp(1.2rem, 7vw, 1.5rem);
    margin-bottom: 12px;
  }
  .rkbd-shop-category-list {
    gap: 6px;
  }
  .rkbd-shop-panel,
.rkbd-shop-panel + .rkbd-shop-panel {
    margin: 0;
  }
  .rkbd-shop-filter {
    padding-bottom: 0;
  }
  .rkbd-shop-filter-toggle {
    font-size: clamp(1.2rem, 7vw, 1.5rem);
    margin: 0;
    min-height: 42px;
  }
  .rkbd-shop-filter-caret {
    display: block;
  }
  .rkbd-shop-filter-toggle[aria-expanded=true] .rkbd-shop-filter-caret {
    transform: translateY(3px) rotate(225deg);
  }
  .rkbd-shop-filter-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows 220ms ease, opacity 160ms ease;
  }
  .rkbd-shop-filter-content.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
  }
  .rkbd-shop-filter-content > form {
    min-height: 0;
    overflow: hidden;
    padding-top: 12px;
  }
  .rkbd-shop-hero {
    height: clamp(180px, 44vw, 260px);
    width: 100%;
  }
  .rkbd-shop-toolbar {
    justify-content: flex-start;
    margin-top: 36px;
  }
  .rkbd-shop-content ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rkbd-product-topline,
.rkbd-product-grid {
    grid-template-columns: 1fr;
  }
  .rkbd-product-topline {
    margin-bottom: 34px;
  }
  .rkbd-product-prev-next {
    justify-content: start;
  }
  .rkbd-product-summary {
    padding-top: 0;
  }
  .rkbd-product-summary .product_title {
    max-width: none;
  }
  .rkbd-training-page-main {
    padding-top: 48px;
  }
  .rkbd-training-page-card {
    padding: 28px;
  }
  .rkbd-training-page-intro,
.rkbd-training-page-body,
.rkbd-training-courses-grid,
.rkbd-training-subpage-grid,
.rkbd-training-footer-nav {
    grid-template-columns: 1fr;
  }
  .rkbd-training-page-intro {
    gap: 24px;
    justify-items: start;
  }
  .rkbd-training-page-heading h1 {
    margin-bottom: 34px;
    white-space: normal;
  }
  .rkbd-training-page-featured {
    margin-right: 0;
    max-width: none;
  }
  .rkbd-training-page-featured-image {
    width: 100%;
  }
  .rkbd-training-course:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }
  .rkbd-training-footer-nav {
    justify-items: center;
    padding-block: 20px;
  }
  .rkbd-about-mission {
    min-height: auto;
    padding-top: 72px;
  }
  .rkbd-about-bio,
.rkbd-about-vision {
    grid-template-columns: 1fr;
  }
  .rkbd-about-photo {
    padding: 24px;
  }
  .rkbd-about-copy {
    border-left: 0;
    border-top: 1px solid #b8b8b2;
    padding: 44px 28px;
  }
  .rkbd-about-copy h2 {
    margin-bottom: 42px;
  }
  .rkbd-about-vision-copy {
    padding: 44px 28px;
  }
  .rkbd-about-vision h2 {
    margin-bottom: 36px;
  }
}
@media (max-width: 600px) {
  .rkbd-header-brand {
    font-size: clamp(1rem, 4.7vw, 1.5rem);
  }
  .rkbd-header-nav a {
    font-size: 0.9rem;
  }
  .rkbd-logo {
    font-size: 1.5rem;
    padding-inline: 0;
    text-align: center;
    word-spacing: 0.08em;
  }
  .rkbd-mark {
    width: 78px;
  }
  .rkbd-hero-intro {
    align-items: center;
    grid-template-columns: 78px minmax(0, 1fr);
  }
  .rkbd-hero-subheading {
    font-size: clamp(1.25rem, 5.2vw, 1.375rem);
  }
  .rkbd-hero-media {
    max-width: 100%;
  }
  .rkbd-why-copy > .rkbd-button {
    margin-left: 0;
  }
  .rkbd-note {
    margin-top: 48px;
  }
  .rkbd-training-card h2,
.rkbd-testimonials-title {
    overflow-wrap: anywhere;
  }
  .rkbd-footer-main {
    gap: 28px;
    padding-inline: 22px;
  }
  .rkbd-shop-content ul.products {
    grid-template-columns: 1fr;
  }
  .rkbd-shop-content ul.products li.product img {
    max-height: 420px;
  }
  .rkbd-product-page {
    padding-top: 44px;
  }
  .rkbd-product-breadcrumb,
.rkbd-product-prev-next {
    font-size: 0.92rem;
  }
  .rkbd-training-page-hero,
.rkbd-training-courses {
    padding-inline: 14px;
  }
  .rkbd-training-page-card {
    padding: 22px 18px 34px;
  }
  .rkbd-training-page-mark {
    margin-left: 0;
    width: 130px;
  }
  .rkbd-training-courses {
    padding-block: 48px;
  }
  .rkbd-training-courses-grid {
    gap: 42px;
  }
  .rkbd-training-subpage-hero {
    padding-top: 60px;
  }
  .rkbd-training-subpage-gallery,
.rkbd-training-subpage-content {
    padding-inline: 18px;
  }
  .rkbd-training-subpage-content ul,
.rkbd-training-subpage-content ol {
    margin-bottom: 42px;
  }
  .rkbd-about-mission {
    padding-inline: 18px;
  }
  .rkbd-about-mission blockquote,
.rkbd-about-copy p,
.rkbd-about-vision p {
    font-size: 0.95rem;
  }
  .rkbd-about-photo {
    padding-inline: 18px;
  }
}
