.brand-mark {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  flex: 0 0 auto;
}

.brand-mark img {
  position: absolute;
  width: 76px;
  height: auto;
  max-width: none;
  left: -20px;
  top: -15px;
}

.floating-call {
  width: auto;
  min-width: 210px;
  height: 66px;
  padding: 0 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.floating-call .call-icon {
  font-size: 22px;
  line-height: 1;
}

.floating-call .call-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.floating-call .call-copy b {
  font-size: 11px;
  line-height: 1.2;
  opacity: .82;
}

.floating-call .call-copy strong {
  font: 800 17px/1.2 Montserrat, sans-serif;
  letter-spacing: .01em;
}

@media (max-width: 580px) {
  .floating-call {
    width: 58px;
    min-width: 0;
    height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-call .call-copy {
    display: none;
  }
}

.portfolio-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.hero-bg {
  background: none;
  transform: none;
  animation: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: url('assets/hero.jpg') center / cover no-repeat;
  transform: scale(1.025);
  transition: opacity 1.25s ease, transform 7s ease-out;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.hero-slide-dots {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 32px;
  display: flex;
  gap: 7px;
}

.hero-slide-dots button {
  width: 22px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: width .25s, background .25s;
}

.hero-slide-dots button.is-active {
  width: 42px;
  background: #fff;
}

.hero-slide-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 52px;
  height: 72px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  background: rgba(0, 0, 0, .18);
  backdrop-filter: blur(5px);
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s, border-color .2s;
}

.hero-slide-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform-origin: center;
}

.hero-slide-prev::before { transform: translate(-50%, -50%) rotate(-135deg); }
.hero-slide-next::before { transform: translate(-50%, -50%) rotate(45deg); }

.hero-slide-arrow:hover { background: rgba(216, 70, 64, .75); border-color: transparent; }
.hero-slide-prev { left: 22px; }
.hero-slide-next { right: 22px; }

.work-modal-caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.work-modal-caption span { color: #999; font: 700 12px Montserrat, sans-serif; white-space: nowrap; }
.work-modal-arrow { position: absolute; z-index: 2; top: 50%; padding: 10px; border: 0; color: #fff; background: transparent; font-size: 64px; cursor: pointer; transform: translateY(-50%); }
.work-modal-prev { left: 24px; }
.work-modal-next { right: 24px; }
.work-modal-arrow:disabled { display: none; }

.portfolio-more-button {
  min-width: 330px;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 34px;
  padding: 18px 24px 18px 28px;
  color: #fff;
  background: #d84640;
  box-shadow: 0 14px 35px rgba(216, 70, 64, .24);
  transition: transform .25s, background .25s;
}

.portfolio-more-button:hover {
  transform: translateY(-3px);
  background: #b82f2b;
}

.portfolio-more-button span {
  font-size: 17px;
  font-weight: 800;
}

.portfolio-more-button b {
  color: rgba(255, 255, 255, .66);
  font: 700 9px Montserrat, sans-serif;
  letter-spacing: .14em;
}

.portfolio-more-button i {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 28px;
  font-style: normal;
}

@media (max-width: 580px) {
  .portfolio-more-wrap { margin-top: 30px; }
  .portfolio-more-button { width: 100%; min-width: 0; }
  .hero-slide-dots { right: 18px; bottom: 24px; }
  .hero-slide-arrow { display: none; }
  .hero-slide-prev { left: 16px; }
  .hero-slide-next { right: 16px; }
  .work-modal-arrow { top: auto; bottom: 10px; font-size: 48px; transform: none; }
  .work-modal-prev { left: 18px; }
  .work-modal-next { right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .25s ease; transform: none; }
  .hero-slide.is-active { transform: none; }
}
