 
/* ==========================================================================
   Consolidated site CSS — hero carousel, geometry card, layout, and cleanup
   Paste this block in place of your duplicated carousel/keyframe rules.
   ========================================================================== */

/* -------------------------
   Theme variables and base
   ------------------------- */
:root{
  --site-bg: #301c1c;
  --muted-bg: #352828;
  --text: #e5e5e5;
  --wrap-max: 900px;
  --hero-slide-w: 280px;
  --phone-slide-w: 320px;
  --gutter-sm: 1rem;
  --gutter-md: 1.5rem;
  --gutter-lg: 0;
  --card-radius: 12px;
  --shadow-strong: 0 6px 18px rgba(0,0,0,0.18);

  /* carousel tuning */
  --carousel-duration: 9s;
  --carousel-ease-main: cubic-bezier(.22,.9,.35,1);
  --carousel-ease-overshoot: cubic-bezier(.2,1.2,.3,1);
  --carousel-gap: 1rem;
  --carousel-slide-w: var(--hero-slide-w);
}

/* Page background and typography */
body {
  background-color: var(--site-bg);
  transition: background-color 0.6s ease;
  color: var(--text);
   
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Small utilities */
.logo-svg { height:150px; display:block; margin:0 auto; filter:drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.sascadu-info-boundary, .footer-disclosure {
  background: var(--muted-bg);
  color: var(--text) !important;
  font-size: 0.75rem;
  opacity: 0.85;
  text-align: center;
  padding: 1.5rem 1rem;
  line-height: 1.4;
  border-radius: 4px;
}

/* Box sizing and wrap gutters (prevents edge collisions) */
*, *::before, *::after { box-sizing: border-box; }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--gutter-sm);
}
@media (min-width: 640px) { .wrap { padding: 0 var(--gutter-md); } }
@media (min-width: 1024px) { .wrap { padding: 0 var(--gutter-lg); } }

/* Typography and sections */
p { font-size: 1.2rem; line-height: 1.65; color: var(--text); margin: 0 0 1rem 0; }
h2 { color: var(--text); text-align: center; margin: 0.5rem 0 1rem 0; }
.section { padding: 2rem 0; }
.section.alt { background: var(--muted-bg); }

/* Two-column grid with safe shrinking */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col > * { min-width: 0; } /* prevents overflow from long content */
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 1.25rem; } }




















/* Constrained readable copy */
.narrow-copy, .ribcast-summary {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.65;
}

/* Placeholder basics */
.placeholder {
  width: 100%;
  height: 220px;
  background: #d0ccc7;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: block;
  object-fit: cover;
}

/* Geometry placeholder */
.geom-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0;
  box-sizing: border-box;
}

.geom-placeholder {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 220px;
  min-height: 220px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  background-color: #222;
}

.geom-placeholder.match-carousel {
  max-width: 420px;
  height: 220px;
  aspect-ratio: auto;
}

@media (max-width:420px) {
  .geom-placeholder { max-width: 100%; height: 220px; }
}

/* Video grid refinement */
.video-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0,1.2fr);
  gap: 2rem;
  align-items: start;
}
.video-grid > * {
  min-width: 0;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.video-index ul { list-style: none; padding: 0; margin: 0; }
.video-index li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--text);
}
.video-frame iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 6px;
  display: block;
  max-width: 100%;
}

/* CTA */
.ribcast-cta {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border-radius: 9999px;
  background: #5f9977;
  color: var(--text);
  font-size: 1.15rem;
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.3px;
 
  transition: background .2s, color .2s;
  box-sizing: border-box;
  max-width: 100%;
}
.ribcast-cta:hover { background: #5f9977; color: #fff; }

/* Accessibility focus */
a:focus, button:focus, .geom-placeholder:focus {
  outline: 3px solid rgba(49,206,203,0.9);
  outline-offset: 4px;
}

/* Media safety */
img, iframe, video { max-width: 100%; height: auto; display: block; }

/* -------------------------
   Hero carousel (isolated)
   ------------------------- */
#hero-carousel.carousel-strip {
  overflow: hidden;
  width: 100%;
  padding: 1.25rem 0;
  box-sizing: border-box;
  position: relative;
}

#hero-carousel .carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  animation: hero-rubber var(--carousel-duration) linear infinite;
  animation-play-state: running;
}

