@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-main: #F4F5F7;
  --text-dark: #2C3E50;
  --text-muted: #2C3E50AA;
  --accent-orange: #F15B22;
  --footer-bg: #2C3E50;
  --font-barlow: 'Barlow', ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-barlow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Base Utility Classes */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.uppercase-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
}

/* Page Preloader */
#site-loader {
  position: fixed;
  inset: 0;
  background-color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark-pulse {
  width: 54px;
  height: auto;
  animation: markPulse 1.2s ease-in-out infinite;
}

@keyframes markPulse {
  0% { transform: scale(0.92); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.92); opacity: 0.6; }
}

/* Header & Top Nav */
header.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  header.navbar { padding: 1.5rem 3.5rem; }
}

header.navbar a, header.navbar button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-barlow);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  transition: opacity 0.3s;
}

header.navbar a:hover, header.navbar button:hover { opacity: 0.6; }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem 4rem;
}

.hero-title {
  font-family: var(--font-barlow);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  user-select: none;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.hero-title .title-sub {
  display: block;
  font-weight: 300;
  font-size: clamp(1.9rem, 6.75vw, 7.1rem);
}

.hero-title .title-accent {
  display: block;
  font-weight: 800;
  color: var(--accent-orange);
  font-size: clamp(2.6rem, 9vw, 9.75rem);
}

.hero-subtext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #2C3E50AA;
  font-size: 1rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-subtext {
    flex-direction: row;
    gap: 2.5rem;
  }
  .hero-subtext .left-txt { text-align: right; }
  .hero-subtext .right-txt { text-align: left; }
  .hero-subtext .divider {
    width: 1px;
    height: 40px;
    background-color: #2C3E5020;
    display: block;
  }
}

.hero-subtext .divider { display: none; }

/* Project Section Cards */
.project-card-wrapper {
  padding: 3.5rem 1.5rem;
  transition: background-color 0.7s ease;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .project-card-wrapper { padding: 6rem 3rem; }
}

@media (min-width: 1024px) {
  .project-card-wrapper { padding: 6rem 5rem; }
}

/* 1. Hero Gallery Image & Bars (80% Left-Aligned) */
.gallery-container {
  width: 100%;
}

@media (min-width: 768px) {
  .gallery-container { width: 80%; }
}

.gallery-image-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background-color: #E2E8F0;
}

.gallery-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
  transition: opacity 0.4s ease;
}

.indicator-bars {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.25rem;
  width: 100%;
}

.indicator-bar-btn {
  height: 2px;
  border-radius: 9999px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 2. Info Block (80% Left-Aligned) */
.project-info-grid {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .project-info-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    width: 80%;
  }
}

.project-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.project-services {
  font-weight: 300;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.project-summary {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.project-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
}

.project-link-btn:hover { opacity: 0.6; }
.project-link-btn svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.project-link-btn:hover svg {
  transform: translateX(4px);
}

/* 3. Secondary Image Grid (Right-Aligned, 90% Width, Asymmetric Split, Locked Height) */
.secondary-images-row {
  margin-top: 4rem;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.secondary-images-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .secondary-images-grid {
    width: 90%;
    grid-template-columns: 1.8fr 1fr;
    height: 440px;
    gap: 1.5rem;
  }
}

.secondary-img-wrapper {
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
  background-color: #E2E8F0;
}

@media (max-width: 767px) {
  .secondary-img-wrapper {
    aspect-ratio: 16 / 10;
  }
}

.secondary-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating Peak Nav Button */
.floating-peak-btn {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 70;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.floating-peak-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-peak-btn:hover { transform: scale(1.1); }

/* Slide-Down Index Overlay Panel */
.index-overlay-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--accent-orange);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.index-overlay-panel.open {
  transform: translateY(0);
}

.overlay-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .overlay-top-bar { padding: 1rem 3rem; }
}

.overlay-nav-links {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .overlay-nav-links {
    flex-direction: row;
    align-items: flex-end;
    gap: 3rem;
    padding: 2.25rem 3rem;
  }
}

.overlay-link-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.overlay-link-item span {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  width: 1.25rem;
}

.overlay-link-item a, .overlay-link-item button {
  background: none;
  border: none;
  font-family: var(--font-barlow);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: left;
}

.overlay-link-item a:hover, .overlay-link-item button:hover { opacity: 0.7; }

.overlay-footer-line {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .overlay-footer-line { padding: 0 3rem 1.25rem; }
}

/* Dark Footer */
footer.site-footer {
  background-color: var(--footer-bg);
  color: #FFF;
  padding: 3.5rem 1.5rem 2rem;
  position: relative;
}

@media (min-width: 768px) {
  footer.site-footer { padding: 5rem 3rem 2.5rem; }
}

