/** Shopify CDN: Minification failed

Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 262:18 Unexpected "{"
Line 262:27 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:rbar-success-stories-index (INDEX:68) */
/* ─────────────────────────────────────────
   R Bar – Success Stories Index  v2
   ───────────────────────────────────────── */
#shopify-section-{{ section.id }}.rbar-index {
  --rbar-navy:    #084055;
  --rbar-teal:    #0e9eb5;
  --rbar-ink:     #1a1a1a;
  --rbar-muted:   #5c6a72;
  --rbar-border:  #d8e4e8;
  --rbar-white:   #ffffff;

  font-family: inherit;
  color: var(--rbar-ink);
  background: var(--rbar-white);
  padding: 0 0 6rem;
}

/* ── PAGE HEADER — full-width dark band ── */
.rbar-index__header {
  background: var(--rbar-navy);
  text-align: center;
  padding: 5rem 1.5rem 4.5rem;
  margin-bottom: 3rem;
}
.rbar-index__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rbar-teal);
  margin: 0 0 0.85rem;
}
.rbar-index__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rbar-white);
  letter-spacing: -0.01em;
  line-height: 1.0;
  margin: 0 0 1rem;
}
.rbar-index__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CARD GRID ── */
.rbar-index__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (min-width: 700px) {
  .rbar-index__grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (min-width: 1060px) {
  .rbar-index__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── STORY CARD — image background with overlay ── */
.rbar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: var(--rbar-navy);
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rbar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(8, 64, 85, 0.25);
}

/* Dark gradient overlay */
.rbar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 64, 85, 0.3) 0%,
    rgba(8, 64, 85, 0.75) 50%,
    rgba(4, 28, 40, 0.97) 100%
  );
  transition: background 0.25s;
}
.rbar-card:hover .rbar-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(8, 64, 85, 0.35) 0%,
    rgba(8, 64, 85, 0.8) 50%,
    rgba(4, 28, 40, 0.98) 100%
  );
}

.rbar-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.75rem;
  flex: 1;
}

.rbar-card__top { flex: 1; }

/* Logo on card */
.rbar-card__logo {
  display: block;
  max-width: 130px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.rbar-card__logo--invert {
  filter: brightness(0) invert(1);
}

.rbar-card__meta { margin-bottom: 0.5rem; }
.rbar-card__industry {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rbar-teal);
}

.rbar-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rbar-white);
  margin: 0 0 0.65rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.rbar-card__summary {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0 0 1.5rem;
}

/* Stats */
.rbar-card__stats {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}
.rbar-card__stat { display: flex; flex-direction: column; gap: 0.15rem; }
.rbar-card__stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rbar-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rbar-card__stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Read the Story link */
.rbar-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rbar-teal);
  transition: gap 0.2s;
}
.rbar-card:hover .rbar-card__cta { gap: 0.7rem; }

.rbar-card__bottom { margin-top: auto; }

/* ── BOTTOM CTA ── */
.rbar-index__cta-wrap {
  text-align: center;
  padding: 4.5rem 1.5rem 0;
  max-width: 480px;
  margin: 0 auto;
}
.rbar-index__cta-label {
  font-size: 1rem;
  color: var(--rbar-muted);
  margin-bottom: 1.25rem;
}
.rbar-index__cta-btn {
  display: inline-block;
  background: var(--rbar-teal);
  color: var(--rbar-white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.rbar-index__cta-btn:hover {
  background: var(--rbar-navy);
  transform: translateY(-1px);
}

/* Mobile */
@media screen and (max-width: 699px) {
  .rbar-card { min-height: 340px; }
  .rbar-card__stats { flex-direction: column; gap: 0.6rem; }
  .rbar-index__header { padding: 3.5rem 1.5rem 3rem; }
}
/* END_SECTION:rbar-success-stories-index */

/* START_SECTION:rbar-success-story-detail (INDEX:69) */
/* ─────────────────────────────────────────
   R Bar – Success Story Detail  v2
   ───────────────────────────────────────── */
#shopify-section-{{ section.id }}.rbar-story {
  --rbar-navy:      #084055;
  --rbar-teal:      #0e9eb5;
  --rbar-teal-lt:   #e8f7fa;
  --rbar-ink:       #1a1a1a;
  --rbar-muted:     #5c6a72;
  --rbar-border:    #d8e4e8;
  --rbar-white:     #ffffff;
  --rbar-max-w:     760px;

  font-family: inherit;
  color: var(--rbar-ink);
  background: var(--rbar-white);
  padding: 0 0 6rem;
}

/* ── HERO BAND ── */
.rbar-story__hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: var(--rbar-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.rbar-story__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 64, 85, 0.5) 0%,
    rgba(8, 64, 85, 0.80) 55%,
    rgba(4, 32, 43, 0.97) 100%
  );
}
.rbar-story__hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--rbar-max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3.5rem;
}

