.darling-gallery-page {
  --dc-red: #d82134;
  --dc-red-dark: #72111b;
  --dc-white: #fff;
  --dc-text: #e7e7e7;
  --dc-muted: #bebebe;
  --dc-border: rgba(255, 255, 255, .16);
  --dc-container: 1440px;
  --dc-gutter: clamp(20px, 8.333vw, 144px);
  --dc-font-body: "Agenda One", Arial, sans-serif;
  --dc-font-title: "Essonnes Display", Georgia, serif;
  position: relative;
  min-width: 320px;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  color: var(--dc-white);
  font-family: var(--dc-font-body);
}

.darling-gallery-page,
.darling-gallery-page * {
  box-sizing: border-box;
}

.darling-gallery-page a {
  color: inherit;
  text-decoration: none;
}

.darling-gallery-page button {
  color: inherit;
  font: inherit;
}

.darling-gallery-page img {
  display: block;
  max-width: 100%;
}

.darling-gallery-page .dc-button {
  min-height: 56px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  border: 1px solid #999;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .72px;
  white-space: nowrap;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.darling-gallery-page .dc-button:hover {
  transform: translateY(-1px);
  border-color: #fff;
}

.darling-gallery-page .dc-button--red {
  border-color: var(--dc-red);
  background: linear-gradient(174deg, var(--dc-red) 20%, var(--dc-red-dark) 80%);
  box-shadow: 0 0 28px rgba(216, 33, 52, .16);
}

.darling-gallery-page .dc-button--ghost {
  background: rgba(0, 0, 0, .2);
}

.darling-gallery-page .dc-arrow {
  line-height: .8;
}

.darling-gallery-page .dc-gallery-hero {
  position: relative;
  min-height: 1230px;
  padding: 214px var(--dc-gutter) 0;
}

.darling-gallery-page .dc-gallery-hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100vw, 1728px);
  height: 625px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .25) 23%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, .38) 78%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 96%),
    url("../images/gallery/hero-bg.png") center top / cover no-repeat;
  opacity: .75;
}

.darling-gallery-page .dc-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.darling-gallery-page .dc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--dc-red);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .72px;
  text-transform: uppercase;
}

.darling-gallery-page .dc-kicker span {
  width: 28px;
  height: 1px;
  display: inline-block;
  background: var(--dc-red);
}

.darling-gallery-page .dc-hero-copy h1 {
  margin: 0;
  font-family: var(--dc-font-title);
  font-size: clamp(54px, 5.78vw, 100px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: .06em;
  white-space: nowrap;
}

.darling-gallery-page .dc-hero-copy h1 em,
.darling-gallery-page .dc-final-cta h2 em {
  color: var(--dc-red);
  font-style: normal;
}

.darling-gallery-page .dc-hero-copy__text {
  margin: 0;
  color: var(--dc-text);
  font-size: clamp(19px, 1.62vw, 28px);
  line-height: 1.2;
}

.darling-gallery-page .dc-video-carousel {
  position: relative;
  z-index: 3;
  width: min(100%, 1384px);
  margin: 78px auto 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1196px) 54px;
  gap: 46px;
  align-items: center;
}

.darling-gallery-page .dc-video-carousel__viewport {
  overflow: hidden;
  height: 709px;
}

.darling-gallery-page .dc-video-carousel__track {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.darling-gallery-page .dc-video-card {
  position: relative;
  flex: 0 0 342px;
  height: 659px;
  overflow: hidden;
  background: #050505;
}

.darling-gallery-page .dc-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
  pointer-events: none;
}

.darling-gallery-page .dc-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.darling-gallery-page .dc-video-card--active {
  flex-basis: 464px;
  height: 709px;
  border: 1px solid var(--dc-red);
  box-shadow: 0 0 240px #000, 0 0 10px rgba(216, 33, 52, .1), 0 0 16px rgba(255, 255, 255, .1);
}

.darling-gallery-page .dc-video-card--active::after {
  display: none;
}

.darling-gallery-page .dc-round-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}

.darling-gallery-page .dc-round-arrow:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

.darling-gallery-page .dc-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 99px;
  height: 99px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 33, 52, .42), rgba(0, 0, 0, .15) 62%, rgba(255, 255, 255, .08));
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .05), 0 0 38px rgba(216, 33, 52, .28);
  cursor: pointer;
}