#hero-carousel:hover .carousel-track,
#hero-carousel:focus-within .carousel-track {
  animation-play-state: paused;
}

#hero-carousel .carousel-item {
  flex: 0 0 var(--carousel-slide-w);
  max-width: var(--carousel-slide-w);
  box-sizing: border-box;
}

.carousel-item .desc {
  max-width: 38ch;
  line-height: 1.3;
}

#hero-carousel .carousel-item .placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--card-radius);
  object-fit: cover;
  background: #222;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  #hero-carousel .carousel-track {
    animation: none !important;
    transition: none !important;
  }
}

/* Keyframes */
@keyframes hero-rubber {
  0%   { transform: translateX(0); }
  6%   { transform: translateX(-3%); animation-timing-function: var(--carousel-ease-main); }
  30%  { transform: translateX(-28%); animation-timing-function: var(--carousel-ease-main); }
  36%  { transform: translateX(-28%); }
  52%  { transform: translateX(-40%); animation-timing-function: var(--carousel-ease-overshoot); }
  60%  { transform: translateX(-37.5%); animation-timing-function: ease-out; }
  78%  { transform: translateX(-48%); animation-timing-function: var(--carousel-ease-main); }
  90%  { transform: translateX(-50%); animation-timing-function: ease-out; }
  100% { transform: translateX(-50%); }
}

/* Cleanup helpers */
.disable-old-carousel .carousel-track,
.disable-old-carousel .carousel-strip,
.disable-old-carousel .carousel-item {
  animation: none !important;
  transition: none !important;
}

.debug-overflow * { outline: 1px dashed rgba(255,0,0,0.06); }

/* Small-screen polish */
@media (max-width: 420px) {
  .ribcast-identity { padding-top: 1.5rem; }
  .section { padding: 1rem 0; }
  .wrap { padding: 0 0.75rem; }
  .video-frame iframe { height: 220px; }
  .geom-placeholder { max-width: 280px; }
}

/* Reduced motion safety */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Identity block */
.ribcast-identity {
  padding: 8.2rem 0 0;
  text-align: center;
  background-color: #241212;
}

@media (max-width: 1200px) {
  .ribcast-identity { text-align: left; }
}


.ribcast-identity h1 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
   /* font-size: clamp(2.4rem, 5vw, 4rem);*/
}


.ribcast-identity h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: #e5e0dd !important;
  margin-bottom: clamp(1.45rem, 4vw, 2rem);
  font-weight: bold;
  letter-spacing: clamp(0.5px, 0.6vw, 3px);
  line-height: 0.01;
}

@media (max-width: 1200px) {
  .ribcast-identity h1 { color: #5f9977 !important; }
}

@media (max-width: 800px) {
  .ribcast-identity h1 { color: #e5e0dd !important; }
}

.ribcast-identity .lead {
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: #5f9a78;
  font-weight: 200;
  opacity: 0.55;
  max-width: 60ch;
  margin: 0.01rem auto 0;
  line-height: 1.0;
}

.ms-break { display: none; }
@media (max-width: 1200px) { .ms-break { display: block; } }

/* Second carousel layout */
#ribcast-strip .carousel-strip {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
}

#ribcast-strip .carousel-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1rem !important;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  align-items: flex-start;
}

#ribcast-strip .carousel-item {
  flex: 0 0 var(--carousel-slide-w) !important;
  max-width: var(--carousel-slide-w) !important;
  box-sizing: border-box;
}

#ribcast-strip .carousel-item .placeholder {
  width: 100% !important;
  height: 480px !important;
  margin: 0;
  border-radius: 12px;
  background: #222;
  display: block;
  object-fit: cover;
}

body.disable-old-carousel #ribcast-strip .carousel-track {
  animation: none !important;
}

/* Root variables */
:root {
  --ui-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --hero-slide-w: 320px;
  
  --meshed-accent: #d98b4a;
  --card-radius: 12px;
  --geom-compact-h: 220px;
}

/* Page type reset */
html,body {
  font-family: var(--ui-sans);
  color: #eaeaea;
  margin: 0;
  padding: 0;
}

#ribcast-page h1,
#ribcast-page h2,
#ribcast-page h3,
#ribcast-page h4,
#ribcast-page h5 {
  font-family: "Playfair Display", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hover-to-pause (final authoritative version) */
