     @font-face {
	font-family: 'singular';
	src: url('fonts/singular-Regular.woff2') format('woff2');
	font-weight: 400;
  font-style: normal;
}
  @font-face {
	font-family: 'singular';
	src: url('fonts/singular-Light.woff2') format('woff2');
	font-weight: 200;
  font-style: normal;
}

:root {
  --bg: #fff8e0;
  --main-color: #893d8e;
  --second-color: #3e907e;
  --bg-soft: #fff8e0;
  --surface: rgba(255, 255, 255, 0.56);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --text: #2c3a37;
  --muted: #3a463e;
  --line: rgba(23, 49, 39, 0.8);
  --accent: #244e3f;
  --shadow: 0 5px 15px rgba(32, 44, 38, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1240px;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "singular", sans-serif;
  color: var(--text);
  background: #F7F3EB;
}

.hero-splash {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h)); 
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.splash-image {
  position: absolute; /* Permite apilar las imágenes una sobre otra */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.splash-image.active {
  opacity: 1;
  z-index: 3; /* Se coloca por encima de todas */
}
.splash-image.previous {
  opacity: 1;
  z-index: 2; /* Se queda en medio, totalmente visible para que no haya salto a blanco */
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.6;
}

.site-shell::before {
  width: 18rem;
  height: 18rem;
  left: -3rem;
  top: 8rem;
  background: rgba(184, 216, 125, 0.38);
}

.site-shell::after {
  width: 20rem;
  height: 20rem;
  right: -4rem;
  top: 24rem;
  background: rgba(201, 169, 214, 0.26);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  height: var(--header-h);
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(23, 49, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.brand img{
  height: auto;
  width: 20vh;
}

.brand-text,
.footer-brand {
  font-family: "singular", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
}

.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding-top: 5rem;
}

.hero h1,
.section-heading h2,
.manifesto-card h2,
.stockists-card h2,
.cta-card h2 {
  margin: 0;
  font-family: "singular", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 5rem);
}

.hero-text,
.lead,
.product-details p,
.herb-card p,
.manifesto-card p,
.bike-copy p,
.merch-card p,
.stockists-list p,
.cta-card p,
.content-note p,
.site-footer p,
.modal-specs li {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 200;
}
.lead span {
  color: var(--main-color);
  font-style: italic;
}

.hero-actions,
.cta-row,
.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--main-color);
  color: #F7F3EB;
  border-color: var(--line);
  letter-spacing: 0.05rem;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--text);
  letter-spacing: 0.05rem;
}

.hero-video-frame,
.bottle-stage,
.stockists-card,
.manifesto-card,
.modal-panel {
  position: relative;
  border: 1px solid var(--line);
}
.pto-venta {
  border: none;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.4));
  backdrop-filter: blur(24px);
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1rem, 2.5vw, 1.7rem);
  aspect-ratio: 4 / 5;
  min-height: 24rem;
}
.hero-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: soft-light;
  opacity: 0.52;
}

.hero-overlay-card {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 1.4rem;
}

.pill,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,0.6);
}

.merch-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0; /* Eliminado el margen que rompía la alineación */
  padding: 0.4rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,0.6);
  white-space: nowrap; /* Evita que "próximamente" se rompa en dos líneas */
}

.product-section{
  border-radius: 1.4rem;
  padding: 3.5rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.whatsapp{
  background-color: var(--second-color);
}
.section-heading.narrow {
  max-width: 50rem;
}

.section-heading h2,
.product-header h2,
.manifesto-card h2,
.stockists-card h2,
.cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.product-header h2{
  margin: 0;
}
.product-grid,
.bike-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.bottle-stage {
  display: grid;
  place-items: center;
  min-height: 38rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 12%, rgba(184, 216, 125, 0.56), transparent 0 22%),
    linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.36));
}

.herbs-section span{
  color: var(--main-color);
}
.herb-card span{
  color: var(--second-color);
}


.product-copy {
  padding: 1.2rem 0.2rem;
}

.lead {
  color: var(--text);
}

.taste-notes {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 1.8rem;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-details h3,
.herb-card h3,
.merch-card h3,
.stockists-list h3 {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.herbs-grid,
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2rem;
}
.merch-card img {
  margin: 0;
  width: 100%;
  object-fit: cover;
}

.merch-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  margin-top: auto;
  width: 100%;
}

