.dgut-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px
}

.dgut-section-actions {
  display: grid;
  justify-items: end;
  gap: 32px
}

.dgut-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dgut-taupe);
  font: 600 13px/1 var(--dgut-body);
  transition: color .18s
}

.dgut-section-link:hover {
  color: var(--dgut-charcoal)
}

.dgut-section-actions .slider-controls {
  margin: 0 0 0 auto
}

.dgut-section-actions .slider-arrow,
.dgut-team__top .slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--dgut-taupe);
  font-size: 0;
  transition: border-color .18s, color .18s, background .18s
}

.dgut-section-actions .slider-arrow:hover,
.dgut-team__top .slider-arrow:hover {
  border-color: var(--dgut-charcoal);
  color: var(--dgut-charcoal);
  background: rgba(250, 247, 242, .55)
}

.dgut-section-actions .slider-arrow svg,
.dgut-team__top .slider-arrow svg {
  width: 16px;
  height: 16px
}

.dgut-hero {
  position: relative;
  height: clamp(560px, 48vw, 640px);
  background: var(--dgut-ivory);
  overflow: hidden
}

.dgut-hero__slides,
.dgut-hero__slide {
  position: absolute;
  inset: 0
}

.dgut-hero__slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease
}

.dgut-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto
}

.dgut-hero__picture {
  position: absolute;
  inset: 0;
  display: block
}

.dgut-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.dgut-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dgut-ivory) 0%, rgba(242, 239, 235, .94) 28%, rgba(242, 239, 235, .56) 42%, rgba(242, 239, 235, .12) 62%, transparent 80%);
  pointer-events: none
}

.dgut-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, rgba(242, 239, 235, 0), var(--dgut-ivory));
  pointer-events: none
}

.dgut-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--dgut-charcoal)
}

.dgut-hero__eyebrow,
.dgut-hero__title,
.dgut-hero__desc,
.dgut-hero__credits,
.dgut-hero__date {
  width: min(100%, 520px)
}

.dgut-hero__eyebrow {
  margin: 0 0 16px;
  color: var(--dgut-sand)
}

.dgut-hero__title {
  min-height: 3em;
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  color: var(--dgut-charcoal)
}

.dgut-hero__desc {
  min-height: 2.8em;
  margin: 0 0 4px;
  color: var(--dgut-taupe);
  font: 500 14px/1.6 var(--dgut-body)
}

.dgut-hero__credits {
  margin: 0 0 10px;
  color: var(--dgut-taupe);
  font: 500 14px/1.55 var(--dgut-body)
}

.dgut-hero__date {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 28px;
  color: var(--dgut-sand);
  font: 500 12px/1.35 var(--dgut-body)
}

.dgut-hero__date svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto
}

.dgut-hero__button {
  width: auto;
  min-width: 184px;
  min-height: 48px;
  padding-inline: 28px;
  background: var(--dgut-charcoal);
  color: var(--dgut-cream);
  font-size: 13px;
  letter-spacing: .04em
}

.dgut-hero__controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px
}

.dgut-hero__controls[hidden] {
  display: none
}

.dgut-hero__arrows {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: none
}

.dgut-hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--dgut-stone);
  background: rgba(250, 247, 242, .16);
  color: var(--dgut-taupe);
  pointer-events: auto;
  transition: border-color .18s, color .18s, background .18s
}

.dgut-hero__arrow:hover {
  border-color: var(--dgut-charcoal);
  color: var(--dgut-charcoal);
  background: rgba(250, 247, 242, .36)
}

.dgut-hero__arrow svg {
  width: 16px;
  height: 16px
}

.dgut-hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px
}

.dgut-hero__dots button {
  width: 14px;
  height: 3px;
  border: 0;
  background: var(--dgut-graphite);
  opacity: .45;
  padding: 0;
  transition: width .3s ease, opacity .3s ease, background .3s ease
}

.dgut-hero__dots button.is-active {
  width: 36px;
  background: var(--dgut-charcoal);
  opacity: 1
}

.dgut-repertoire .section-title {
  margin: 0;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  line-height: 1.05;
  text-transform: none
}

.dgut-repertoire__viewport,
.dgut-news__viewport {
  overflow: hidden
}

.dgut-repertoire__grid {
  display: grid;
  grid-template-columns: repeat(var(--dgut-carousel-cols, 3), minmax(0, 1fr));
  gap: 20px
}

.dgut-repertoire__grid::-webkit-scrollbar,
.dgut-news__grid::-webkit-scrollbar,
.dgut-team__track::-webkit-scrollbar {
  display: none
}

.dgut-performance-card {
  scroll-snap-align: start
}

.dgut-performance-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr
}

.dgut-performance-card__image {
  position: relative;
  aspect-ratio: 4/5
}