#hero-carousel.carousel-strip:hover .carousel-track,
#hero-carousel.carousel-strip:focus-within .carousel-track,
#ribcast-strip .carousel-strip:hover .carousel-track,
#ribcast-strip .carousel-strip:focus-within .carousel-track {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

/* ribcast strip animation */
#ribcast-strip .carousel-strip {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
}

#ribcast-strip .carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  animation: hero-rubber var(--carousel-duration) linear infinite;
  animation-play-state: running;
  align-items: flex-start;
}

#ribcast-strip .carousel-item {
  flex: 0 0 var(--carousel-slide-w);
  max-width: var(--carousel-slide-w);
  box-sizing: border-box;
}

#ribcast-strip .carousel-item .placeholder {
  width: 100%;
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  border-radius: 12px;
  background: #222;
  object-fit: cover;
  display: block;
}
































/* hero slide sizing */
#hero-carousel .carousel-item {
  flex: 0 0 var(--hero-slide-w);
  max-width: var(--hero-slide-w);
  box-sizing: border-box;
}
#hero-carousel .carousel-item .placeholder {
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  object-fit: cover;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #ribcast-strip .carousel-track { animation: none !important; }
}

/* Microcopy and typographic helpers */
.carousel-item em,
.geom-column em,
.carousel-item .meta-em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.1;
  color: rgba(255,255,255,0.48);
  margin: 0 0 0.35rem 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.carousel-item em.quiet { color: rgba(255,255,255,0.36); font-size: 0.74rem; }

.kicker {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.15rem 0 0.5rem 0;
  color: #eaeaea;
  line-height: 1.15;
}

/* Keep H2 dominant */
.carousel-item h2,
.geom-summary-card h2 {
  font-weight: 200;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.06;
  margin: 0 0 .15rem 0;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Collapse microcopy on very small screens */
@media (max-width:420px) {
  .carousel-item em, .geom-column em { display: none; }
  .carousel-item h2 { font-size: 1.15rem; }
  .kicker { font-size: 0.9rem; }
}

/* Layout bands */
.section.hero-band { background: #241212; padding: 1rem 0; }
.section.geom-band { background: #2f2a29; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.03); }

.wrap.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.25rem;
  align-items: start;
}
@media (max-width:900px) { .wrap.two-col { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  margin: 0 0 .25rem 0;
}

/* Geometry placeholder */
.geom-placeholder {
  max-width: 420px;
  width: 100%;
  height: var(--geom-compact-h);
  min-height: var(--geom-compact-h);
  object-fit: cover;
  border-radius: var(--card-radius);
  display: block;
}
.geom-placeholder.phone-view {
  max-width: 320px !important;
  aspect-ratio: 9/16 !important;
  height: auto !important;
}

/* Ensure duplicate slides are non-focusable */
.carousel-item[aria-hidden="true"] { pointer-events: none; }
.carousel-item[aria-hidden="true"] a,
.carousel-item[aria-hidden="true"] button { tabindex: -1; }

.right-accent .btn-primary { background: var(--meshed-accent); color: #111; }

/* Ultralite primary */
.left-accent .btn-primary {
  font-weight: 700;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 20px rgba(47,196,166,0.14);
  transition: transform .12s ease, box-shadow .12s ease;
}
.left-accent .btn-primary:hover,
.left-accent .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47,196,166,0.20);
  outline: none;
}
.left-accent .btn-primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(47,196,166,0.14), 0 12px 28px rgba(47,196,166,0.20);
}
.left-accent .btn-secondary {
  border-color: rgba(47,196,166,0.14);
  color: #eafaf6;
  background: transparent;
}

/* Secondary buttons */
.left-accent .btn-secondary,
.right-accent .btn-secondary {
  background: transparent;

  color: #e6e6e6;
}

/* Watch button (consolidated) */
.left-accent .watch-btn,
.right-accent .watch-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.1rem;
  border-radius: 999px;
 
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background-color .12s ease;
  text-decoration: none;
}
.left-accent .watch-btn svg,
.right-accent .watch-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.left-accent .watch-btn:hover,
.left-accent .watch-btn:focus,
.right-accent .watch-btn:hover,
.right-accent .watch-btn:focus {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 10px 26px rgba(0,0,0,0.36);
  outline: none;
}
.left-accent .watch-btn:focus-visible,
.right-accent .watch-btn:focus-visible {
  box-shadow: 0 10px 26px rgba(0,0,0,0.36), 0 0 0 4px rgba(255,255,255,0.12);
}