.footer-max-width {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-heading {
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
  color: #FFF;
}

.footer-link {
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

.footer-link:hover { color: rgba(255, 255, 255, 0.9); }

.footer-divider {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-sub-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-sub-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ==========================================================================
   TURNSTYLE-STYLE FULL BLEED HERO & MORPHING LOGO
   ========================================================================== */

/* Fixed Top Brand Navigation */
.sticky-brand-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 90;
  pointer-events: none;
  transition: padding 0.3s ease;
}

.brand-morph-link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Container holding both scaled logos */
.morph-logo-box {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
}

/* Full Logo (Initial State) */
.morph-logo-box .logo-full {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mark (Scrolled State) */
.morph-logo-box .logo-mark {
  position: absolute;
  left: 0;
  top: 50%;
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.85);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled State */
.sticky-brand-nav.scrolled {
  padding: 1rem 2rem;
}

.sticky-brand-nav.scrolled .logo-full {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.sticky-brand-nav.scrolled .logo-mark {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

/* Turnstyle 100vh Full-Bleed Hero */
.turnstyle-hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.turnstyle-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.turnstyle-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
}

.turnstyle-hero-content {
  position: relative;
  z-index: 3;
  padding: 3.5rem 2rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .turnstyle-hero-content { padding: 4.5rem 3.5rem; }
}

.turnstyle-headline {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 750px;
  margin-bottom: 2rem;
}

.turnstyle-caption-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.turnstyle-caption-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.turnstyle-caption-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   REUSABLE CASE STUDY COMPONENTS (WANDRD, BISTRO, ETC.)
   ========================================================================== */

.case-dark-section {
  background-color: #0d0e11;
  color: #ffffff;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .case-dark-section { padding: 7rem 3rem; }
}

.case-section-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.case-section-header .line {
  width: 40px;
  height: 2px;
  background-color: var(--accent-orange);
}

.case-section-header .label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

/* 1. Alternating Split Row */
.case-feature-split {
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .case-feature-split {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
  }
  .case-feature-split.reverse {
    grid-template-columns: 1fr 1.4fr;
  }
  .case-feature-split.reverse .feature-media {
    order: 2;
  }
  .case-feature-split.reverse .feature-copy {
    order: 1;
  }
}

.feature-media img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.feature-copy .step-num {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.feature-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-copy p {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

/* 2. Side-by-Side Context Block */
.case-context-block {
  max-width: 1200px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .case-context-block {
    grid-template-columns: 1.3fr 1fr;
    gap: 4.5rem;
  }
}

.case-context-block img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.context-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.context-headline .outline-txt {
  -webkit-text-stroke: 1px rgba(255,255,255,0.6);
  color: transparent;
  display: block;
}

/* 3. Full-Bleed Infographic Showcase */
.case-phone-showcase {
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.case-phone-showcase img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

@media (min-width: 768px) {
  .intro-grid-responsive {
    grid-template-columns: 1.25fr 1fr !important;
    gap: 4.5rem !important;
  }
}

/* ==========================================================================
   REXBURG RAPIDS CUSTOM CASE STUDY
   ========================================================================== */

.rapids-case-page {
  background-color: #FFFFFF;
  color: #2C3E50;
}

.case-content-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .case-content-wrap {
    padding: 0 2rem;
  }
}

.full-bleed-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.full-bleed-section img {
  width: 100%;
  height: 100%;
  max-height: 90vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.full-bleed-gif {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #FFC93C;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.full-bleed-gif img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.case-img-box {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background-color: #F4F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.case-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .case-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 520px;
  }
}

.case-grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .case-grid-3col {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    height: 420px;
  }
}

.rapids-type-strip {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #0066CC;
  padding: 4.5rem 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rapids-type-text {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  font-weight: 800;
  color: #FFC93C;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0 5rem;
}

.swatch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.swatch-glyph {
  width: 130px;
  height: 130px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swatch-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.swatch-values {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2C3E50AA;
  font-family: monospace;
}

.type-specimen-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .type-specimen-box { padding: 4rem 3.5rem; }
}

.type-specimen-item {
  margin-bottom: 3.5rem;
}

.type-specimen-item:last-child {
  margin-bottom: 0;
}

.type-specimen-item .font-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1rem;
  display: block;
}

.type-specimen-item .font-sample {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  color: #0066CC;
  word-break: break-word;
}

/* ==========================================================================
   ANALOG REBOOT CUSTOM CASE STUDY
   ========================================================================== */

.analog-case-page {
  background-color: #F7F2E6;
  color: #0B1A33;
}

.pattern-grid-12 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}

@media (min-width: 600px) {
  .pattern-grid-12 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .pattern-grid-12 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.pattern-tile-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(11, 26, 51, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.pattern-tile-card:hover {
  transform: translateY(-4px);
}

.pattern-tile-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.pattern-tile-info {
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(11, 26, 51, 0.06);
}

.pattern-tile-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0B1A33;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pattern-tile-code {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF4D47;
  font-family: monospace;
}

/* Full Bleed Retro Color Ribbon Stripe Divider */
.retro-ribbon-divider {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 5rem 0;
}

.retro-ribbon-divider .stripe {
  height: 8px;
  width: 100%;
}

.stripe-green { background-color: #8CC865; }
.stripe-red { background-color: #FF4D47; }
.stripe-yellow { background-color: #FFC938; }

.analog-swatch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 5rem;
}

@media (min-width: 600px) {
  .analog-swatch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .analog-swatch-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}

.analog-swatch-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(11, 26, 51, 0.05);
  display: flex;
  flex-direction: column;
}

.analog-swatch-preview {
  height: 100px;
  width: 100%;
}

.analog-swatch-body {
  padding: 1rem 0.85rem;
  background-color: #FFFFFF;
}

.analog-swatch-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0B1A33;
  margin-bottom: 0.25rem;
}

.analog-swatch-hex {
  font-size: 0.75rem;
  font-family: monospace;
  color: rgba(11, 26, 51, 0.6);
}

/* ==========================================================================
   GERBER GEAR CUSTOM CASE STUDY
   ========================================================================== */

.gerber-case-page {
  background-color: #F6F4F0;
  color: #1E2229;
}

.gerber-label {
  color: #D47A22;
}

.gerber-gif-box {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background-color: #EFECE6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gerber-gif-box img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}