.section-heading.align-right {
  justify-content: flex-end;
  text-align: right;
}

.herb-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.46);
}

.merch-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.46);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.merch-card h3 {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}


.herb-index {
  display: inline-flex;
  margin-bottom: 1.2rem;
  font-weight: 400;
  color: var(--muted);
}

.manifesto-card,
.stockists-card,
.cta-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.herb-card:hover,
.merch-card:hover {
  transform: translateY(-4px);
}

.content-note {
  max-width: 48rem;
  margin-top: 1.2rem;
}

.bike-section {
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.bike-gif-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 26rem;
  padding: 1rem;
}

.bike-gif-frame img {
  width: 70%;
  height: auto;
}

.bike-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(250,245,235,0.88);
  font-size: 0.82rem;
  font-weight: 400;
}

.stockists-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.48);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.2rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-question span {
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text);
}
.faq-question p {
  font-weight: 200;
}

.faq-icon {
  font-weight: 200;
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 200;
  font-size: 1.2rem;
}

.faq-item.is-open .faq-answer {
  max-height: 40rem;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.product-number-icon {
  display: block;
  width: 8vh;
  height: auto; 
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 19, 0.52);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(100%, 42rem);
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.modal-gallery {
  width: min(100%, 60rem);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  cursor: pointer;
}

.modal-specs {
  padding-left: 1.2rem;
}

.gallery-stage {
  display: grid;
  gap: 1rem;
}

.gallery-display {
  min-height: 22rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.82), rgba(255,255,255,0.42)),
    radial-gradient(circle at top left, rgba(184,216,125,0.26), transparent 0 32%);
}

.gallery-slide {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  min-height: 20rem;
}

.gallery-slide strong {
  font-size: 1.4rem;
}

.gallery-slide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

.hero-text,
.lead,
.product-details p,
.herb-card p,
.manifesto-card p,
.bike-copy p,
.merch-card p,
.stockists-list p,
.cta-card p,
.content-note p,
.site-footer p,
.modal-specs li {
  font-size: 1.2rem;
}

  .bike-section.mobile-reverse .bike-visual {
    order: -1;
  }
  .bike-section.mobile-reverse{
    padding-bottom: 10vw;
  }

  .bike-gif-frame img{
  width: 100%;
  height: auto;  
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #F7F3EB; /* El color de fondo que pediste */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: -1; /* Mantiene el logo y el botón de cerrar por encima del fondo */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none; /* Quitamos el transform del diseño anterior */
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* 2. Preparar los enlaces para la animación hacia arriba */
  .site-nav a {
    font-size: 2rem; /* Letra más grande para el modo full-screen */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* 3. Animación cuando el menú está abierto */
  .site-header.menu-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  /* 4. Efecto de "cascada" (stagger) para que los items aparezcan uno por uno */
  .site-header.menu-open .site-nav a:nth-child(1) { transition-delay: 0.1s; }
  .site-header.menu-open .site-nav a:nth-child(2) { transition-delay: 0.15s; }
  .site-header.menu-open .site-nav a:nth-child(3) { transition-delay: 0.2s; }
  .site-header.menu-open .site-nav a:nth-child(4) { transition-delay: 0.25s; }
  .site-header.menu-open .site-nav a:nth-child(5) { transition-delay: 0.3s; }

  /* 5. Clase auxiliar para cerrar el menú de golpe desde JS */
  .site-header.no-transition .site-nav,
  .site-header.no-transition .site-nav a {
    transition: none !important;
  }

  .site-header.menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .bike-visual {
	width: 100%;
    margin: 0;
    padding: 0;
  }

  .stockists-list,
  .site-footer,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
    gap: 2.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    display: grid;
    gap: 5rem;
  }

  .product-grid {
     grid-template-columns: 1fr;
    display: grid;
  }

  .bike-section{
    grid-template-columns: 1fr;
    display: grid;
    gap: 0;
  }

  .product-details {
    display: flex;
    flex-direction: column; /* Asegura que los detalles fluyan hacia abajo si falta espacio */
  }

  .hero-video-frame {
    min-height: 24rem; /* Un poco menos alto para no empujar el contenido fuera de la vista */
  }

  .herbs-grid,
  .merch-grid,
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer,
  .section {
  width: 85vw;
  margin: 0 auto;
  padding: 4.5rem 0vw;
}
  .site-footer{
   font-size: 1rem;
  }
  
  .product-section {
    padding: 2.5rem;
  }
}