.left-accent .watch-btn:hover,
.left-accent .watch-btn:focus {
  border-color: rgba(255,255,255,0.32);
  box-shadow: 0 12px 28px rgba(47,196,166,0.20);
}

/* Meshed watch */
.right-accent .watch-btn {

  color: #111;
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 20px rgba(217,139,74,0.14);
}
.right-accent .watch-btn:hover,
.right-accent .watch-btn:focus {
  border-color: rgba(255,255,255,0.32);
  box-shadow: 0 12px 28px rgba(217,139,74,0.20);
}

/* Duplicates inert */
.carousel-item[aria-hidden="true"] .watch-btn {
  pointer-events: none;
  opacity: .9;
}

/* Small screens */
@media (max-width:420px) {
  .left-accent .watch-btn,
  .right-accent .watch-btn {
    padding: .6rem .9rem;
    font-size: .95rem;
  }
}























/* Outline Order Forms — keep Watch buttons filled and same visual weight */
:root {
 
  --meshed-accent: #d98b4a;
  --watch-border-w: 2px;
  --cta-padding-vertical: .65rem;
  --cta-padding-horizontal: 1.05rem;
  --cta-min-h: 44px;
}

/* Base parity for hero and geom CTAs */
#hero-carousel .slide-ctas .btn-primary,
#hero-carousel .slide-ctas .watch-btn,
.geom-summary-card .summary-ctas .btn-primary,
.geom-summary-card .summary-ctas .watch-btn {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  padding: var(--cta-padding-vertical) var(--cta-padding-horizontal) !important;
  font-size: .95rem !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  min-height: var(--cta-min-h) !important;
  margin: 0 !important;
  width: auto !important;
}

/* Outline style for Order Forms (primary) */
.left-accent .btn-primary {
  background: transparent !important;
  color: var(--ultralite-accent) !important;

  box-shadow: none !important;
}
.right-accent .btn-primary {
  background: transparent !important;
  color: var(--meshed-accent) !important;
 
  box-shadow: none !important;
}



.right-accent .watch-btn {
  background: #5f9977 !important; /* removed stray ) */
  color: #111 !important;
   
}

/* Hover states: outline fills on hover for clear affordance */
.left-accent .btn-primary:hover,
.left-accent .btn-primary:focus {

  color: #07221a !important;
  box-shadow: none;
}
.right-accent .btn-primary:hover,
.right-accent .btn-primary:focus {

  color: #111 !important;
    box-shadow: none;
}

/* Ensure border widths match Watch buttons so visual size is identical */
.left-accent .watch-btn,
.right-accent .watch-btn,
.left-accent .btn-primary,


/* Small screens: scale down padding but keep parity */
@media (max-width:420px) {
  :root { --cta-padding-vertical: .5rem; --cta-padding-horizontal: .85rem; --cta-min-h: 40px; }
  #hero-carousel .slide-ctas .btn-primary,
  #hero-carousel .slide-ctas .watch-btn,
  .geom-summary-card .summary-ctas .btn-primary,
  .geom-summary-card .summary-ctas .watch-btn {
    padding: var(--cta-padding-vertical) var(--cta-padding-horizontal) !important;
    min-height: var(--cta-min-h) !important;
    font-size: .92rem !important;
  }
}


















/* Remove underlines for CTAs and nav links (scoped, accessible) */
.btn-primary,
.btn-secondary,
.watch-btn,
a.btn,
nav a,
header .steel-banner a,
.slide-ctas a,
.summary-ctas a {
  text-decoration: none !important;
  text-underline-offset: 3px; /* harmless if some UA still shows underline */
}

/* If anchors inside buttons exist, ensure they inherit the button color and no underline */
.btn-primary a,
.btn-secondary a,
.watch-btn a {
  color: inherit;
  text-decoration: none !important;
}

/* Keep strong visible focus for keyboard users (do not remove outlines) */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.watch-btn:focus-visible,
nav a:focus-visible,
.slide-ctas a:focus-visible,
.summary-ctas a:focus-visible {
  outline: none;
 
  box-shadow: none;
  border-radius: 999px;
}

/* Optional: if you still see underlines from user-agent styles, force it on anchors */
a { text-decoration-skip-ink: auto; }





























