.home-page {
  background: var(--cumbuca-page-bg);
  color: var(--cumbuca-text-primary);
}

.home-container {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}

.home-section {
  padding: clamp(4.75rem, 8vw, 7rem) 0;
}

.home-section--coral {
  background: #b06060;
  color: #ffffff;
}

.home-section--tipiti {
  background: #d4c44a;
  color: #101010;
}

.home-section--black {
  background: #000000;
  color: #ffffff;
}

.home-section--neutral {
  background: #d9d9d9;
}

.home-section--amber {
  background: #cc9955;
  color: #ffffff;
}

.home-section__header {
  margin-bottom: 2.5rem;
}

.home-section__header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-section__header--centered {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.home-section__title {
  margin: 0;
  font-family: var(--cumbuca-font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.home-section__title--light {
  color: #ffffff;
}

.home-section__title--dark {
  color: #101010;
}

.home-section__title--center {
  text-align: center;
}

.home-section__title--spotify {
  color: #1db954;
}

.home-section__description,
.home-section__copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--cumbuca-text-muted);
}

.home-section__description {
  margin-top: 0.85rem;
}

.home-section__description--light {
  color: rgba(255, 255, 255, 0.78);
}

.home-section__description--center {
  max-width: 40rem;
  margin-inline: auto;
}

.home-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--cumbuca-font-display);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-pill-link:hover {
  transform: translateY(-1px);
}

.home-pill-link--light {
  color: #ffffff;
}

.home-pill-link--light:hover {
  background: #ffffff;
  color: #101010;
}

.home-pill-link--dark {
  color: var(--cumbuca-text-primary);
}

.home-pill-link--dark:hover {
  background: var(--cumbuca-text-primary);
  color: var(--cumbuca-page-bg);
}

.home-pill-link--small {
  min-height: 2.75rem;
  padding-inline: 1.25rem;
  font-size: 0.76rem;
  font-family: var(--cumbuca-font-body);
}

.home-pill-link--spotify {
  color: #000000;
  background: #1db954;
  border-color: #1db954;
}

.home-pill-link--spotify:hover {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.home-pill-link--form {
  cursor: pointer;
  background: transparent;
}

.home-pill-link__icon,
.home-pill-link__brand-icon,
.home-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.home-circle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.home-circle-button:hover {
  background: #101010;
  color: #ffffff;
}

.home-hero {
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  background: var(--cumbuca-page-bg);
}

.home-hero__slides {
  position: relative;
  display: grid;
  min-height: min(80vh, 920px);
  max-height: 90vh;
}

.home-hero__slide {
  grid-area: 1 / 1;
  display: grid;
  max-height: 90vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

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

.home-hero__media {
  order: 1;
  min-height: 40vh;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__content-wrap {
  order: 2;
  background: var(--home-hero-bg, #b06060);
}

.home-hero__content {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.home-hero__content-inner {
  max-width: 40rem;
  margin-left: max(1rem, calc((100vw - 1280px) / 2));
  margin-right: 1rem;
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(4.5rem, 10vw, 7rem);
}

.home-hero__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--cumbuca-font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.home-hero__description {
  max-width: 34rem;
  margin: 1rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.75;
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 4vw, 2.25rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(1280px, calc(100% - 2rem));
  transform: translateX(-50%);
}

.home-hero__dot {
  width: 1rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.home-hero__dot.is-active {
  width: 2rem;
  background: #ffffff;
}

.home-about__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.home-about__media-wrap {
  position: relative;
}

.home-about__media-wrap::before,
.home-about__media-wrap::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.home-about__media-wrap::before {
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(138, 173, 66, 0.12);
}

.home-about__media-wrap::after {
  right: -1rem;
  bottom: -1rem;
  width: 8rem;
  height: 4rem;
  background: rgba(204, 153, 85, 0.2);
}

.home-about__media-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home-about__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-about__copy {
  display: grid;
  gap: 1rem;
}

.home-collectives__grid,
.home-news__grid,
.home-gallery__grid,
.home-instagram__grid {
  display: grid;
  gap: 1.25rem;
}

.home-collective-card,
.home-news-card,
.home-artist-card,
.home-instagram-card,
.home-event-card {
  text-decoration: none;
}

.home-collective-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.home-collective-card__media,
.home-news-card__media,
.home-artist-card__media,
.home-instagram-card {
  overflow: hidden;
}

.home-collective-card__image,
.home-news-card__image,
.home-artist-card__image,
.home-instagram-card__image,
.home-video-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-collective-card:hover .home-collective-card__image,
.home-news-card:hover .home-news-card__image,
.home-artist-card:hover .home-artist-card__image,
.home-instagram-card:hover .home-instagram-card__image {
  transform: scale(1.06);
}

.home-collective-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.82) 100%);
}

.home-collective-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1.25rem;
}

.home-collective-card__title,
.home-news-card__title,
.home-video-card__title,
.home-event-card__title,
.home-artist-card__title,
.home-podcast-card__title {
  margin: 0;
  font-family: var(--cumbuca-font-display);
  line-height: 1.2;
}

.home-collective-card__title {
  color: #ffffff;
  font-size: 1.1rem;
}

.home-collective-card__description {
  display: -webkit-box;
  margin: 0.5rem 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: color 0.25s ease;
}

.home-collective-card:hover .home-collective-card__description {
  color: rgba(255, 255, 255, 0.82);
}

.home-marquee {
  overflow: hidden;
  padding: 1rem 0;
  background: #8aad42;
}

.home-marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: cumbuca-home-marquee 34s linear infinite;
}

.home-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline: 1.5rem;
}