.dgut-performance-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 7px 11px 6px;
  background: var(--dgut-dust);
  color: var(--dgut-taupe);
  font: 700 11px/1 var(--dgut-body);
  letter-spacing: .16em;
  text-transform: uppercase
}

.dgut-performance-card__age {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 7px 11px 6px;
  background: var(--dgut-red);
  color: var(--dgut-cream);
  font: 700 11px/1 var(--dgut-body);
  letter-spacing: .16em
}

.dgut-performance-card__body {
  min-height: 212px;
  padding: 18px 18px 16px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 12px
}

.dgut-performance-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-family: var(--dgut-body);
  font-weight: 300;
  text-transform: none;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--dgut-charcoal)
}

.dgut-performance-card p {
  margin: 0;
  color: var(--dgut-taupe);
  font-size: 14px;
  line-height: 1.55
}

.dgut-performance-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dgut-taupe)
}

.dgut-performance-card__date svg {
  width: 13px;
  height: 13px;
  color: var(--dgut-taupe);
  flex: 0 0 auto
}

.dgut-performance-card__button {
  width: 100%;
  min-height: 42px;
  margin-top: 2px
}

.dgut-news {
  background: var(--dgut-ivory)
}

.dgut-news .section-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase
}

.dgut-news__grid {
  display: grid;
  grid-template-columns: repeat(var(--dgut-carousel-cols, 4), minmax(0, 1fr));
  gap: 20px
}

.dgut-news-card {
  scroll-snap-align: start;
  border: 0;
  background: var(--dgut-cream);
  transform: none;
}

.dgut-news-card:hover {
  border-color: transparent;
  transform: none;
}

.dgut-news-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr
}

.dgut-news-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 0;
  background: var(--dgut-dust);
  overflow: hidden
}

.dgut-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.dgut-news-card__body {
  min-height: 260px;
  padding: 20px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0
}

.dgut-news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0
}

.dgut-news-card__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--dgut-sand);
  font: 600 11px/1.2 var(--dgut-body)
}

.dgut-news-card__meta time {
  white-space: nowrap;
  color: var(--dgut-stone);
  font: 500 11px/1.2 var(--dgut-body)
}

.dgut-news-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 12px 0 8px;
  font-family: var(--dgut-display);
  font-weight: 400;
  text-transform: none;
  font-size: 15px;
  line-height: 1.35;
  color: var(--dgut-charcoal)
}

.dgut-news-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 16px;
  color: var(--dgut-taupe);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65
}

.dgut-news-card__read {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  color: var(--dgut-taupe);
  font: 600 13px/1 var(--dgut-body);
  transition: color .18s
}

.dgut-news-card:hover .dgut-news-card__read {
  color: var(--dgut-charcoal)
}

.dgut-about {
  background: var(--dgut-cream)
}

.dgut-about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6.5vw, 80px);
  align-items: center
}

.dgut-about__content {
  display: grid;
  align-content: start
}

.dgut-about__eyebrow {
  margin: 0 0 20px
}

.dgut-about__title {
  max-width: 640px;
  margin: 0 0 24px;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: .02em
}

.dgut-about__copy {
  display: grid;
  gap: 20px;
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--dgut-taupe);
  font: 500 15px/1.7 var(--dgut-body)
}

.dgut-about__copy p {
  margin: 0
}

.dgut-about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 640px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--dgut-stone);
  border-bottom: 1px solid var(--dgut-stone)
}

.dgut-about__stats div {
  display: grid;
  gap: 8px;
  text-align: center
}

.dgut-about__stats strong {
  color: var(--dgut-charcoal);
  font: 400 1.5rem/1 var(--dgut-display)
}

.dgut-about__stats span {
  color: var(--dgut-taupe);
  font: 500 12px/1.35 var(--dgut-body)
}

.dgut-about__button {
  min-width: 148px
}

.dgut-about__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.dgut-about__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dgut-dust)
}

.dgut-about__image--wide {
  grid-column: 1/-1;
  aspect-ratio: 16/9
}

.dgut-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.dgut-team__top {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px
}

.dgut-team__top .eyebrow {
  margin: 0 0 16px
}

.dgut-team__track {
  display: grid;
  grid-template-columns: repeat(var(--dgut-carousel-cols, 4), minmax(0, 1fr));
  gap: 24px
}

.dgut-team-card {
  scroll-snap-align: start;
  cursor: pointer;
}

.dgut-team-card__image {
  aspect-ratio: 4/5;
}

.dgut-team-card__image img {
  filter: grayscale(1);
  transition: filter .3s ease, transform .3s ease
}

.dgut-team-card:hover .dgut-team-card__image img {
  filter: grayscale(0)
}

.dgut-team-card__body {
  padding: 16px
}

.dgut-team-card h3 {
  min-height: 2.2em;
  margin: 0 0 12px;
  font-family: var(--dgut-display);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.05
}