.darling-gallery-page .dc-play span {
  position: absolute;
  left: 51%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.darling-gallery-page .dc-play--small {
  width: 72px;
  height: 72px;
}

.darling-gallery-page .dc-play--small span {
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 14px;
}

.darling-gallery-page .dc-gallery-section {
  position: relative;
  z-index: 5;
  width: min(calc(100% - var(--dc-gutter) * 2), var(--dc-container));
  margin: 80px auto 0;
}

.darling-gallery-page .dc-gallery-tabs {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(100%, 1068px);
  min-height: 126px;
  margin: 0 auto;
  padding: 33px 12px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--dc-border);
  background: linear-gradient(180deg, #000 70%, rgba(0, 0, 0, .78));
}

.darling-gallery-page .dc-gallery-tabs button {
  position: relative;
  padding: 10px 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #fff;
  font-family: var(--dc-font-title);
  font-size: clamp(24px, 1.97vw, 34px);
  line-height: 1;
  cursor: pointer;
  transition: color .25s ease;
}

.darling-gallery-page .dc-gallery-tabs button.is-active {
  color: var(--dc-red);
}

.darling-gallery-page .dc-gallery-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -35px;
  width: 67px;
  height: 3px;
  background: var(--dc-red);
}

.darling-gallery-page .dc-media-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.darling-gallery-page .dc-media-card {
  position: relative;
  min-height: 402px;
  grid-column: span 3;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.darling-gallery-page .dc-media-card--wide {
  grid-column: span 6;
}

.darling-gallery-page .dc-media-card--tall {
  min-height: 507px;
}

.darling-gallery-page .dc-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .25s ease;
}

.darling-gallery-page .dc-media-card:hover img {
  transform: scale(1.035);
}

.darling-gallery-page .dc-media-card.is-hidden {
  display: none;
}

.darling-gallery-page .dc-media-card--extra:not(.is-visible-extra) {
  display: none;
}

.darling-gallery-page .dc-show-more {
  display: flex;
  margin: 50px auto 0;
  padding: 18px 10px;
  border: 0;
  border-bottom: 1px solid var(--dc-muted);
  background: transparent;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .84px;
  cursor: pointer;
}

.darling-gallery-page .dc-final-cta {
  position: relative;
  min-height: 550px;
  margin-top: 234px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.darling-gallery-page .dc-final-cta__side {
  position: absolute;
  top: 87px;
  width: 490px;
  height: 381px;
  opacity: .9;
  filter: blur(2px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, 0) 68%),
    linear-gradient(136deg, rgba(0, 0, 0, 0) 79%, #000 91%),
    url("../images/gallery/cta-side.png") center / cover no-repeat;
}

.darling-gallery-page .dc-final-cta__side--left {
  left: 0;
  transform: scaleX(-1);
}

.darling-gallery-page .dc-final-cta__side--right {
  right: 0;
}

.darling-gallery-page .dc-final-cta__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 796px);
  text-align: center;
}