.home-marquee__text {
  font-family: var(--cumbuca-font-display);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.home-marquee__separator {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.home-news__grid {
  grid-template-columns: 1fr;
}

.home-news-card__media {
  aspect-ratio: 3 / 4;
  margin-bottom: 1rem;
}

.home-news-card__badge,
.home-video-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.95rem;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-news-card__title {
  display: -webkit-box;
  margin-top: 0.8rem;
  overflow: hidden;
  color: var(--cumbuca-text-primary);
  font-size: 1rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-news-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0.6rem 0 0.85rem;
  color: var(--cumbuca-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cumbuca-text-muted);
  font-size: 0.76rem;
  flex-wrap: wrap;
}

.home-news-card__meta-divider {
  opacity: 0.55;
}

.home-videos__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-videos__scroller {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-videos__scroller::-webkit-scrollbar {
  display: none;
}

.home-video-card {
  flex: 0 0 min(20rem, 82vw);
  scroll-snap-align: start;
}

.home-video-card__trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  background: #101010;
  cursor: pointer;
}

.home-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.26);
  transition: background-color 0.2s ease;
}

.home-video-card__play-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.home-video-card__play::before {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.62);
}

.home-video-card__play .home-icon {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.home-video-card__trigger:hover .home-video-card__play {
  background: rgba(0, 0, 0, 0.44);
}

.home-video-card__body {
  padding-top: 0.8rem;
}

.home-video-card__badge {
  margin-bottom: 0.55rem;
  background: #101010;
}

.home-video-card__title {
  font-family: var(--cumbuca-font-body);
  font-size: 1.28rem;
  color: #101010;
}

.home-video-modal[hidden] {
  display: none;
}

.home-video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.home-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.home-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 68rem);
  margin: min(8vh, 3.5rem) auto 0;
}

.home-video-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  margin-left: auto;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.home-video-modal__frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.home-video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.home-events__list {
  display: flex;
  flex-direction: column;
}

.home-event-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cumbuca-color-border);
  color: inherit;
}

.home-event-card__date {
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  background: rgba(138, 173, 66, 0.12);
}

.home-event-card__day {
  display: block;
  color: #8aad42;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.home-event-card__month {
  display: block;
  color: #8aad42;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-event-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.home-event-card__title {
  font-family: var(--cumbuca-font-body);
  font-size: 1.06rem;
  font-weight: 600;
}

.home-event-card__description {
  display: -webkit-box;
  margin: 0.4rem 0 0.8rem;
  overflow: hidden;
  color: var(--cumbuca-text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-event-card__location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cumbuca-text-muted);
  font-size: 0.76rem;
}

.home-event-card__arrow {
  display: none;
  color: var(--cumbuca-text-muted);
}

.home-podcast__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.home-podcast__intro {
  display: grid;
  gap: 1rem;
}

.home-podcast__list {
  display: grid;
  gap: 1rem;
}

.home-podcast-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.home-podcast-card__brand {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: rgba(29, 185, 84, 0.15);
  color: #1db954;
}

.home-podcast-card__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.home-podcast-card__title {
  color: #ffffff;
  font-family: var(--cumbuca-font-body);
  font-size: 0.92rem;
}

.home-podcast-card__meta {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.home-podcast-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
}

.home-gallery__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-artist-card__media {
  aspect-ratio: 1;
  margin-bottom: 0.8rem;
}

.home-artist-card__title {
  color: var(--cumbuca-text-primary);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.home-artist-card__category {
  margin: 0.25rem 0 0;
  color: var(--cumbuca-text-muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.home-artist-card:hover .home-artist-card__title,
.home-artist-card:hover .home-artist-card__category {
  color: #b06060;
}

.home-newsletter__panel {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.home-newsletter__icon,
.home-instagram__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: rgba(16, 16, 16, 0.62);
}

.home-instagram__icon {
  color: #ffffff;
}

.home-newsletter__shortcode {
  margin-top: 1.5rem;
}

.home-newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 34rem;
  margin: 1.75rem auto 0;
}

.home-newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 3.25rem;
  padding: 0 1rem;
  border: 1px solid rgba(16, 16, 16, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #101010;
  font: inherit;
}

.home-newsletter__input::placeholder {
  color: rgba(16, 16, 16, 0.42);
}

.home-instagram__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.home-instagram-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
}

.home-instagram-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.home-instagram-card:hover .home-instagram-card__overlay {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.home-instagram__handle {
  color: inherit;
  text-decoration: none;
}

body.is-video-modal-open {
  overflow: hidden;
}

body.is-dark-mode .home-section--neutral {
  background: #2a2a2a;
}

body.is-dark-mode .home-newsletter__input {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

body.is-dark-mode .home-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .home-hero__slide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home-hero__media {
    order: 2;
    min-height: 75vh;
  }

  .home-hero__content-wrap {
    order: 1;
  }

  .home-about__grid,
  .home-podcast__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home-collectives__grid,
  .home-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .home-event-card__arrow {
    display: inline-flex;
    align-items: center;
    align-self: center;
  }

  .home-instagram__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  .home-hero__dots {
    bottom: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .home-collectives__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-news__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-videos__actions {
    justify-content: flex-start;
  }

  .home-newsletter__form {
    flex-direction: column;
  }

  .home-pill-link--form {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide,
  .home-collective-card__image,
  .home-news-card__image,
  .home-artist-card__image,
  .home-instagram-card__image,
  .home-marquee__track {
    transition: none;
    animation: none;
  }
}

@keyframes cumbuca-home-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}