@media (max-width: 640px) {
/* 1. Expandir los márgenes laterales para que el diseño respire (aprox 20px por lado) */
  .site-header,
  .section {
    width: 85vw;
  }
  .site-header {
    padding-inline: 0; /* El espacio ya lo da el width recalculado */
  }

  .section {
    padding: 3.5rem 0; /* Reducimos el espacio vertical entre secciones */
  }
  
  .mobile-hero {
	width: 80%;
    margin-top: 3rem;
  }

  .hero {
    gap: 5rem;
    min-height: auto;
    padding-top: 2rem; 
  }

  /* 2. Control tipográfico para que los títulos no rompan el grid */
  .hero h1 {
    font-size: 2.5rem; 
  }
  .section-heading h2,
  .product-header h2,
  .manifesto-card h2,
  .stockists-card h2,
  .cta-card h2 {
    font-size: 2rem;
  }

  /* 3. Ajuste de paddings internos en tarjetas para ganar espacio útil */
  .product-section {
    padding: 1.5rem;
    border-radius: 1.2rem;
  }

  .manifesto-card,
  .stockists-card,
  .cta-card,
  .herb-card,
  .media-card {
    padding: 1.5rem; 
  }

  .herbs-grid,
  .merch-grid,
  .media-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bike-section {
    gap: 0vw;
  }

  .bottle-stage {
    min-height: 22rem; /* Más compacto en móvil */
  }

  /* 4. Optimización de botones (Call to Actions) para pulgares */
  .hero-actions,
  .cta-row {
    flex-direction: column; /* Apilamos los botones uno sobre otro */
    align-items: stretch;
    width: 100%;
  }
  
  .hero-actions .button,
  .cta-row .button {
    width: 100%; /* Botones de ancho completo para facilitar el toque */
    justify-content: center;
  }

  .modal-panel {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.interactive-pills-container {
  width: 100%;
  overflow: visible;
  display: grid;
  gap: 1.4rem;
}

.herbs-interactive-section span {
  color: var(--main-color);
}

.pills-nav {
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.interactive-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,0.62);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.interactive-pill:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.84);
}

.interactive-pill.active {
  background: var(--main-color);
  color: #F7F3EB;
  border-color: var(--main-color);
  box-shadow: var(--shadow);
}

.pills-content-wrapper {
  width: 100%;
}

.pill-content {
  display: none;
}

.pill-content.active {
  display: block;
  animation: fadeIn 0.35s ease forwards;
}

.pill-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pill-visual {
  height: 100%;
}

.pill-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 26rem;
  height: 100%;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.pill-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,49,39,0.04), rgba(23,49,39,0.34));
}

.pill-media-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.56);
  background: rgba(247,243,235,0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.95rem;
}

.pill-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: 26rem;
}

.pill-kicker {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--second-color);
}

.pill-copy-card h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 400;
}

.pill-copy-card p {
  margin: 0;
}

.pill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

@media (max-width: 980px) {
  .pills-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
	width: 100vw;           
    margin-inline: -7.5vw;
    padding-inline: 7.5vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pills-nav::-webkit-scrollbar {
    display: none;
  }

  .interactive-pill {
    flex: 0 0 auto;
    white-space: nowrap;
	scroll-snap-align: start;
  }

  .pill-panel-grid {
    grid-template-columns: 1fr;
  }

  .pill-media,
  .pill-copy-card {
    min-height: initial;
  }

  .pill-media {
    min-height: 20rem;
  }
}

@media (max-width: 640px) {
  .interactive-pills-container {
    gap: 1rem;
  }

  .pills-nav {
    gap: 0.65rem;
  }

  .interactive-pill {
    padding: 0.72rem 1rem;
    font-size: 0.95rem;
  }

  .pill-panel-grid {
    gap: 1rem;
  }

  .pill-media {
    min-height: 15rem;
    border-radius: 1.2rem;
  }

  .pill-copy-card {
    padding: 1.35rem;
    border-radius: 1.2rem;
    gap: 0.85rem;
  }

  .pill-copy-card h3 {
    font-size: 2rem;
  }

  .pill-copy-card .lead,
  .pill-copy-card p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