.darling-gallery-page .dc-final-cta h2 {
  margin: 0;
  font-family: var(--dc-font-title);
  font-size: clamp(36px, 3.24vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: .06em;
}

.darling-gallery-page .dc-final-cta p {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.3;
}

.darling-gallery-page .dc-final-cta__actions {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.darling-gallery-page .dc-final-cta__actions .dc-button {
  width: 100%;
}

@media (max-width: 1280px) {
  .darling-gallery-page .dc-video-carousel {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 22px;
  }

  .darling-gallery-page .dc-video-carousel__viewport {
    height: auto;
  }

  .darling-gallery-page .dc-video-carousel__track {
    height: 610px;
  }

  .darling-gallery-page .dc-video-card {
    flex-basis: 28%;
    height: 530px;
  }

  .darling-gallery-page .dc-video-card--active {
    flex-basis: 38%;
    height: 610px;
  }

  .darling-gallery-page .dc-media-card {
    grid-column: span 4;
    min-height: 360px;
  }

  .darling-gallery-page .dc-media-card--wide {
    grid-column: span 8;
  }

  .darling-gallery-page .dc-media-card--tall {
    min-height: 460px;
  }
}

@media (max-width: 980px) {
  .darling-gallery-page .dc-gallery-hero {
    min-height: 1000px;
    padding-top: 160px;
  }

  .darling-gallery-page .dc-hero-copy h1 {
    white-space: normal;
  }

  .darling-gallery-page .dc-video-carousel {
    width: min(100%, 720px);
    grid-template-columns: 44px 1fr 44px;
  }

  .darling-gallery-page .dc-video-card--preview {
    display: none;
  }

  .darling-gallery-page .dc-video-card--active {
    flex-basis: min(100%, 464px);
    height: 620px;
  }

  .darling-gallery-page .dc-gallery-section {
    width: calc(100% - 40px);
    margin-top: 20px;
  }

  .darling-gallery-page .dc-gallery-tabs {
    min-height: 96px;
    padding-top: 22px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .darling-gallery-page .dc-gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .darling-gallery-page .dc-gallery-tabs button {
    flex: 0 0 auto;
  }

  .darling-gallery-page .dc-gallery-tabs button.is-active::after {
    bottom: -25px;
  }

  .darling-gallery-page .dc-media-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .darling-gallery-page .dc-media-card,
  .darling-gallery-page .dc-media-card--wide {
    grid-column: span 3;
    min-height: 320px;
  }

  .darling-gallery-page .dc-media-card--tall {
    min-height: 410px;
  }

  .darling-gallery-page .dc-final-cta {
    margin-top: 140px;
  }

  .darling-gallery-page .dc-final-cta__side {
    width: 320px;
    opacity: .75;
  }
}

@media (max-width: 640px) {
  .darling-gallery-page {
    --dc-gutter: 16px;
  }

  .darling-gallery-page .dc-gallery-hero {
    min-height: 790px;
    padding-top: 132px;
  }

  .darling-gallery-page .dc-gallery-hero__bg {
    height: 520px;
  }

  .darling-gallery-page .dc-kicker {
    font-size: 16px;
  }

  .darling-gallery-page .dc-kicker span {
    width: 20px;
  }

  .darling-gallery-page .dc-hero-copy {
    gap: 20px;
  }

  .darling-gallery-page .dc-hero-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
    letter-spacing: .035em;
  }

  .darling-gallery-page .dc-hero-copy__text {
    max-width: 320px;
    font-size: 18px;
  }

  .darling-gallery-page .dc-video-carousel {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .darling-gallery-page .dc-round-arrow {
    display: none;
  }

  .darling-gallery-page .dc-video-carousel__track {
    height: 470px;
  }

  .darling-gallery-page .dc-video-card--active {
    flex-basis: min(100%, 320px);
    height: 470px;
  }

  .darling-gallery-page .dc-play {
    width: 74px;
    height: 74px;
  }

  .darling-gallery-page .dc-play span {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .darling-gallery-page .dc-gallery-section {
    margin-top: 0;
  }

  .darling-gallery-page .dc-gallery-tabs {
    min-height: 82px;
    gap: 28px;
  }

  .darling-gallery-page .dc-gallery-tabs button {
    font-size: 24px;
  }

  .darling-gallery-page .dc-gallery-tabs button.is-active::after {
    bottom: -20px;
    width: 46px;
  }

  .darling-gallery-page .dc-media-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .darling-gallery-page .dc-media-card,
  .darling-gallery-page .dc-media-card--wide,
  .darling-gallery-page .dc-media-card--tall {
    grid-column: auto;
    min-height: 320px;
  }

  .darling-gallery-page .dc-media-card--tall {
    min-height: 430px;
  }

  .darling-gallery-page .dc-show-more {
    margin-top: 32px;
    font-size: 22px;
  }

  .darling-gallery-page .dc-final-cta {
    min-height: 460px;
    margin-top: 90px;
    padding: 0 18px;
  }

  .darling-gallery-page .dc-final-cta__side {
    top: 70px;
    width: 230px;
    height: 310px;
    opacity: .5;
  }

  .darling-gallery-page .dc-final-cta h2 {
    font-size: 36px;
  }

  .darling-gallery-page .dc-final-cta__actions {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .darling-gallery-page .dc-final-cta__actions .dc-button {
    min-height: 52px;
    font-size: 20px;
  }
}