.dgut-team-card p {
  margin: 0;
  color: var(--dgut-taupe);
  font-size: 14px;
  line-height: 1.7
}

.dgut-tickets {
  background: var(--dgut-charcoal);
  color: var(--dgut-cream)
}

.dgut-tickets .eyebrow {
  color: var(--dgut-sand)
}

.dgut-tickets__intro {
  max-width: 720px;
  margin-bottom: 34px
}

.dgut-tickets__intro p:last-child {
  color: var(--dgut-stone)
}

.dgut-tickets__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px
}

.dgut-ticket-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--dgut-taupe);
  padding: 26px;
  transition: border-color .18s, transform .18s
}

.dgut-ticket-card:hover {
  border-color: var(--dgut-sand);
  transform: translateY(-2px)
}

.dgut-ticket-card img {
  max-height: 52px;
  max-width: 220px;
  margin-bottom: 18px
}

.dgut-ticket-card h3 {
  margin: 0 0 6px;
  font-family: var(--dgut-display);
  font-weight: 400;
  font-size: 1.35rem
}

.dgut-ticket-card p {
  margin: 0;
  color: var(--dgut-stone);
  font-size: 13px
}

.dgut-ticket-card span {
  font-size: 20px;
  color: var(--dgut-sand)
}

.dgut-contact__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center
}

.dgut-contact__content {
  display: grid;
  gap: 18px
}

.dgut-contact__details {
  display: grid;
  gap: 8px;
  color: var(--dgut-taupe)
}

.dgut-contact__details p {
  margin: 0
}

.dgut-contact__map {
  aspect-ratio: 16/11;
  border: 1px solid var(--dgut-stone)
}

.dgut-contact__map img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media (max-width:960px) {
  .dgut-about__grid {
    grid-template-columns: 1fr
  }

  .dgut-about__media {
    order: -1
  }
}

@media (max-width:860px) {
  .dgut-contact__grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:780px) {
  .dgut-hero {
    height: auto;
    background: var(--dgut-cream)
  }

  .dgut-hero__slides {
    position: relative;
    height: auto
  }

  .dgut-hero__slide {
    position: relative;
    display: none;
    opacity: 1;
    pointer-events: auto
  }

  .dgut-hero__slide.is-active {
    display: block
  }

  .dgut-hero__image {
    position: relative;
    aspect-ratio: 4/3;
    height: auto
  }

  .dgut-hero__picture {
    position: relative
  }

  .dgut-hero__shade,
  .dgut-hero__fade {
    display: none
  }

  .dgut-hero__content {
    height: auto;
    padding-block: 20px 28px;
    color: var(--dgut-charcoal)
  }

  .dgut-hero__eyebrow,
  .dgut-hero__title,
  .dgut-hero__desc,
  .dgut-hero__credits,
  .dgut-hero__date {
    width: 100%
  }

  .dgut-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 10px
  }

  .dgut-hero__title {
    min-height: 0;
    margin: 0 0 16px;
    font-size: 32px
  }

  .dgut-hero__desc {
    min-height: 0;
    margin-bottom: 12px
  }

  .dgut-hero__credits {
    margin-bottom: 12px;
    font-size: 13px
  }

  .dgut-hero__date {
    margin-bottom: 20px
  }

  .dgut-hero__button {
    width: 100%;
    min-height: 50px
  }

  .dgut-hero__arrows {
    position: relative;
    display: flex;
    bottom: 0;
    justify-content: space-between;
    gap: 0;
    padding-inline: 0;
    margin: 0;
    background: transparent;
  }

  .dgut-hero__arrow {
    width: 44px;
    height: 44px;
    border-color: rgba(29, 24, 18, .18);
    background: rgba(250, 247, 242, .92);
    color: var(--dgut-charcoal);
    box-shadow: 0 8px 24px rgba(29, 24, 18, .12)
  }

  .dgut-hero__controls {
    position: relative;
    bottom: auto;
    padding-block: 20px 28px;
    background: var(--dgut-cream)
  }

  .dgut-hero__controls>.dgut-hero__arrow {
    display: none
  }
}

@media (max-width:720px) {
  .dgut-tickets__grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:560px) {
  .dgut-section-head {
    display: block;
    margin-bottom: 28px
  }

  .dgut-section-actions {
    justify-items: start;
    gap: 18px;
    margin-top: 18px;
    padding-top: 0
  }

  .dgut-repertoire__grid,
  .dgut-news__grid,
  .dgut-team__track {
    gap: 18px
  }

  .dgut-performance-card__body,
  .dgut-news-card__body {
    min-height: auto
  }

  .dgut-about__stats {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .dgut-about__media {
    gap: 10px
  }

  .dgut-team__top {
    display: grid
  }
}