/* Make Watch buttons use white text to match Order Forms CTAs */
.left-accent .watch-btn,
.right-accent .watch-btn {
  color: #ffffff !important;
}

/* If Order Forms are dark text on green, keep them as-is:
   .left-accent .btn-primary { color: #07221a; } */




















/* VIDEO LEFT — scoped to the video-grid block */
.video-grid {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  /* Flip visual order so .video-frame appears left while keeping DOM order */
  flex-direction: row-reverse;
}

/* Give the video a slightly larger visual weight */
.video-grid .video-frame {
  flex: 0 0 56%;   /* video takes ~56% width on desktop */
  max-width: 56%;
}

/* Bullets column */
.video-grid .video-index {
  flex: 0 0 42%;   /* bullets take ~42% width */
  max-width: 42%;
  display: flex;
  align-items: center;
}

/* Make list readable and compact */
.video-grid .video-index ul {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #e6e6e6; /* adjust to your palette */
}

/* Responsive iframe: keeps 16:9 aspect ratio and scales */
.video-grid .video-frame iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  border-radius: 8px;
  background: #000;
}

/* Small screens: stack vertically with video on top */
@media (max-width: 880px) {
  .video-grid {
    flex-direction: column;
    gap: 0.75rem;
  }
  .video-grid .video-frame,
  .video-grid .video-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .video-grid .video-index ul { padding-left: 1.1rem; font-size: .98rem; }
}

/* Optional: tighter spacing inside the section to match other page parts */
.section.alt .wrap { padding-left: 1rem; padding-right: 1rem; }














































/* ============================================================
   GRID + TYPOGRAPHY
   ============================================================ */
.ribcast.ribcast-shift-page .rc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 700px) and (max-width: 1099px) {
  .ribcast.ribcast-shift-page .rc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }
  .ribcast.ribcast-shift-page .rc-col:nth-child(2) {
    grid-column: span 2;
  }
}

/* WIDE SCREENS — 2 COLUMNS */
@media (min-width: 1100px) {
  .ribcast.ribcast-shift-page .rc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 2rem;
  }
}

.ribcast.ribcast-shift-page .rc-sub {
  color: rgba(255, 255, 255, 0.92);
}

.ribcast.ribcast-shift-page .rc-h {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.ribcast.ribcast-shift-page .rc-p {
  line-height: 1.55;
  margin-bottom: 1rem;
}

.ribcast.ribcast-shift-page .rc-quote {
  margin-top: 2rem;
  font-style: italic;
  opacity: 0.85;
}

/* ============================================================
   SMOOTH REVEAL
   ============================================================ */
#ribcastReveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}

#ribcastReveal.reveal-open {
  max-height: 2000px;
  opacity: 1;
}

/* ============================================================
   BUTTON GROUP SPACING (Spa / Rootrise)
   ============================================================ */
.ribcast-info-buttons {
  margin-top: 2rem;      /* ← THIS restores space above */
  display: flex;
  flex-direction: column;
  gap: 1rem;             /* ← THIS restores space between */
}

@media (min-width: 700px) {
  .ribcast-info-buttons {
    flex-direction: row;
    gap: 1.25rem;
  }
}

/* ============================================================
   OUTLINE-ONLY ULTRALITE BUTTONS
   ============================================================ */
.watch-btn.ultralite-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;

  border-radius: 999px;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.watch-btn.ultralite-btn:hover {
  border-color: white;
  color: white;
}

/* ============================================================
   MODAL BACKDROP
   ============================================================ */
.ribcast-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.90) !important;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Close button */
.modal-close {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;

  background: transparent;
  color: white;
  border-radius: 999px;
  cursor: pointer;
}

/* Base paragraph */
.rc-p {
  line-height: 1.55;
  margin-bottom: 1rem;
  font-size: 0.90rem;
}

/* ============================================================
   MOBILE — modal text sizing
   ============================================================ */
@media (max-width: 480px) {
  .ribcast-modal-content .rc-p,
  .ribcast-modal-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .ribcast-modal-content .rc-h {
    font-size: 1.4rem;
  }
}

/* ============================================================
   MOBILE — modal alignment
   ============================================================ */
@media (max-width: 480px) {
  .ribcast-modal {
    align-items: flex-start !important;
    padding-top: 2rem !important;
  }

  .ribcast-modal-content {
    margin-top: 0 !important;
  }
}

