/* ===========================
   Basecamp Package Page
   =========================== */

/* ---- Shared Layout ---- */
.rr-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.rr-eyebrow,
.rr-section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted, #5A5A5A);
  margin-bottom: 1rem;
  text-align: center;
}

.rr-section-heading {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: var(--text-primary, #D4D4D4);
  letter-spacing: 0em;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-align: center;
}

.rr-section-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary, #8A8A8A);
  max-width: 540px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

/* ---- Hero ---- */
.rr-hero {
  min-height: 100vh;
  padding: 240px 5% 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rr-hero .hero-bg {
  position: absolute;
  top: -15%; bottom: -15%; left: 0; right: 0;
  background-image: url('../images/garage-workout-man.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

.rr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 1;
}

.rr-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.rr-hero h1 {
  font-size: clamp(4.6rem, 5.5vw, 6.2rem);
  font-weight: normal;
  color: var(--text-primary, #D4D4D4);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1.5rem;
}

.rr-hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary, #8A8A8A);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ---- Pillars ---- */
.rr-pillars {
  padding: 96px 5%;
  border-top: 1px solid rgba(212, 212, 212, 0.06);
}

.rr-pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(212, 212, 212, 0.08);
}

.rr-pillar {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid rgba(212, 212, 212, 0.08);
  transition: background 0.2s ease;
}

.rr-pillar:last-child {
  border-right: none;
}

.rr-pillar:hover {
  background: rgba(212, 212, 212, 0.02);
}

.rr-pillar__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 1.25rem;
  color: var(--text-muted, #5A5A5A);
}

.rr-pillar__icon svg {
  width: 100%;
  height: 100%;
}

.rr-pillar h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary, #D4D4D4);
  margin: 0 0 0.6rem;
}

.rr-pillar p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-secondary, #8A8A8A);
  margin: 0;
}

/* ---- Packages ---- */
.rr-packages {
  padding: 96px 5%;
  border-top: 1px solid rgba(212, 212, 212, 0.06);
}

.rr-packages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(212, 212, 212, 0.08);
  border-radius: 8px;
}

.rr-packages__image {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.rr-packages__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(100%) brightness(0.85);
}

.rr-package {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(212, 212, 212, 0.08);
  position: relative;
  transition: background 0.2s ease;
}

.rr-package:last-child {
  border-right: none;
}

.rr-package:hover {
  background: rgba(212, 212, 212, 0.02);
}

/* Featured package */
.rr-package--featured {
  background: rgba(212, 212, 212, 0.02);
}

.rr-package--featured:hover {
  background: rgba(212, 212, 212, 0.04);
}

.rr-package__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted, #5A5A5A);
  border: 1px solid rgba(212, 212, 212, 0.2);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.rr-package__header {
  margin-bottom: 1.75rem;
}

.rr-package__name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted, #5A5A5A);
  margin: 0 0 0.6rem;
}

.rr-package__tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #D4D4D4);
  margin: 0 0 1.25rem;
  line-height: 1.4;
}

.rr-package__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.rr-package__from {
  font-size: 0.78rem;
  color: var(--text-muted, #5A5A5A);
  font-weight: 500;
}

.rr-package__amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary, #D4D4D4);
  letter-spacing: -0.03em;
  line-height: 1;
}

.rr-package__original {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted, #5A5A5A);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  letter-spacing: -0.02em;
}

.rr-package__save {
  align-self: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0E0E0E;
  background: var(--primary, #D65A1F);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  line-height: 1;
}

.rr-package__duration {
  font-size: 0.78rem;
  color: var(--text-muted, #5A5A5A);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin: 0;
}
.rr-package__compare {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary, #8A8A8A);
  margin: 0.5rem 0 0;
  letter-spacing: 0.01em;
  border-left: 2px solid rgba(212, 212, 212, 0.25);
  padding-left: 0.65rem;
}

/* Feature list */
.rr-package__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}

.rr-package__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-secondary, #8A8A8A);
  line-height: 1.5;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(212, 212, 212, 0.05);
}

.rr-package__features li:last-child {
  border-bottom: none;
}