/* Back link */
.rbar-story__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.rbar-story__back:hover { color: var(--rbar-teal); }

/* Client logo */
.rbar-story__logo {
  display: block;
  max-width: 180px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.rbar-story__logo--invert {
  filter: brightness(0) invert(1);
}

/* Hero meta */
.rbar-story__hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.rbar-story__industry {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rbar-teal);
}
.rbar-story__sep { color: rgba(255,255,255,0.3); }
.rbar-story__platforms {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Hero title */
.rbar-story__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--rbar-white);
  text-transform: uppercase;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}

/* Stats pill row */
.rbar-story__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 580px;
}
.rbar-story__stat {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.4rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.rbar-story__stat:last-child { border-right: none; }
.rbar-story__stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rbar-teal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rbar-story__stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
  line-height: 1.3;
}

/* ── BODY ── */
.rbar-story__body {
  max-width: var(--rbar-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rbar-story__section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--rbar-border);
}
.rbar-story__section:last-of-type { border-bottom: none; }

.rbar-story__section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rbar-teal);
  margin: 0 0 0.6rem;
}
.rbar-story__section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rbar-navy);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.rbar-story__section-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2e3a40;
}
.rbar-story__section-content p { margin: 0 0 1rem; }
.rbar-story__section-content p:last-child { margin-bottom: 0; }
.rbar-story__section-content ul { padding-left: 1.25rem; margin: 0 0 1rem; }
.rbar-story__section-content li { margin-bottom: 0.4rem; }

/* Results — dark navy panel */
.rbar-story__section--results {
  background: var(--rbar-navy);
  border-radius: 6px;
  padding: 2.5rem 2.25rem;
  border-bottom: none;
  margin: 2rem 0;
}
.rbar-story__section--results .rbar-story__section-label { color: var(--rbar-teal); }
.rbar-story__section--results .rbar-story__section-content {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.rbar-story__result-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}
.rbar-story__result-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1rem;
  border-left: 3px solid var(--rbar-teal);
}
.rbar-story__result-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rbar-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rbar-story__result-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.35;
}

/* Takeaway — teal-tinted panel with left accent */
.rbar-story__section--takeaway {
  background: var(--rbar-teal-lt);
  border-radius: 6px;
  border-left: 4px solid var(--rbar-teal);
  padding: 2.5rem 2.25rem;
  border-bottom: none;
  margin: 2rem 0;
}
.rbar-story__section--takeaway .rbar-story__section-label {
  color: var(--rbar-navy);
  opacity: 0.55;
}
.rbar-story__takeaway {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--rbar-navy);
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
}
.rbar-story__takeaway-mark {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  line-height: 0.65;
  color: var(--rbar-teal);
  opacity: 0.45;
  margin-bottom: 0.85rem;
}

/* CTA */
.rbar-story__cta-wrap {
  text-align: center;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--rbar-border);
  margin-top: 1rem;
}
.rbar-story__cta-label {
  font-size: 1rem;
  color: var(--rbar-muted);
  margin-bottom: 1.25rem;
}
.rbar-story__cta-btn {
  display: inline-block;
  background: var(--rbar-teal);
  color: var(--rbar-white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.rbar-story__cta-btn:hover {
  background: var(--rbar-navy);
  transform: translateY(-1px);
}

/* Mobile */
@media screen and (max-width: 749px) {
  .rbar-story__hero { min-height: 400px; }
  .rbar-story__stats { flex-direction: column; }
  .rbar-story__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.85rem 1.1rem;
  }
  .rbar-story__stat:last-child { border-bottom: none; }
  .rbar-story__section--results,
  .rbar-story__section--takeaway { padding: 2rem 1.25rem; }
  .rbar-story__result-stats { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
/* END_SECTION:rbar-success-story-detail */