/* ============================================================
   MOBILE — rc-grid inside modal
   ============================================================ */
@media (max-width: 480px) {
  .ribcast-modal-content .rc-grid {
    padding: 1rem 1rem !important;
  }
  .ribcast-modal-content .rc-h {
    margin-top: 0 !important;
  }
}




















/* ============================================================
   MOBILE — tighten heading rhythm
   ============================================================ */
@media (max-width: 480px) {
  .ribcast-modal-content h1,
  .ribcast-modal-content h2,
  .ribcast-modal-content h3 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }

  .ribcast-modal-content .rc-h {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }

  .ribcast-modal-content .rc-grid {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}


/* REQUIRED modal content container */
.ribcast-modal-content {
  background: #111;
  color: white;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .ribcast-modal {
    align-items: flex-start !important;
    padding-top: 0.75rem !important;
  }

  .ribcast-modal-content {
    padding: 0.5rem 0.75rem !important;
    margin-top: 0 !important;
  }

  .ribcast-modal-content .rc-grid {
    padding: 0 !important;
    gap: 0.5rem !important;
  }

  .ribcast-modal-content .rc-h {
    margin: 0 0 0.4rem 0 !important;
    font-size: 1.25rem !important;
    line-height: 1.2 !important;
  }

  .ribcast-modal-content .rc-p,
  .ribcast-modal-content p {
    margin: 0 0 0.4rem 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.35 !important;
  }

  .modal-close {
    margin-bottom: 0.4rem !important;
  }
}

.ribcast.ribcast-shift-page .rc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  /* padding removed */
}

/* FINAL, ACTIVE VERSION — KEEP */
.ribcast-info-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 700px) {
  .ribcast-info-buttons {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.ribcast.ribcast-shift-page .watch-btn.ultralite-btn {
  margin-top: 1.25rem;
}

/* ULTRALITE INFO BUTTON — FINAL ACTIVE VERSION */
.left-accent .watch-btn.ultralite-btn {
  background: transparent !important;
  
  color: #ffffff !important;
  box-shadow: none !important;
}

/* MESCHED INFO BUTTON — ACTIVE */
.right-accent .watch-btn.ultralite-btn {
  background: transparent !important;
 
  color: #ffffff !important;
  box-shadow: none !important;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
}

.right-accent .watch-btn.ultralite-btn:hover {
  border-color: #2eb34a !important;
  color: #ffffff !important;
}

/* Lighten subheads inside modal */
.ribcast-modal-content .rc-sub,
.ribcast-modal-template .rc-sub {
  color: rgba(255, 255, 255, 1) !important;
}

/* TEMPORARY MANUAL ALIGNMENT FOR ORANGE BUTTONS */
.slide-ctas {
  margin-top: 1rem !important;
  gap: 1rem !important;
}

/* TEMPORARY MANUAL ALIGNMENT FOR MESCHED WATCH + MESCHED INFO */
.right-accent .summary-ctas {
  margin-top: 1.2rem !important;
  gap: 3.25rem !important;
  display: flex !important;
  align-items: center !important;
}

#hero-carousel {
  position: relative;
}

#hero-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #241313,
    #493131,
    #241313
  );
  box-shadow: none !important;
  pointer-events: none;
}

/* ULTRALITE + SPA + ROOTRISE BUTTON COLOR — GHOST BUT HARMLESS */
.left-accent .watch-btn,
.left-accent .ultralite-btn,
.spa-info-btn,
.rootrise-info-btn {
  background: #000 !important;
  border-color: #d3c6c6 !important;
 
}

 

/* SPA + ROOTRISE — FORCE HOVER COLOR */
.spa-info-btn,
.spa-info-btn:hover,
.spa-info-btn:focus,
.rootrise-info-btn,
.rootrise-info-btn:hover,
.rootrise-info-btn:focus {
  background: #d3c6c6 !important;
  border-color: #d3c6c6 !important;
  color: #fff !important;
  box-shadow: none !important;
}




#ribcast-strip .carousel-strip:hover .carousel-track,
#ribcast-strip .carousel-strip:focus-within .carousel-track {
  animation-play-state: paused;
}