.rr-package__features svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--text-muted, #5A5A5A);
  margin-top: 3px;
}

.rr-package--featured .rr-package__features svg {
  color: var(--text-muted, #5A5A5A);
}

.rr-package__positioning {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted, #5A5A5A);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

/* Package CTA */
a.rr-package__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212, 212, 212, 0.12);
  color: var(--text-primary, #D4D4D4);
  background: transparent;
  transition: all 0.2s ease;
  text-align: center;
}

.rr-package__cta:hover {
  background: rgba(212, 212, 212, 0.04);
  border-color: rgba(212, 212, 212, 0.22);
}

.rr-package__cta--primary,
a.rr-package__cta--primary {
  background: rgba(212, 212, 212, 0.08);
  border-color: rgba(212, 212, 212, 0.25);
  color: var(--text-primary, #D4D4D4);
}

.rr-package__cta--primary:hover,
a.rr-package__cta--primary:hover {
  background: rgba(212, 212, 212, 0.14);
  border-color: rgba(212, 212, 212, 0.35);
}

/* Note */
.rr-packages__note {
  margin-top: 2.5rem;
  text-align: center;
}

.rr-packages__note p {
  font-size: 0.84rem;
  color: var(--text-muted, #5A5A5A);
  line-height: 1.6;
  margin: 0;
}

.rr-packages__note a {
  color: var(--text-secondary, #8A8A8A);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rr-packages__note a:hover {
  color: var(--text-primary, #D4D4D4);
}

/* ---- Guarantee ---- */
.rr-guarantee {
  padding: 96px 5%;
  border-top: 1px solid rgba(212, 212, 212, 0.06);
}

.rr-guarantee__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(212, 212, 212, 0.1);
  border-radius: 14px;
  background: rgba(212, 212, 212, 0.02);
}

.rr-guarantee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 212, 212, 0.12);
  color: var(--text-primary, #D4D4D4);
}

.rr-guarantee__icon svg {
  width: 26px;
  height: 26px;
}

.rr-guarantee__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary, #8A8A8A);
  max-width: 560px;
  margin: 1.5rem auto 0;
}

/* ---- Bottom CTA ---- */
.rr-bottom-cta {
  padding: 120px 5%;
  text-align: center;
  border-top: 1px solid rgba(212, 212, 212, 0.06);
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/clients/valerie_4.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}

.rr-repeat: no-repeat; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-primary, #D4D4D4);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.rr-bottom-cta p {
  font-size: 0.95rem;
  color: var(--text-secondary, #8A8A8A);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 2rem;
}

.rr-bottom-cta button {
  margin-top: 2rem;
}

.rr-bottom-cta__note {
  font-size: 0.78rem !important;
  color: var(--text-muted, #5A5A5A) !important;
  margin: 1rem auto 0 !important;
}

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .rr-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rr-pillar:nth-child(3n) {
    border-right: none;
  }
  .rr-pillar:nth-child(n+4) {
    border-top: 1px solid rgba(212, 212, 212, 0.08);
  }
  .rr-pillar:nth-child(4),
  .rr-pillar:nth-child(5) {
    border-right: 1px solid rgba(212, 212, 212, 0.08);
  }
  .rr-pillar:last-child {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .rr-hero {
    padding: 180px 5% 120px;
  }
  .rr-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rr-pillar:nth-child(2n) {
    border-right: none;
  }
  .rr-pillar:nth-child(3n) {
    border-right: 1px solid rgba(212, 212, 212, 0.08);
  }
  .rr-pillar:nth-child(n+3) {
    border-top: 1px solid rgba(212, 212, 212, 0.08);
  }
  .rr-pillar:nth-child(5) {
    border-right: none;
  }
  .rr-packages__grid {
    grid-template-columns: 1fr;
  }
  .rr-package {
    border-right: none;
    border-bottom: 1px solid rgba(212, 212, 212, 0.08);
  }
  .rr-package:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .rr-pillars__grid {
    grid-template-columns: 1fr;
  }
  .rr-pillar {
    border-right: none;
    border-top: 1px solid rgba(212, 212, 212, 0.08);
  }
  .rr-pillar:first-child {
    border-top: none;
  }
}

/* ============================================================
   Shared Offer Styles (bo- prefix)
   ============================================================ */
.bo-inner {
	max-width: 1040px;
	margin: 0 auto;
	padding: 5rem 1.5rem;
}
.bo-label {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 1.1rem;
}
.bo-section-desc {
	color: var(--text-secondary);
	max-width: 620px;
	line-height: 1.7;
	margin: 0.5rem 0 0.5rem;
}

/* ============================================================
   Curriculum
   ============================================================ */

.bo-curriculum { 
  background: var(--bg-secondary, #0f0f0f); 
  padding-top: 2.5rem; 
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/girl-deadlift-vinette.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.bo-curriculum h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); }
.bo-curriculum__hdr { padding-bottom: 1rem; }
.bo-weeks {
	overflow: hidden;
	padding: 1.5rem 0 3.5rem 1.5rem;
}
.bo-weeks__pagination {
	display: flex;
	justify-content: center;
	padding-top: 1.5rem;
  --swiper-pagination-color: white; /* Active bullet color */
  --swiper-pagination-bullet-inactive-color: #000000; /* Inactive bullet color */
  --swiper-pagination-bullet-inactive-opacity: 0.5; /* Inactive bullet opacity */
  --swiper-pagination-bullet-size: 6px; /* Bullet width/height */
  --swiper-pagination-bullet-horizontal-gap: 5px; /* Space between bullets */  
}
.bo-weeks__swiper .swiper-wrapper {
	align-items: stretch;
}
.bo-weeks__swiper .swiper-slide {
	height: auto;
}
.bo-week {
	background: var(--bg-tile, #1a1a1a);
	border: 1px solid rgba(212, 212, 212, 0.06);
	border-radius: 16px;
	padding: 1.8rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.bo-week__tag {
	align-self: flex-start;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.0em;
	text-transform: uppercase;
	color: var(--primary);
	border: 1px solid rgba(var(--primary-rgb), 0.4);
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	margin-bottom: 1.1rem;
}

.bo-week__title { 
  display: block; 
  font-size: .85rem; 
  margin-bottom: 0.6rem; 
  font-weight: 700;
  text-transform: uppercase;
}

.bo-week p { 
  color: var(--text-secondary); 
  line-height: 1.6; 
  font-size: 0.95rem; 
  flex-grow: 1; 
}

.bo-week__deliver {
	display: block;
	margin-top: 1.1rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(212, 212, 212, 0.06);
	font-size: 0.86rem;
	color: var(--text-secondary);
	font-weight: 600;
}

.bo-week__deliver svg {
	width: 15px;
	height: 15px;
	margin-right: 4px;
	vertical-align: middle;
  fill: var(--text-secondary);
  display: inline-block;
}

/* ============================================================
   Reviews Marquee
   ============================================================ */
.rr-quotes { padding: 5rem 0; overflow: hidden; }
.rr-quotes .rr-section-inner { padding-bottom: 2rem; }
.rr-quotes__head { text-align: center; }
.rr-quotes .rr-section-heading { max-width: 640px; margin-left: auto; margin-right: auto; }

.sa-marquee-mask {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sa-marquee .swiper-wrapper { transition-timing-function: linear; }
.sa-marquee .swiper-slide { flex: 0 0 auto; width: 360px; height: auto; }

.sa-quote {
  display: flex;
  flex-direction: column;
  background: var(--bg-tile, #1a1a1a);
  border: 1px solid rgba(212, 212, 212, 0.06);
  border-radius: 18px;
  padding: 1.7rem 1.6rem;
  height: 100%;
}
.sa-quote__stars { display: flex; gap: 3px; margin-bottom: 0.75rem; color: var(--primary); }
.sa-quote__stars svg { width: 16px; height: 16px; }
.sa-quote__hdr { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text-primary); }
.sa-quote p { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 1.1rem; flex-grow: 1; }
.sa-quote__by { margin-top: auto; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

@media (prefers-reduced-motion: reduce) {
  .sa-marquee .swiper-wrapper { transition-duration: 0ms !important; }
}
@media (max-width: 480px) {
  .sa-marquee .swiper-slide { width: 300px; }
}