#hero-carousel .carousel-item {
  flex: 0 0 280px;
  max-width: 280px;
}
@media (min-width: 600px) {
  #hero-carousel .carousel-item {
    flex: 0 0 320px;
    max-width: 320px;
  }
}
@media (min-width: 900px) {
  #hero-carousel .carousel-item {
    flex: 0 0 360px;
    max-width: 360px;
  }
}
@media (max-width: 600px) {
  .desc {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}
.carousel-track:hover {
  animation-play-state: paused;
}



/* NAV FOCUS FIX */
nav a:focus,
nav a:active {
  outline: none !important;
  box-shadow: none !important;
}





























/* ============================================================
   RIBCAST FOOTER — MATCHES REAL ORIGINS GEOMETRY (NO GHOSTS)
   ============================================================ */

.ribcast-footer {
  background: #1e1212;
  color: #fff;
  padding: 3rem 1.5rem; /* matches page’s natural padding */
}

/* No max-width. No centering. No grid container. */
.ribcast-footer-inner {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

/* Columns behave like natural text blocks */
.footer-column {
  flex: 1;
  min-width: 250px;
}

.ribcast-footer h4 {
  color: #9EF2D0;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.ribcast-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ribcast-footer li {
  margin-bottom: 0.4rem;
  color: #e5e5e5;
}

.ribcast-footer a {
  color: #e5e5e5;
  text-decoration: none;
}

.ribcast-footer a:hover {
  color: #9EF2D0;
}

.ribcast-footer-bottom {
  text-align: center;
  margin-top: 2rem;
  opacity: 0.85;
}
 













/* ============================================================
   FINAL BORDER + HOVER CLEANUP (authoritative)
   ============================================================ */

/* 1. Remove ALL inherited borders from watch buttons */
.left-accent .watch-btn,
.right-accent .watch-btn {
  border: none !important;
  box-shadow: none !important;
}

/* 2. ORDER FORMS — green outline only */
.left-accent .btn-primary {
  background: transparent !important;
  color: var(--ultralite-accent) !important;
  border: 1.5px solid var(--ultralite-accent) !important;
  box-shadow: none !important;
}
.left-accent .btn-primary:hover,
.left-accent .btn-primary:focus {
  background: transparent !important;
  color: var(--ultralite-accent) !important;
  border-color: var(--ultralite-accent) !important;
  box-shadow: none !important;
}

/* 3. SPA / ROOTRISE / TYPE 2 INFO — white outline only */
.watch-btn.ultralite-btn,
.right-accent .watch-btn.ultralite-btn,
.left-accent .watch-btn.ultralite-btn {
  background: transparent !important;
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  box-shadow: none !important;
}
.watch-btn.ultralite-btn:hover,
.right-accent .watch-btn.ultralite-btn:hover,
.left-accent .watch-btn.ultralite-btn:hover {
  background: transparent !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* 4. TYPE 2 INFO — explicitly prevent green hover */
.right-accent .watch-btn.ultralite-btn:hover {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* 5. TOP CAROUSEL — remove accidental outlines */
#hero-carousel .slide-ctas .btn-primary,
#hero-carousel .slide-ctas .watch-btn {
  border: none !important;
  box-shadow: none !important;
}




/* ============================================================
   TOP CAROUSEL — SEPARATE WATCH vs ORDER FORMS
   ============================================================ */

/* WATCH stays filled */
#hero-carousel .slide-ctas .watch-btn,
#hero-carousel .slide-ctas .watch-btn:hover,
#hero-carousel .slide-ctas .watch-btn:focus {
  background: #5f9977 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}

/* ORDER FORMS becomes mint outline only */
#hero-carousel .slide-ctas .btn-primary,
#hero-carousel .slide-ctas .btn-primary:hover,
#hero-carousel .slide-ctas .btn-primary:focus {
  background: transparent !important;
  color: var(--ultralite-accent) !important;
  border: 1.5px solid var(--ultralite-accent) !important;
  box-shadow: none !important;
}


/* TOP CAROUSEL — ORDER FORMS OUTLINE (literal mint) */
#hero-carousel .slide-ctas .btn-primary,
#hero-carousel .slide-ctas .btn-primary:hover,
#hero-carousel .slide-ctas .btn-primary:focus {
  background: transparent !important;
  color: #5f9977 !important;
  border: 1.75px solid #5f9977 !important;
  box-shadow: none !important;
}


















 .footer {
  border-top: 10px solid rgba(0,0,0,0.08);
}
.footer {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  background: #E9E4DD;
  color: #352828;
}












